nginx-quic/auto/lib/conf

81 lines
1.3 KiB
Text
Raw Normal View History

2003-12-14 17:10:27 -03:00
# Copyright (C) Igor Sysoev
if [ $USE_PCRE = YES -o $PCRE != NONE ]; then
2004-02-09 17:47:18 -03:00
. auto/lib/pcre/conf
else
if [ $USE_PCRE = DISABLED -a $HTTP_REWRITE = YES ]; then
cat << END
$0: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option or you have to enable the PCRE support.
END
exit 1
fi
2003-12-14 17:10:27 -03:00
fi
2004-07-25 14:34:14 -04:00
if [ $USE_OPENSSL = YES ]; then
. auto/lib/openssl/conf
fi
if [ $USE_MD5 = YES ]; then
if [ $USE_OPENSSL = YES ]; then
have=NGX_HAVE_OPENSSL_MD5_H . auto/have
have=NGX_OPENSSL_MD5 . auto/have
MD5=YES
2008-05-16 10:32:58 -04:00
MD5_LIB=OpenSSL
else
. auto/lib/md5/conf
fi
fi
if [ $USE_SHA1 = YES ]; then
if [ $USE_OPENSSL = YES ]; then
have=NGX_HAVE_OPENSSL_SHA1_H . auto/have
SHA1=YES
2008-05-16 10:32:58 -04:00
SHA1_LIB=OpenSSL
else
. auto/lib/sha1/conf
fi
fi
2003-12-14 17:10:27 -03:00
if [ $USE_ZLIB = YES ]; then
. auto/lib/zlib/conf
fi
2008-08-04 10:48:15 -04:00
if [ $USE_LIBXSLT = YES ]; then
. auto/lib/libxslt/conf
fi
2009-05-01 14:42:09 -04:00
if [ $USE_LIBGD = YES ]; then
. auto/lib/libgd/conf
fi
if [ $USE_PERL = YES ]; then
. auto/lib/perl/conf
fi
2008-03-18 07:36:27 -03:00
2009-07-20 03:10:43 -04:00
if [ $HTTP_GEOIP = YES ]; then
. auto/lib/geoip/conf
fi
2009-11-25 14:55:25 -03:00
2008-03-18 07:36:27 -03:00
if [ $NGX_GOOGLE_PERFTOOLS = YES ]; then
. auto/lib/google-perftools/conf
fi
2009-11-25 14:55:25 -03:00
if [ $NGX_LIBATOMIC != NO ]; then
. auto/lib/libatomic/conf
fi