php-src/ext/pcre/config.m4
Andrey Hristov 66f850e5b7 -Added PCRE library source
-Updated configuration process
1999-05-26 21:47:57 +00:00

44 lines
1.2 KiB
Plaintext

dnl $Id$
dnl config.m4 for extension pcre
dnl By default we'll compile and link against the bundled PCRE library
dnl if DIR is supplied, we'll use that for linking
AC_MSG_CHECKING(whether to use PCRE library)
AC_ARG_WITH(pcre-regex,
[ --with-pcre-regex[=DIR] Enable Perl Compatible Regular Expressions support],[
case "$withval" in
no)
AC_MSG_RESULT(no) ;;
yes)
PCRE_LIB="-Lpcrelib -lpcre"
PCRE_INCLUDE="-Ipcrelib"
PCRE_SUBDIR="pcrelib"
AC_DEFINE(HAVE_LIBPCRE, 1)
AC_MSG_RESULT(yes)
PHP_EXTENSION(pcre) ;;
*)
test -f $withval/pcre.h && PCRE_INCLUDE="-I$withval"
test -f $withval/libpcre.a && PCRE_LIB="-L$withval -lpcre"
if test -n "$PCRE_INCLUDE" && test -n "$PCRE_LIB" ; then
AC_DEFINE(HAVE_LIBPCRE, 1)
PCRE_SUBDIR=
AC_MSG_RESULT(yes)
PHP_EXTENSION(pcre)
else
AC_MSG_ERROR(Unable to find pcre.h and libpcre.a in $withval)
fi ;;
esac
],[
PCRE_LIB="-Lpcrelib -lpcre"
PCRE_INCLUDE="-Ipcrelib"
PCRE_SUBDIR="pcrelib"
AC_DEFINE(HAVE_LIBPCRE, 1)
AC_MSG_RESULT(yes)
PHP_EXTENSION(pcre)
])
AC_SUBST(PCRE_LIB)
AC_SUBST(PCRE_INCLUDE)
AC_SUBST(PCRE_SUBDIR)