projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eecc53c
)
ppp: adjust with glibc and libcrypt-compat
author
Konstantin Demin
<
[email protected]
>
Fri, 4 Jul 2025 08:03:14 +0000
(11:03 +0300)
committer
Hauke Mehrtens
<
[email protected]
>
Sat, 12 Jul 2025 21:38:19 +0000
(23:38 +0200)
glibc 2.39 has removed libcrypt completely.
solution: link against libxcrypt built with glibc compatibility.
Signed-off-by: Konstantin Demin <
[email protected]
>
Link:
https://github.com/openwrt/openwrt/pull/19293
Signed-off-by: Hauke Mehrtens <
[email protected]
>
package/network/services/ppp/Makefile
patch
|
blob
|
history
diff --git
a/package/network/services/ppp/Makefile
b/package/network/services/ppp/Makefile
index ceb32c397801fbf70f6174b434e855cd07eb6b47..285c89eb25dabdbab4410fc6eef83e9da35c919c 100644
(file)
--- 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