summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libnsl/Makefile.in5
-rw-r--r--libresolv/Makefile.in5
2 files changed, 10 insertions, 0 deletions
diff --git a/libnsl/Makefile.in b/libnsl/Makefile.in
index 7cf64a6fc..0995b3c4f 100644
--- a/libnsl/Makefile.in
+++ b/libnsl/Makefile.in
@@ -8,6 +8,11 @@
CFLAGS-libnsl := -DNOT_IN_libc -DIS_IN_libnsl $(SSP_ALL_CFLAGS)
LDFLAGS-libnsl.so := $(LDFLAGS)
+ifdef ASNEEDED
+ifeq ($(UCLIBC_HAS_SSP),y)
+LDFLAGS-libnsl.so += -Wl,--no-as-needed -lc -Wl,--as-needed
+endif
+endif
LIBS-libnsl.so := $(LIBS)
diff --git a/libresolv/Makefile.in b/libresolv/Makefile.in
index f006fe149..4b4d781c1 100644
--- a/libresolv/Makefile.in
+++ b/libresolv/Makefile.in
@@ -8,6 +8,11 @@
CFLAGS-libresolv := -DNOT_IN_libc -DIS_IN_libresolv $(SSP_ALL_CFLAGS)
LDFLAGS-libresolv.so := $(LDFLAGS)
+ifdef ASNEEDED
+ifeq ($(UCLIBC_HAS_SSP),y)
+LDFLAGS-libresolv.so += -Wl,--no-as-needed -lc -Wl,--as-needed
+endif
+endif
LIBS-libresolv.so := $(LIBS)