summaryrefslogtreecommitdiff
path: root/lib/crypto/wscript_configure
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2012-03-12 16:21:28 -0700
committerMatthieu Patou <mat@samba.org>2012-03-14 06:52:27 +0100
commitb68f72c7f58c05870100d0d993c9baf0fa80a891 (patch)
tree0853da0922a85295e57c2d617548e4da4143cb1d /lib/crypto/wscript_configure
parent6dea4f24dc023a8234de01bbdcd012df29d3abf9 (diff)
downloadsamba-b68f72c7f58c05870100d0d993c9baf0fa80a891.tar.gz
samba-b68f72c7f58c05870100d0d993c9baf0fa80a891.tar.bz2
samba-b68f72c7f58c05870100d0d993c9baf0fa80a891.zip
lib/crypto: Detect CommonCrypto and use it if available
CommonCrypto/CommonDigest is available on Mac and there is function in the libc for MD5 calculation. MD5Final is a C define of CC_MD5_Final. Under some circumstance we have the symbol defined twice in samba binaries on Snow Leopard at least. By detecting CommonCrypto/CommonDigest we end up always using the system version if available.
Diffstat (limited to 'lib/crypto/wscript_configure')
-rw-r--r--lib/crypto/wscript_configure2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/crypto/wscript_configure b/lib/crypto/wscript_configure
index 77d21e9795..5fc00fb22c 100644
--- a/lib/crypto/wscript_configure
+++ b/lib/crypto/wscript_configure
@@ -1,2 +1,4 @@
conf.CHECK_FUNCS_IN('MD5Init', 'bsd', headers='bsd/md5.h',
checklibc=True)
+conf.CHECK_FUNCS_IN('CC_MD5_Init', '', headers='CommonCrypto/CommonDigest.h',
+ checklibc=True)