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