nginx/auto/lib/conf

55 lines
952 B
Plaintext
Raw Permalink Normal View History

2003-12-15 04:10:27 +08:00
# Copyright (C) Igor Sysoev
2012-01-18 23:07:43 +08:00
# Copyright (C) Nginx, Inc.
if [ $USE_PCRE = YES -o $PCRE != NONE ]; then
2004-02-10 04:47:18 +08:00
. auto/lib/pcre/conf
else
if [ $USE_PCRE = DISABLED -a $HTTP = YES -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-15 04:10:27 +08:00
fi
2004-07-26 02:34:14 +08:00
if [ $USE_OPENSSL = YES ]; then
. auto/lib/openssl/conf
fi
2003-12-15 04:10:27 +08:00
if [ $USE_ZLIB = YES ]; then
. auto/lib/zlib/conf
fi
if [ $USE_LIBXSLT != NO ]; then
2008-08-04 22:48:15 +08:00
. auto/lib/libxslt/conf
fi
if [ $USE_LIBGD != NO ]; then
2009-05-02 02:42:09 +08:00
. auto/lib/libgd/conf
fi
2016-02-26 19:27:04 +08:00
if [ $USE_PERL != NO ]; then
. auto/lib/perl/conf
fi
2008-03-18 18:36:27 +08:00
if [ $USE_GEOIP != NO ]; then
2009-07-20 15:10:43 +08:00
. auto/lib/geoip/conf
fi
2009-11-26 01:55:25 +08:00
2008-03-18 18:36:27 +08:00
if [ $NGX_GOOGLE_PERFTOOLS = YES ]; then
. auto/lib/google-perftools/conf
fi
2009-11-26 01:55:25 +08:00
if [ $NGX_LIBATOMIC != NO ]; then
. auto/lib/libatomic/conf
fi