diff options
| author | Konstantin Demin | 2025-07-04 08:03:14 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-07-12 21:38:19 +0000 |
| commit | 34c2e7701a9a2ac49f3335ddee89956023b5a93a (patch) | |
| tree | 8f0cb1f68c385981435da50a5e8e600347c42180 | |
| parent | ddd49e82f605933c46d20703c87faa67b5878eb1 (diff) | |
| download | openwrt-34c2e7701a9a2ac49f3335ddee89956023b5a93a.tar.gz | |
libpcap: 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/libs/libpcap/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/libpcap/Makefile b/package/libs/libpcap/Makefile index 052358b1f5..434a43247a 100644 --- a/package/libs/libpcap/Makefile +++ b/package/libs/libpcap/Makefile @@ -54,7 +54,7 @@ define Package/rpcapd CATEGORY:=Network TITLE:=Capture daemon to be controlled by a remote libpcap application URL:=http://www.tcpdump.org/ - DEPENDS+= +libpcap + DEPENDS+= +USE_GLIBC:libcrypt-compat +libpcap endef ifdef CONFIG_PACKAGE_rpcapd |