diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2022-12-18 17:32:46 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-12-29 18:50:24 +0100 |
commit | f12bad6c19df4ad10b274e0c1e10bcdaaccf96f3 (patch) | |
tree | ce8490f316730c7fcd4acc46c172eb5d9b3c4636 /package/network | |
parent | 3195a992d6f635ad82dbe39ee584571371334450 (diff) | |
download | upstream-f12bad6c19df4ad10b274e0c1e10bcdaaccf96f3.tar.gz upstream-f12bad6c19df4ad10b274e0c1e10bcdaaccf96f3.tar.bz2 upstream-f12bad6c19df4ad10b274e0c1e10bcdaaccf96f3.zip |
tree-wide: Do not use package librt and libpthread
The libraries libpthread, libdl, libutil, libanl have been integrated
into the libc library in version 2.34. it is not needed to explicitly
link them any more.
Most of the functions have been moved from the librt.so into libc.so
some time ago already.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/hostapd/Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 829879f763..7daca315b0 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -139,11 +139,6 @@ ifneq ($(LOCAL_TYPE),hostapd) endif endif -ifdef CONFIG_USE_GLIBC - TARGET_LDFLAGS += -lrt - TARGET_LDFLAGS_C += -lrt -endif - DRV_DEPENDS:=+PACKAGE_kmod-cfg80211:libnl-tiny |