2001-12-01 03:00:13 +08:00
|
|
|
dnl
|
1999-05-21 21:17:23 +08:00
|
|
|
dnl $Id$
|
2001-12-01 03:00:13 +08:00
|
|
|
dnl
|
1999-05-21 21:17:23 +08:00
|
|
|
|
1999-05-27 05:47:57 +08:00
|
|
|
dnl By default we'll compile and link against the bundled PCRE library
|
|
|
|
dnl if DIR is supplied, we'll use that for linking
|
|
|
|
|
2008-05-24 03:06:36 +08:00
|
|
|
PHP_ARG_WITH(pcre-regex,,
|
2008-04-11 03:41:24 +08:00
|
|
|
[ --with-pcre-regex=DIR Include Perl Compatible Regular Expressions support.
|
2008-06-02 22:12:04 +08:00
|
|
|
DIR is the PCRE install prefix [BUNDLED]], yes, no)
|
2008-04-11 03:41:24 +08:00
|
|
|
|
2008-05-24 03:06:36 +08:00
|
|
|
if test "$PHP_PCRE_REGEX" != "yes" && test "$PHP_PCRE_REGEX" != "no"; then
|
|
|
|
AC_MSG_CHECKING([for PCRE headers location])
|
2009-08-12 05:40:15 +08:00
|
|
|
for i in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/include $PHP_PCRE_REGEX/include/pcre $PHP_PCRE_REGEX/local/include; do
|
2003-02-09 22:59:07 +08:00
|
|
|
test -f $i/pcre.h && PCRE_INCDIR=$i
|
|
|
|
done
|
2002-07-23 21:07:29 +08:00
|
|
|
|
2000-05-01 10:42:55 +08:00
|
|
|
if test -z "$PCRE_INCDIR"; then
|
2003-02-09 22:59:07 +08:00
|
|
|
AC_MSG_ERROR([Could not find pcre.h in $PHP_PCRE_REGEX])
|
|
|
|
fi
|
2008-05-24 03:06:36 +08:00
|
|
|
AC_MSG_RESULT([$PCRE_INCDIR])
|
2003-02-09 22:59:07 +08:00
|
|
|
|
2008-05-24 03:06:36 +08:00
|
|
|
AC_MSG_CHECKING([for PCRE library location])
|
2004-11-03 22:32:52 +08:00
|
|
|
for j in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/$PHP_LIBDIR; do
|
2005-11-30 02:38:48 +08:00
|
|
|
test -f $j/libpcre.a || test -f $j/libpcre.$SHLIB_SUFFIX_NAME && PCRE_LIBDIR=$j
|
2003-02-09 22:59:07 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
if test -z "$PCRE_LIBDIR" ; then
|
|
|
|
AC_MSG_ERROR([Could not find libpcre.(a|$SHLIB_SUFFIX_NAME) in $PHP_PCRE_REGEX])
|
2000-05-01 10:42:55 +08:00
|
|
|
fi
|
2008-05-24 03:06:36 +08:00
|
|
|
AC_MSG_RESULT([$PCRE_LIBDIR])
|
1999-09-15 03:24:37 +08:00
|
|
|
|
2000-05-01 10:42:55 +08:00
|
|
|
changequote({,})
|
|
|
|
pcre_major=`grep PCRE_MAJOR $PCRE_INCDIR/pcre.h | sed -e 's/[^0-9]//g'`
|
|
|
|
pcre_minor=`grep PCRE_MINOR $PCRE_INCDIR/pcre.h | sed -e 's/[^0-9]//g'`
|
|
|
|
changequote([,])
|
|
|
|
pcre_minor_length=`echo "$pcre_minor" | wc -c | sed -e 's/[^0-9]//g'`
|
|
|
|
if test "$pcre_minor_length" -eq 2 ; then
|
|
|
|
pcre_minor="$pcre_minor"0
|
|
|
|
fi
|
|
|
|
pcre_version=$pcre_major$pcre_minor
|
2006-05-28 23:34:19 +08:00
|
|
|
if test "$pcre_version" -lt 660; then
|
|
|
|
AC_MSG_ERROR([The PCRE extension requires PCRE library version >= 6.6])
|
2000-05-01 10:42:55 +08:00
|
|
|
fi
|
|
|
|
|
2008-06-02 22:12:04 +08:00
|
|
|
PHP_ADD_LIBRARY_WITH_PATH(pcre, $PCRE_LIBDIR)
|
2000-05-01 10:42:55 +08:00
|
|
|
|
|
|
|
AC_DEFINE(HAVE_PCRE, 1, [ ])
|
2002-07-23 21:07:29 +08:00
|
|
|
PHP_ADD_INCLUDE($PCRE_INCDIR)
|
2008-06-02 22:12:04 +08:00
|
|
|
PHP_NEW_EXTENSION(pcre, php_pcre.c, no)
|
2007-03-25 20:53:31 +08:00
|
|
|
PHP_INSTALL_HEADERS([ext/pcre], [php_pcre.h])
|
2008-05-24 03:06:36 +08:00
|
|
|
else
|
|
|
|
AC_MSG_CHECKING([for PCRE library to use])
|
|
|
|
AC_MSG_RESULT([bundled])
|
2008-09-14 22:37:14 +08:00
|
|
|
pcrelib_sources="pcrelib/pcre_chartables.c pcrelib/pcre_ucd.c \
|
2008-06-02 22:12:04 +08:00
|
|
|
pcrelib/pcre_compile.c pcrelib/pcre_config.c pcrelib/pcre_exec.c \
|
|
|
|
pcrelib/pcre_fullinfo.c pcrelib/pcre_get.c pcrelib/pcre_globals.c \
|
|
|
|
pcrelib/pcre_info.c pcrelib/pcre_maketables.c pcrelib/pcre_newline.c \
|
|
|
|
pcrelib/pcre_ord2utf8.c pcrelib/pcre_refcount.c pcrelib/pcre_study.c \
|
|
|
|
pcrelib/pcre_tables.c pcrelib/pcre_try_flipped.c pcrelib/pcre_valid_utf8.c \
|
|
|
|
pcrelib/pcre_version.c pcrelib/pcre_xclass.c"
|
|
|
|
PHP_NEW_EXTENSION(pcre, $pcrelib_sources php_pcre.c, no,,-I@ext_srcdir@/pcrelib)
|
2008-05-24 03:06:36 +08:00
|
|
|
PHP_ADD_BUILD_DIR($ext_builddir/pcrelib)
|
|
|
|
PHP_INSTALL_HEADERS([ext/pcre], [php_pcre.h pcrelib/])
|
|
|
|
AC_DEFINE(HAVE_BUNDLED_PCRE, 1, [ ])
|
2000-05-01 10:42:55 +08:00
|
|
|
fi
|