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