diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-20 18:59:45 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-20 18:59:45 +0200 |
commit | 01a902f59978cebdab22aaee7d9e0c9bb78bc649 (patch) | |
tree | 09585cc40b4d5c6663e99f2dbb82dc0fa0913f37 | |
parent | 66b1c8b61a8fea309bf96df4c07a6f2c1b95041b (diff) | |
download | samba-01a902f59978cebdab22aaee7d9e0c9bb78bc649.tar.gz samba-01a902f59978cebdab22aaee7d9e0c9bb78bc649.tar.bz2 samba-01a902f59978cebdab22aaee7d9e0c9bb78bc649.zip |
Fix crypto test.
-rw-r--r-- | lib/replace/crypt.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/crypt.m4 b/lib/replace/crypt.m4 index 047766d470..4e90866205 100644 --- a/lib/replace/crypt.m4 +++ b/lib/replace/crypt.m4 @@ -2,6 +2,6 @@ # test for where we get crypt() from AC_CHECK_HEADERS(crypt.h) AC_SEARCH_LIBS_EXT(crypt, [crypt], - [test "$ac_cv_search_crypt" = "none required" || CRYPT_LIBS="-lcrypt" + [test "$ac_cv_search_ext_crypt" = "none required" || CRYPT_LIBS="-lcrypt" AC_DEFINE(HAVE_CRYPT,1,[Whether the system has the crypt() function])], [ LIBREPLACEOBJ="${LIBREPLACEOBJ} crypt.o" ]) |