diff options
| author | Konstantin Demin | 2025-07-04 08:03:14 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-07-12 21:38:19 +0000 |
| commit | ea6bcebc417cbf0c464d5d0310d894af63a6820d (patch) | |
| tree | 9812b3b31f4f606884c72573e8fe917110752e57 | |
| parent | eecc53cbe5c2978c95ee7c87b6e8e31cfe0f595b (diff) | |
| download | openwrt-ea6bcebc417cbf0c464d5d0310d894af63a6820d.tar.gz | |
ppp: 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 <rockdrilla@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19293
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/network/services/ppp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/ppp/Makefile b/package/network/services/ppp/Makefile index ceb32c3978..285c89eb25 100644 --- a/package/network/services/ppp/Makefile +++ b/package/network/services/ppp/Makefile @@ -55,14 +55,14 @@ endef define Package/ppp $(call Package/ppp/Default) - DEPENDS:=+kmod-ppp + DEPENDS:= +USE_GLIBC:libcrypt-compat +kmod-ppp TITLE:=PPP daemon VARIANT:=default endef define Package/ppp-multilink $(call Package/ppp/Default) - DEPENDS:=+kmod-ppp + DEPENDS:= +USE_GLIBC:libcrypt-compat +kmod-ppp TITLE:=PPP daemon (with multilink support) VARIANT:=multilink endef |