From ee114b7a9447428a24e27aa4a95823df2d682d7f Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Tue, 16 Dec 2014 12:49:17 -0500 Subject: configure: check for There's code in rpcbind that tries to configure nss lookups so that it avoids NIS when resolving user names or service names. Unfortunately, this code is turned into a no-op unless HAVE_NSS_H is defined. Which it is not unless the configure script actually checks for it. Signed-off-by: Olaf Kirch Signed-off-by: Steve Dickson --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 75e7e71..27496c7 100644 --- a/configure.ac +++ b/configure.ac @@ -55,4 +55,6 @@ AS_IF([test x$enable_libwrap = xyes], [ AC_SEARCH_LIBS([pthread_create], [pthread]) +AC_CHECK_HEADERS(nss.h) + AC_OUTPUT([Makefile]) -- cgit v1.2.1