diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-10-04 21:49:48 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-10-04 21:49:48 +0200 |
commit | 1fb33bbefde555e9c21847ce585c10d4aab06a7a (patch) | |
tree | 8dedc678aee81d239f37252b6707890bbac666ca | |
parent | e349a26b672a296545d9e90af234bd18fbcaa5e7 (diff) |
remove linking with libresolv because it's not needed on Linux
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@432 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cac5e19..33271a7 100644 --- a/configure.ac +++ b/configure.ac @@ -170,12 +170,15 @@ AC_CHECK_HEADERS(gsssasl.h) AC_CHECK_HEADERS(gssapi/gssapi_krb5.h gssapi.h) AC_CHECK_HEADERS(grp.h) +# set up directory with compatibility replacement files +AC_CONFIG_LIBOBJ_DIR([compat]) + # checks for availability of system libraries for nslcd save_LIBS="$LIBS" LIBS="$nslcd_LIBS" AC_SEARCH_LIBS(gethostbyname,nsl socket) AC_SEARCH_LIBS(socket,socket) -AC_CHECK_LIB(resolv,main) +#AC_CHECK_LIB(resolv,main) AC_SEARCH_LIBS(daemon,bsd) nslcd_LIBS="$LIBS" LIBS="$save_LIBS" |