comparison auto/cc/icc @ 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 293413010217
children
comparison
equal deleted inserted replaced
6602:bcd442b585f0 6603:9eefb38f0005
39 39
40 CFLAGS="$CFLAGS $CPU_OPT" 40 CFLAGS="$CFLAGS $CPU_OPT"
41 41
42 if [ ".$PCRE_OPT" = "." ]; then 42 if [ ".$PCRE_OPT" = "." ]; then
43 PCRE_OPT="-O $CPU_OPT" 43 PCRE_OPT="-O $CPU_OPT"
44 fi
45
46 if [ ".$MD5_OPT" = "." ]; then
47 MD5_OPT="-O $CPU_OPT"
48 fi 44 fi
49 45
50 if [ ".$ZLIB_OPT" = "." ]; then 46 if [ ".$ZLIB_OPT" = "." ]; then
51 ZLIB_OPT="-O $CPU_OPT" 47 ZLIB_OPT="-O $CPU_OPT"
52 fi 48 fi