diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-22 13:31:12 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-22 13:31:12 -0700 |
commit | 3cc3ef96d6c060e9d45b43f5482dc4e03945b30e (patch) | |
tree | 38fbe47c74c5109f408d107696950923d1b68ff6 /configure | |
parent | 07e515506660b1d0c1934dc0ac0e2ac5e7a4a760 (diff) | |
download | glibc-3cc3ef96d6c060e9d45b43f5482dc4e03945b30e.tar.gz |
BZ#13696: Add --disable-nscd configure option.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -597,6 +597,7 @@ libc_cv_sysconfdir libc_cv_localedir libc_cv_slibdir old_glibc_headers +use_nscd libc_cv_gcc_unwind_find_fde libc_extra_cflags CPPUNDEFS @@ -750,6 +751,7 @@ enable_multi_arch enable_nss_crypt enable_obsolete_rpc enable_systemtap +enable_nscd with_cpu ' ac_precious_vars='build_alias @@ -1408,6 +1410,7 @@ Optional Features: --enable-obsolete-rpc build and install the obsolete RPC code for link-time usage --enable-systemtap enable systemtap static probe points [default=no] + --disable-nscd library functions will not contact the nscd daemon Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] @@ -3753,6 +3756,15 @@ See \`config.log' for more details" "$LINENO" 5; } fi fi +# Note the use of $use_nscd is near the bottom of the file. +# Check whether --enable-nscd was given. +if test "${enable_nscd+set}" = set; then : + enableval=$enable_nscd; use_nscd=$enableval +else + use_nscd=yes +fi + + # The way shlib-versions is used to generate soversions.mk uses a # fairly simplistic model for name recognition that can't distinguish # i486-pc-linux-gnu fully from i486-pc-gnu. So we mutate a $host_os @@ -7404,6 +7416,14 @@ if test x$libc_cv_gcc_unwind_find_fde = xyes; then fi +# This is far from the AC_ARG_ENABLE that sets it so that a sysdeps +# configure fragment can override the value to prevent this AC_DEFINE. + +if test "x$use_nscd" != xno; then + $as_echo "#define USE_NSCD 1" >>confdefs.h + +fi + # Test for old glibc 2.0.x headers so that they can be removed properly # Search only in includedir. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for old glibc 2.0.x headers" >&5 |