diff options
| author | Konstantin Demin | 2025-07-04 08:03:14 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-07-12 21:38:19 +0000 |
| commit | ec62e87c0c01948deaf214b17100111ae3988568 (patch) | |
| tree | 7196cb757ebb42da7e56053b4d9c015790cdaa07 | |
| parent | ea6bcebc417cbf0c464d5d0310d894af63a6820d (diff) | |
| download | openwrt-ec62e87c0c01948deaf214b17100111ae3988568.tar.gz | |
uhttpd: 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/uhttpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/uhttpd/Makefile b/package/network/services/uhttpd/Makefile index ea76fa65ea..50acfe6639 100644 --- a/package/network/services/uhttpd/Makefile +++ b/package/network/services/uhttpd/Makefile @@ -34,7 +34,7 @@ endef define Package/uhttpd $(Package/uhttpd/default) - DEPENDS:=+libubox +libblobmsg-json +libjson-script +libjson-c + DEPENDS:= +USE_GLIBC:libcrypt-compat +libubox +libblobmsg-json +libjson-script +libjson-c endef define Package/uhttpd/description |