From 8fc26989f9326af805a3d68256ba24c1fd12bdc6 Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 4 Jul 2025 10:51:40 +0300 Subject: [PATCH] ccrypt: adjust with glibc and libcrypt-compat glibc 2.39 has removed libcrypt completely. solution: link against libxcrypt built with glibc compatibility. Signed-off-by: Konstantin Demin --- utils/ccrypt/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/ccrypt/Makefile b/utils/ccrypt/Makefile index f720562de8..5f53472fe1 100644 --- a/utils/ccrypt/Makefile +++ b/utils/ccrypt/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ccrypt PKG_VERSION:=1.11 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/ccrypt @@ -27,6 +27,7 @@ define Package/ccrypt SUBMENU:=Encryption TITLE:=utility for encrypting/decrypting files and streams URL:=http://ccrypt.sourceforge.net/ + DEPENDS:= +USE_GLIBC:libcrypt-compat endef CONFIGURE_ARGS += --disable-emacs