diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-08-22 03:14:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-08-22 03:14:29 +0000 |
commit | 1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d (patch) | |
tree | b94b2b37659fd22373f3f20e2ca964a46d54759c /nscd/Makefile | |
parent | a30d41c1d2c69b34e6f19dc1f92881f18e75349c (diff) | |
download | glibc-1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d.tar.gz glibc-1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d.tar.xz glibc-1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d.zip |
[BZ #4814]
* resolv/res_hconf.c: Prepare for compiling outside libc. * nscd/res_hconf.c: New file. * nscd/Makefile (nscd-modules): Add res_hconf. Add rules to build the new file. * nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define. * nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
Diffstat (limited to 'nscd/Makefile')
-rw-r--r-- | nscd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nscd/Makefile b/nscd/Makefile index ef3ce184f9..ecd8c89998 100644 --- a/nscd/Makefile +++ b/nscd/Makefile @@ -35,7 +35,7 @@ nscd-modules := nscd connections pwdcache getpwnam_r getpwuid_r grpcache \ getgrnam_r getgrgid_r hstcache gethstbyad_r gethstbynm2_r \ getsrvbynm_r getsrvbypt_r servicescache \ dbg_log nscd_conf nscd_stat cache mem nscd_setup_thread \ - xmalloc xstrdup aicache initgrcache gai + xmalloc xstrdup aicache initgrcache gai res_hconf ifeq ($(have-thread-library),yes) @@ -122,6 +122,7 @@ CFLAGS-gai.c += $(nscd-cflags) CFLAGS-servicescache.c += $(nscd-cflags) CFLAGS-getsrvbynm_r.c += $(nscd-cflags) CFLAGS-getsrvbypt_r.c += $(nscd-cflags) +CFLAGS-res_hconf.c += $(nscd-cflags) ifeq (yesyes,$(have-fpie)$(build-shared)) relro-LDFLAGS += -Wl,-z,now |