From e1ebbcb24bf3ef31dc94eefe03541d87a72e4f7f Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 4 Jul 2025 10:51:40 +0300 Subject: [PATCH] screen: 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/screen/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/screen/Makefile b/utils/screen/Makefile index 6b6d27f5d5..4c6ff2d4d7 100644 --- a/utils/screen/Makefile +++ b/utils/screen/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=screen PKG_VERSION:=4.9.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/screen @@ -29,7 +29,7 @@ define Package/screen SECTION:=utils CATEGORY:=Utilities SUBMENU:=Terminal - DEPENDS:=+libncurses + DEPENDS:= +USE_GLIBC:libcrypt-compat +libncurses TITLE:=Full-screen terminal window manager URL:=https://www.gnu.org/software/screen/ endef