diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-31 16:16:33 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-31 16:16:33 +0000 |
commit | fab7ce3f5b4060bf62659e8b58529de4156b5a2f (patch) | |
tree | 478613d49200afe992092d00c61f6fb82cec07b8 /resolv/Makefile | |
parent | eca5920cd90093d8921f27bfbf7bcf54807165bb (diff) | |
download | glibc-fab7ce3f5b4060bf62659e8b58529de4156b5a2f.tar.gz |
Link extra-libs consistently with libc and ld.so.
Diffstat (limited to 'resolv/Makefile')
-rw-r--r-- | resolv/Makefile | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/resolv/Makefile b/resolv/Makefile index d3635bc115..51dcf217af 100644 --- a/resolv/Makefile +++ b/resolv/Makefile @@ -83,23 +83,11 @@ CFLAGS-res_hconf.c = -fexceptions # The BIND code elicits some harmless warnings. +cflags += -Wno-strict-prototypes -Wno-write-strings -# Depend on libc.so so a DT_NEEDED is generated in the shared objects. -# This ensures they will load libc.so for needed symbols if loaded by -# a statically-linked program that hasn't already loaded it. -$(objpfx)libresolv.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a -# Some hosts need '__stack_chk_guard', so pull in the definition from -# ld.so if required. -ifeq (yes,$(have-ssp)) -LDLIBS-resolv.so += $(as-needed) $(elfobjdir)/ld.so $(no-as-needed) -endif - # The DNS NSS modules needs the resolver. -$(objpfx)libnss_dns.so: $(objpfx)libresolv.so $(common-objpfx)libc.so \ - $(common-objpfx)libc_nonshared.a +$(objpfx)libnss_dns.so: $(objpfx)libresolv.so # The asynchronous name lookup code needs the thread library. -$(objpfx)libanl.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a \ - $(shared-thread-library) +$(objpfx)libanl.so: $(shared-thread-library) $(objpfx)ga_test: $(objpfx)libanl.so $(shared-thread-library) |