comparison auto/cc/clang @ 6603:9eefb38f0005

Internal md5 and sha1 implementations are now always used. This reduces the number of moving parts in ABI compatibility checks. Additionally, it also allows to use OpenSSL in FIPS mode while still using md5 for non-security tasks.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 30 Jun 2016 18:57:39 +0300
parents 80bd391c90d1
children 325b3042edd6
comparison
equal deleted inserted replaced
6602:bcd442b585f0 6603:9eefb38f0005
64 PCRE_OPT="-O2 -pipe $CPU_OPT" 64 PCRE_OPT="-O2 -pipe $CPU_OPT"
65 else 65 else
66 PCRE_OPT="$PCRE_OPT -pipe" 66 PCRE_OPT="$PCRE_OPT -pipe"
67 fi 67 fi
68 68
69 if [ ".$MD5_OPT" = "." ]; then
70 MD5_OPT="-O2 -pipe $CPU_OPT"
71 else
72 MD5_OPT="$MD5_OPT -pipe"
73 fi
74
75 if [ ".$ZLIB_OPT" = "." ]; then 69 if [ ".$ZLIB_OPT" = "." ]; then
76 ZLIB_OPT="-O2 -pipe $CPU_OPT" 70 ZLIB_OPT="-O2 -pipe $CPU_OPT"
77 else 71 else
78 ZLIB_OPT="$ZLIB_OPT -pipe" 72 ZLIB_OPT="$ZLIB_OPT -pipe"
79 fi 73 fi