php-src/ext/pcre/config.m4
1999-06-01 20:31:39 +00:00

27 lines
750 B
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 include PCRE support)
AC_ARG_WITH(pcre-regex,
[ --with-pcre-regex Include Perl Compatible Regular Expressions support],[
if test "$withval" = "yes"; then
EXTRA_LIBS="-L$abs_builddir/ext/pcre/pcrelib -lpcre $EXTRA_LIBS"
PCRE_SUBDIR="pcrelib"
AC_DEFINE(HAVE_PCRE, 1)
AC_MSG_RESULT(yes)
PHP_EXTENSION(pcre)
else
AC_MSG_RESULT(no)
fi
],[
EXTRA_LIBS="-L$abs_builddir/ext/pcre/pcrelib -lpcre $EXTRA_LIBS"
PCRE_SUBDIR="pcrelib"
AC_DEFINE(HAVE_PCRE, 1)
AC_MSG_RESULT(yes)
PHP_EXTENSION(pcre)
])
AC_SUBST(PCRE_SUBDIR)