summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-22 00:14:19 +1000
committerRichard Sharpe <sharpe@samba.org>2013-05-22 10:06:40 +0200
commit30a224367595f9e2506e41053fc9c7cb96a90928 (patch)
tree0deb2b11be00fea6c1eead145c716e06137b036a /source3
parent27df444d0b92a8acb4d830b3b62f04835b57f0e8 (diff)
downloadsamba-30a224367595f9e2506e41053fc9c7cb96a90928.tar.gz
samba-30a224367595f9e2506e41053fc9c7cb96a90928.tar.bz2
samba-30a224367595f9e2506e41053fc9c7cb96a90928.zip
build: Update md5.h detection in waf and autoconf to use sys/md5.h and -lmd
This brings the two build systems in sync, without using md5.h (which is a problem name) Tested on FreeBSD Andrew Bartlett Reviewed-by: Richard Sharpe <rsharpe@samba.org> Autobuild-User(master): Richard Sharpe <sharpe@samba.org> Autobuild-Date(master): Wed May 22 10:06:40 CEST 2013 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 822c5f4442..0e2f1267a7 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -620,11 +620,11 @@ if test x"$samba_cv_md5lib" = x"none" ; then
fi
if test x"$samba_cv_md5lib" != x"none" ; then
- AC_CHECK_HEADERS(md5.h)
+ AC_CHECK_HEADERS(sys/md5.h)
fi
CRYPTO_MD5_OBJ="../lib/crypto/md5.o"
-if test x"$ac_cv_header_md5_h" = x"yes" -a \
+if test x"$ac_cv_header_sys_md5_h" = x"yes" -a \
x"$samba_cv_md5lib" != x"none" ; then
if test x"$samba_cv_md5lib" != x ; then
LIBS="${LIBS} -l${samba_cv_md5lib}"