From c6473474e571fecfa6c9155329af8be84f81f336 Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 4 Jul 2025 10:51:41 +0300 Subject: [PATCH] libapr: 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 --- libs/apr/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/apr/Makefile b/libs/apr/Makefile index 20ec0647ab..33e7fa9833 100644 --- a/libs/apr/Makefile +++ b/libs/apr/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=apr PKG_VERSION:=1.7.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@APACHE/apr/ @@ -33,7 +33,7 @@ include $(INCLUDE_DIR)/package.mk define Package/libapr SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+libpthread +librt +libuuid + DEPENDS:= +USE_GLIBC:libcrypt-compat +libpthread +librt +libuuid TITLE:=Apache Portable Runtime Library URL:=https://apr.apache.org/ endef -- 2.30.2