nginx/auto/lib/md5/conf

106 lines
2.3 KiB
Plaintext
Raw Normal View History

2003-12-15 04:10:27 +08:00
# Copyright (C) Igor Sysoev
2004-02-09 15:46:43 +08:00
if [ $MD5 != NONE ]; then
2003-12-15 04:10:27 +08:00
if grep MD5_Init $MD5/md5.h >/dev/null; then
# OpenSSL md5
OPENSSL_MD5=YES
2004-02-03 05:19:52 +08:00
have=HAVE_OPENSSL_MD5 . auto/have
2003-12-15 04:10:27 +08:00
else
# rsaref md5
OPENSSL_MD5=NO
fi
2004-03-30 01:43:58 +08:00
CORE_INCS="$CORE_INCS $MD5"
2003-12-15 04:10:27 +08:00
2004-03-26 04:03:02 +08:00
case "$CC" in
2004-03-10 03:47:07 +08:00
2004-03-30 01:43:58 +08:00
cl | wcl386 | bcc32)
2004-03-10 03:47:07 +08:00
LINK_DEPS="$LINK_DEPS $MD5/md5.lib"
CORE_LIBS="$CORE_LIBS $MD5/md5.lib"
;;
2004-03-15 04:46:25 +08: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-10 03:47:07 +08:00
*)
LINK_DEPS="$LINK_DEPS $MD5/libmd5.a"
2004-04-05 04:32:09 +08:00
CORE_LIBS="$CORE_LIBS $MD5/libmd5.a"
#CORE_LIBS="$CORE_LIBS -L $MD5 -lmd5"
2004-03-10 03:47:07 +08:00
;;
esac
2003-12-15 04:10:27 +08:00
else
2004-04-08 23:58:25 +08:00
if [ $PLATFORM != win32 ]; then
2004-04-19 03:06:02 +08:00
MD5=NO
ngx_lib_cflags=
2003-12-15 04:10:27 +08:00
2004-04-19 03:06:02 +08:00
# Solaris 8/9
2003-12-15 04:10:27 +08:00
2004-04-19 03:06:02 +08:00
ngx_lib_inc="#include <sys/types.h>
2004-04-08 23:58:25 +08:00
#include <md5.h>"
2004-04-19 03:06:02 +08:00
ngx_lib="rsaref md5 library"
ngx_lib_test="MD5_CTX md5; MD5Init(&md5)"
ngx_libs=-lmd5
. auto/lib/test
2004-04-08 23:58:25 +08:00
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
MD5_LIB=md5
ngx_found=no
else
# FreeBSD
ngx_lib="rsaref md library"
ngx_lib_test="MD5_CTX md5; MD5Init(&md5)"
2004-07-05 14:55:54 +08:00
ngx_libs=-lmd
2004-04-08 23:58:25 +08:00
. auto/lib/test
fi
if [ $ngx_found = yes ]; then
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
MD5_LIB=md
ngx_found=no
else
2004-04-19 03:06:02 +08:00
if [ $MD5 = NO ]; then
2004-04-08 23:58:25 +08:00
2004-04-19 03:06:02 +08:00
# OpenSSL crypto library
ngx_lib_inc="#include <openssl/md5.h>"
ngx_lib="OpenSSL md5 crypto library"
ngx_lib_test="MD5_CTX md5; MD5_Init(&md5)"
ngx_libs=-lcrypto
. auto/lib/test
fi
2004-04-08 23:58:25 +08:00
fi
if [ $ngx_found = yes ]; then
have=HAVE_OPENSSL_MD5 . auto/have
have=HAVE_OPENSSL_MD5_H . auto/have
CORE_LIBS="$CORE_LIBS $ngx_libs"
MD5=YES
MD5_LIB=crypto
fi
2003-12-15 04:10:27 +08:00
fi
fi