diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2006-04-28 12:03:38 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2006-04-28 12:03:38 +0000 |
commit | 06a99fe36f0aac93e7689da6b3f07b727750691f (patch) | |
tree | d796503361cc28eb3b9eaa593876abd826a2cf81 /lib/libc/Makefile | |
parent | 18486a5ee3fa9ccdf2a2d2b48581bc0aa614fb80 (diff) |
- Extend the nsswitch to support Services, Protocols and Rpc
databases.
- Make nsswitch support caching.
Submitted by: Michael Bushkov <bushman__at__rsu.ru>
Sponsored by: Google Summer of Code 2005
Notes
Notes:
svn path=/head/; revision=158115
Diffstat (limited to 'lib/libc/Makefile')
-rw-r--r-- | lib/libc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index f3a7c03dde1c..496598a07064 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -72,6 +72,9 @@ CFLAGS+= -DHESIOD .if ${MK_FP_LIBC} == "no" CFLAGS+= -DNO_FLOATING_POINT .endif +.if ${MK_NS_CACHING} != "no" +CFLAGS+= -DNS_CACHING +.endif .if defined(SYMVER_ENABLED) VERSION_DEF=${.CURDIR}/Versions.def |