2004-02-09 14:47:18 -06:00
|
|
|
|
2004-09-29 11:00:49 -05:00
|
|
|
# Copyright (C) Igor Sysoev
|
2012-01-18 09:07:43 -06:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2004-09-29 11:00:49 -05:00
|
|
|
|
|
|
|
|
2004-02-09 14:47:18 -06:00
|
|
|
if [ $PCRE != NONE ]; then
|
2004-03-29 11:43:58 -06:00
|
|
|
CORE_INCS="$CORE_INCS $PCRE"
|
2004-02-09 14:47:18 -06:00
|
|
|
|
2004-10-21 10:34:38 -05:00
|
|
|
case "$NGX_CC_NAME" in
|
2004-03-09 13:47:07 -06:00
|
|
|
|
2016-02-12 21:47:34 -06:00
|
|
|
msvc | owc | bcc)
|
2004-10-21 10:34:38 -05:00
|
|
|
have=NGX_PCRE . auto/have
|
2004-03-09 13:47:07 -06:00
|
|
|
have=PCRE_STATIC . auto/have
|
2004-03-14 14:46:25 -06:00
|
|
|
CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
|
|
|
|
LINK_DEPS="$LINK_DEPS $PCRE/pcre.lib"
|
2004-03-09 13:47:07 -06:00
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre.lib"
|
|
|
|
;;
|
|
|
|
|
2016-02-12 21:47:34 -06:00
|
|
|
icc)
|
2004-10-21 10:34:38 -05:00
|
|
|
have=NGX_PCRE . auto/have
|
2004-03-14 14:46:25 -06:00
|
|
|
CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
|
|
|
|
|
|
|
|
LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a"
|
|
|
|
|
2005-06-15 13:33:41 -05:00
|
|
|
echo $ngx_n "checking for PCRE library ...$ngx_c"
|
|
|
|
|
2007-07-15 09:45:51 -05:00
|
|
|
if [ -f $PCRE/pcre.h ]; then
|
2007-01-10 10:15:49 -06:00
|
|
|
ngx_pcre_ver=`grep PCRE_MAJOR $PCRE/pcre.h \
|
|
|
|
| sed -e 's/^.*PCRE_MAJOR.* \(.*\)$/\1/'`
|
|
|
|
|
2007-07-20 13:33:44 -05:00
|
|
|
else if [ -f $PCRE/configure.in ]; then
|
2007-01-10 10:15:49 -06:00
|
|
|
ngx_pcre_ver=`grep PCRE_MAJOR= $PCRE/configure.in \
|
|
|
|
| sed -e 's/^.*=\(.*\)$/\1/'`
|
2007-07-15 09:44:53 -05:00
|
|
|
|
|
|
|
else
|
|
|
|
ngx_pcre_ver=`grep pcre_major, $PCRE/configure.ac \
|
|
|
|
| sed -e 's/^.*pcre_major,.*\[\(.*\)\].*$/\1/'`
|
|
|
|
fi
|
2007-01-10 10:15:49 -06:00
|
|
|
fi
|
2005-06-15 13:33:41 -05:00
|
|
|
|
|
|
|
echo " $ngx_pcre_ver major version found"
|
|
|
|
|
2004-03-14 14:46:25 -06:00
|
|
|
# to allow -ipo optimization we link with the *.o but not library
|
2005-06-15 13:33:41 -05:00
|
|
|
|
|
|
|
case "$ngx_pcre_ver" in
|
2007-01-10 10:15:49 -06:00
|
|
|
4|5)
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre.o"
|
|
|
|
;;
|
|
|
|
|
2005-06-15 13:33:41 -05:00
|
|
|
6)
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_chartables.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_compile.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_exec.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_fullinfo.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_globals.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_tables.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_try_flipped.o"
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2007-01-10 10:15:49 -06:00
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_chartables.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_compile.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_exec.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_fullinfo.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_globals.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_tables.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_try_flipped.o"
|
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/pcre_newline.o"
|
2005-06-15 13:33:41 -05:00
|
|
|
;;
|
2007-01-10 10:15:49 -06:00
|
|
|
|
2005-06-15 13:33:41 -05:00
|
|
|
esac
|
2004-03-14 14:46:25 -06:00
|
|
|
;;
|
|
|
|
|
2004-03-09 13:47:07 -06:00
|
|
|
*)
|
2004-10-21 10:34:38 -05:00
|
|
|
have=NGX_PCRE . auto/have
|
2013-09-04 11:48:28 -05:00
|
|
|
|
|
|
|
if [ "$NGX_PLATFORM" = win32 ]; then
|
|
|
|
have=PCRE_STATIC . auto/have
|
|
|
|
fi
|
|
|
|
|
2004-03-11 15:34:52 -06:00
|
|
|
CORE_DEPS="$CORE_DEPS $PCRE/pcre.h"
|
|
|
|
LINK_DEPS="$LINK_DEPS $PCRE/.libs/libpcre.a"
|
2004-04-04 15:32:09 -05:00
|
|
|
CORE_LIBS="$CORE_LIBS $PCRE/.libs/libpcre.a"
|
2004-03-09 13:47:07 -06:00
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
2004-02-09 14:47:18 -06:00
|
|
|
|
2011-12-26 07:10:36 -06:00
|
|
|
|
|
|
|
if [ $PCRE_JIT = YES ]; then
|
|
|
|
have=NGX_HAVE_PCRE_JIT . auto/have
|
|
|
|
PCRE_CONF_OPT="$PCRE_CONF_OPT --enable-jit"
|
|
|
|
fi
|
|
|
|
|
2004-02-09 14:47:18 -06:00
|
|
|
else
|
|
|
|
|
2005-02-22 08:40:13 -06:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2008-05-16 09:32:58 -05:00
|
|
|
|
2004-10-21 10:34:38 -05:00
|
|
|
PCRE=NO
|
|
|
|
|
|
|
|
ngx_feature="PCRE library"
|
2004-11-25 10:17:31 -06:00
|
|
|
ngx_feature_name="NGX_PCRE"
|
2004-10-21 10:34:38 -05:00
|
|
|
ngx_feature_run=no
|
|
|
|
ngx_feature_incs="#include <pcre.h>"
|
2006-11-27 05:07:09 -06:00
|
|
|
ngx_feature_path=
|
2004-10-21 10:34:38 -05:00
|
|
|
ngx_feature_libs="-lpcre"
|
2012-03-27 11:44:52 -05:00
|
|
|
ngx_feature_test="pcre *re;
|
|
|
|
re = pcre_compile(NULL, 0, NULL, 0, NULL);
|
|
|
|
if (re == NULL) return 1"
|
2004-10-21 10:34:38 -05:00
|
|
|
. auto/feature
|
2004-02-09 14:47:18 -06:00
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
if [ $ngx_found = no ]; then
|
2006-11-27 05:07:09 -06:00
|
|
|
|
|
|
|
# FreeBSD port
|
|
|
|
|
|
|
|
ngx_feature="PCRE library in /usr/local/"
|
|
|
|
ngx_feature_path="/usr/local/include"
|
2007-09-19 07:14:05 -05: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
|
|
|
|
|
2006-11-27 05:07:09 -06:00
|
|
|
. auto/feature
|
2004-03-09 13:47:07 -06:00
|
|
|
fi
|
2006-11-27 05:07:09 -06:00
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
if [ $ngx_found = no ]; then
|
2006-11-27 05:07:09 -06:00
|
|
|
|
2008-08-04 09:54:12 -05:00
|
|
|
# RedHat RPM, Solaris package
|
2006-11-27 05:07:09 -06:00
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
ngx_feature="PCRE library in /usr/include/pcre/"
|
|
|
|
ngx_feature_path="/usr/include/pcre"
|
|
|
|
ngx_feature_libs="-lpcre"
|
|
|
|
|
|
|
|
. auto/feature
|
2006-11-27 05:07:09 -06:00
|
|
|
fi
|
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
if [ $ngx_found = no ]; then
|
2006-11-27 05:07:09 -06:00
|
|
|
|
|
|
|
# NetBSD port
|
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
ngx_feature="PCRE library in /usr/pkg/"
|
|
|
|
ngx_feature_path="/usr/pkg/include"
|
2007-09-19 07:14:05 -05:00
|
|
|
|
2008-05-16 09:32:58 -05: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 05:12:34 -06:00
|
|
|
fi
|
2008-05-16 09:32:58 -05:00
|
|
|
|
|
|
|
. auto/feature
|
2006-11-27 05:07:09 -06:00
|
|
|
fi
|
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
if [ $ngx_found = no ]; then
|
2007-01-27 13:51:00 -06:00
|
|
|
|
|
|
|
# MacPorts
|
|
|
|
|
2008-05-16 09:32:58 -05:00
|
|
|
ngx_feature="PCRE library in /opt/local/"
|
|
|
|
ngx_feature_path="/opt/local/include"
|
2007-09-19 07:14:05 -05:00
|
|
|
|
2008-05-16 09:32:58 -05: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-27 13:51:00 -06:00
|
|
|
fi
|
2008-05-16 09:32:58 -05:00
|
|
|
|
|
|
|
. auto/feature
|
2007-01-27 13:51:00 -06:00
|
|
|
fi
|
|
|
|
|
2006-11-27 05:07:09 -06:00
|
|
|
if [ $ngx_found = yes ]; then
|
|
|
|
CORE_INCS="$CORE_INCS $ngx_feature_path"
|
|
|
|
CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
|
|
|
|
PCRE=YES
|
2010-07-08 10:57:36 -05:00
|
|
|
fi
|
2011-12-26 07:10:36 -06:00
|
|
|
|
2011-12-29 09:58:53 -06:00
|
|
|
if [ $PCRE = YES ]; then
|
2011-12-26 07:10:36 -06:00
|
|
|
ngx_feature="PCRE JIT support"
|
|
|
|
ngx_feature_name="NGX_HAVE_PCRE_JIT"
|
|
|
|
ngx_feature_test="int jit = 0;
|
2012-12-12 07:50:07 -06:00
|
|
|
pcre_free_study(NULL);
|
2011-12-26 07:10:36 -06:00
|
|
|
pcre_config(PCRE_CONFIG_JIT, &jit);
|
|
|
|
if (jit != 1) return 1;"
|
|
|
|
. auto/feature
|
|
|
|
|
|
|
|
if [ $ngx_found = yes ]; then
|
|
|
|
PCRE_JIT=YES
|
|
|
|
fi
|
|
|
|
fi
|
2010-07-08 10:57:36 -05:00
|
|
|
fi
|
2009-05-26 09:28:49 -05:00
|
|
|
|
2010-07-08 10:57:36 -05:00
|
|
|
if [ $PCRE != YES ]; then
|
2009-05-26 09:28:49 -05:00
|
|
|
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
|
2010-07-08 10:57:36 -05:00
|
|
|
exit 1
|
2004-02-09 14:47:18 -06:00
|
|
|
fi
|
2010-07-08 10:57:36 -05:00
|
|
|
|
2004-02-09 14:47:18 -06:00
|
|
|
fi
|