summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/replace/crypt.m45
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/replace/crypt.m4 b/lib/replace/crypt.m4
index 4e90866205..684c3519f2 100644
--- a/lib/replace/crypt.m4
+++ b/lib/replace/crypt.m4
@@ -1,7 +1,6 @@
###############################################
# test for where we get crypt() from
AC_CHECK_HEADERS(crypt.h)
-AC_SEARCH_LIBS_EXT(crypt, [crypt],
- [test "$ac_cv_search_ext_crypt" = "none required" || CRYPT_LIBS="-lcrypt"
- AC_DEFINE(HAVE_CRYPT,1,[Whether the system has the crypt() function])],
+AC_SEARCH_LIBS_EXT(crypt, [crypt], CRYPT_LIBS,
+ [ AC_DEFINE(HAVE_CRYPT,1,[Whether the system has the crypt() function]) ],
[ LIBREPLACEOBJ="${LIBREPLACEOBJ} crypt.o" ])