nginx/auto/lib/pcre/conf

147 lines
3.6 KiB
Plaintext
Raw Normal View History

2004-02-10 04:47:18 +08:00
# Copyright (C) Igor Sysoev
2012-01-18 23:07:43 +08:00
# Copyright (C) Nginx, Inc.
2004-02-10 04:47:18 +08:00
if [ $PCRE != NONE ]; then
have=NGX_PCRE . auto/have
if [ "$NGX_PLATFORM" = win32 ]; then
have=PCRE_STATIC . auto/have
fi
2004-03-30 01:43:58 +08:00
CORE_INCS="$CORE_INCS $PCRE"
CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
2004-02-10 04:47:18 +08:00
case "$NGX_CC_NAME" in
2004-03-10 03:47:07 +08:00
msvc | owc | bcc)
2004-03-15 04:46:25 +08:00
LINK_DEPS="$LINK_DEPS $PCRE/pcre.lib"
2004-03-10 03:47:07 +08:00
CORE_LIBS="$CORE_LIBS $PCRE/pcre.lib"
;;
*)
2004-03-12 05:34:52 +08:00
LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a"
2004-04-05 04:32:09 +08:00
CORE_LIBS="$CORE_LIBS $PCRE/.libs/libpcre.a"
2004-03-10 03:47:07 +08:00
;;
esac
2004-02-10 04:47:18 +08:00
if [ $PCRE_JIT = YES ]; then
have=NGX_HAVE_PCRE_JIT . auto/have
PCRE_CONF_OPT="$PCRE_CONF_OPT --enable-jit"
fi
2004-02-10 04:47:18 +08:00
else
if [ "$NGX_PLATFORM" != win32 ]; then
2008-05-16 22:32:58 +08:00
PCRE=NO
ngx_feature="PCRE library"
ngx_feature_name="NGX_PCRE"
ngx_feature_run=no
ngx_feature_incs="#include <pcre.h>"
ngx_feature_path=
ngx_feature_libs="-lpcre"
ngx_feature_test="pcre *re;
re = pcre_compile(NULL, 0, NULL, 0, NULL);
if (re == NULL) return 1"
. auto/feature
2004-02-10 04:47:18 +08:00
2008-05-16 22:32:58 +08:00
if [ $ngx_found = no ]; then
# FreeBSD port
ngx_feature="PCRE library in /usr/local/"
ngx_feature_path="/usr/local/include"
2007-09-19 20:14:05 +08:00
if [ $NGX_RPATH = YES ]; then
ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lpcre"
else
ngx_feature_libs="-L/usr/local/lib -lpcre"
fi
. auto/feature
2004-03-10 03:47:07 +08:00
fi
2008-05-16 22:32:58 +08:00
if [ $ngx_found = no ]; then
2008-08-04 22:54:12 +08:00
# RedHat RPM, Solaris package
2008-05-16 22:32:58 +08:00
ngx_feature="PCRE library in /usr/include/pcre/"
ngx_feature_path="/usr/include/pcre"
ngx_feature_libs="-lpcre"
. auto/feature
fi
2008-05-16 22:32:58 +08:00
if [ $ngx_found = no ]; then
# NetBSD port
2008-05-16 22:32:58 +08:00
ngx_feature="PCRE library in /usr/pkg/"
ngx_feature_path="/usr/pkg/include"
2007-09-19 20:14:05 +08:00
2008-05-16 22:32:58 +08:00
if [ $NGX_RPATH = YES ]; then
ngx_feature_libs="-R/usr/pkg/lib -L/usr/pkg/lib -lpcre"
else
ngx_feature_libs="-L/usr/pkg/lib -lpcre"
2006-11-27 19:12:34 +08:00
fi
2008-05-16 22:32:58 +08:00
. auto/feature
fi
2008-05-16 22:32:58 +08:00
if [ $ngx_found = no ]; then
2007-01-28 03:51:00 +08:00
# MacPorts
2008-05-16 22:32:58 +08:00
ngx_feature="PCRE library in /opt/local/"
ngx_feature_path="/opt/local/include"
2007-09-19 20:14:05 +08:00
2008-05-16 22:32:58 +08:00
if [ $NGX_RPATH = YES ]; then
ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lpcre"
else
ngx_feature_libs="-L/opt/local/lib -lpcre"
2007-01-28 03:51:00 +08:00
fi
2008-05-16 22:32:58 +08:00
. auto/feature
2007-01-28 03:51:00 +08:00
fi
if [ $ngx_found = yes ]; then
CORE_INCS="$CORE_INCS $ngx_feature_path"
CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
PCRE=YES
fi
if [ $PCRE = YES ]; then
ngx_feature="PCRE JIT support"
ngx_feature_name="NGX_HAVE_PCRE_JIT"
ngx_feature_test="int jit = 0;
pcre_free_study(NULL);
pcre_config(PCRE_CONFIG_JIT, &jit);
if (jit != 1) return 1;"
. auto/feature
if [ $ngx_found = yes ]; then
PCRE_JIT=YES
fi
fi
fi
if [ $PCRE != 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 install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
END
exit 1
2004-02-10 04:47:18 +08:00
fi
2004-02-10 04:47:18 +08:00
fi