comparison auto/lib/make @ 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 39a806ccf21e
children
comparison
equal deleted inserted replaced
6602:bcd442b585f0 6603:9eefb38f0005
3 # Copyright (C) Nginx, Inc. 3 # Copyright (C) Nginx, Inc.
4 4
5 5
6 if [ $PCRE != NONE -a $PCRE != NO -a $PCRE != YES ]; then 6 if [ $PCRE != NONE -a $PCRE != NO -a $PCRE != YES ]; then
7 . auto/lib/pcre/make 7 . auto/lib/pcre/make
8 fi
9
10 if [ $MD5 != NONE -a $MD5 != NO -a $MD5 != YES ]; then
11 . auto/lib/md5/make
12 fi
13
14 if [ $SHA1 != NONE -a $SHA1 != NO -a $SHA1 != YES ]; then
15 . auto/lib/sha1/make
16 fi 8 fi
17 9
18 if [ $OPENSSL != NONE -a $OPENSSL != NO -a $OPENSSL != YES ]; then 10 if [ $OPENSSL != NONE -a $OPENSSL != NO -a $OPENSSL != YES ]; then
19 . auto/lib/openssl/make 11 . auto/lib/openssl/make
20 fi 12 fi