nginx/auto/lib/md5/conf

102 lines
2.0 KiB
Plaintext
Raw Normal View History

2003-12-14 14:10:27 -06:00
2004-02-09 01:46:43 -06:00
if [ $MD5 != NONE ]; then
2003-12-14 14:10:27 -06:00
if grep MD5_Init $MD5/md5.h >/dev/null; then
# OpenSSL md5
OPENSSL_MD5=YES
2004-02-02 15:19:52 -06:00
have=HAVE_OPENSSL_MD5 . auto/have
2003-12-14 14:10:27 -06:00
else
# rsaref md5
OPENSSL_MD5=NO
fi
CORE_INCS="$CORE_INCS -I $MD5"
2004-03-25 14:03:02 -06:00
case "$CC" in
2004-03-09 13:47:07 -06:00
cl)
LINK_DEPS="$LINK_DEPS $MD5/md5.lib"
CORE_LIBS="$CORE_LIBS md5.lib"
CORE_LINK="$CORE_LINK -libpath:$MD5"
;;
wcl386)
LINK_DEPS="$LINK_DEPS $MD5/md5.lib"
CORE_LIBS="$CORE_LIBS $MD5/md5.lib"
;;
2004-03-14 14:46:25 -06:00
*icc)
LINK_DEPS="$LINK_DEPS $MD5/libmd5.a"
# to allow -ipo optimization we link with the *.o but not library
CORE_LIBS="$CORE_LIBS $MD5/md5_dgst.o"
if [ $MD5_ASM = YES ]; then
CORE_LIBS="$CORE_LIBS $MD5/asm/mx86-elf.o"
fi
;;
2004-03-09 13:47:07 -06:00
*)
LINK_DEPS="$LINK_DEPS $MD5/libmd5.a"
CORE_LIBS="$CORE_LIBS -L $MD5 -lmd5"
;;
esac
2003-12-14 14:10:27 -06:00
else
ngx_lib_inc="#include <sys/types.h>
#include <md5.h>"
2004-02-09 01:46:43 -06:00
MD5=NO
2004-02-23 14:57:12 -06:00
# Solaris 8/9
ngx_lib="rsaref md5"
ngx_lib_test="MD5_CTX md5; MD5Init(&md5)"
ngx_libs=-lmd5
. auto/lib/test
2003-12-14 14:10:27 -06:00
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
2004-02-20 10:48:59 -06:00
MD5_LIB=md5
2003-12-14 14:10:27 -06:00
ngx_found=no
else
# FreeBSD
2004-02-23 14:57:12 -06:00
2003-12-14 14:10:27 -06:00
ngx_lib="rsaref md"
ngx_lib_test="MD5_CTX md5; MD5Init(&md5)"
ngx_libs=-lmd
. auto/lib/test
fi
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
2004-02-20 10:48:59 -06:00
MD5_LIB=md
2003-12-14 14:10:27 -06:00
ngx_found=no
else
2004-02-23 14:57:12 -06:00
# OpenSSL crypto library
ngx_inc="#include <openssl/md5.h>"
2004-02-20 10:48:59 -06:00
ngx_lib="OpenSSL md5 crypto"
2003-12-14 14:10:27 -06:00
ngx_lib_test="MD5_CTX md5; MD5_Init(&md5)"
2004-02-20 10:48:59 -06:00
ngx_libs=-lcrypto
2003-12-14 14:10:27 -06:00
. auto/lib/test
fi
if [ $ngx_found = yes ]; then
2004-02-02 15:19:52 -06:00
have=HAVE_OPENSSL_MD5 . auto/have
2004-02-20 10:48:59 -06:00
have=HAVE_OPENSSL_MD5_H . auto/have
2003-12-14 14:10:27 -06:00
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
2004-02-20 10:48:59 -06:00
MD5_LIB=crypto
2003-12-14 14:10:27 -06:00
fi
fi