comparison auto/cc/gcc @ 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 ade7d0335d77
children
comparison
equal deleted inserted replaced
6602:bcd442b585f0 6603:9eefb38f0005
126 PCRE_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT" 126 PCRE_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
127 else 127 else
128 PCRE_OPT="$PCRE_OPT $PIPE" 128 PCRE_OPT="$PCRE_OPT $PIPE"
129 fi 129 fi
130 130
131 if [ ".$MD5_OPT" = "." ]; then
132 MD5_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
133 else
134 MD5_OPT="$MD5_OPT $PIPE"
135 fi
136
137 if [ ".$ZLIB_OPT" = "." ]; then 131 if [ ".$ZLIB_OPT" = "." ]; then
138 ZLIB_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT" 132 ZLIB_OPT="-O2 -fomit-frame-pointer $PIPE $CPU_OPT"
139 else 133 else
140 ZLIB_OPT="$ZLIB_OPT $PIPE" 134 ZLIB_OPT="$ZLIB_OPT $PIPE"
141 fi 135 fi