summaryrefslogtreecommitdiff
path: root/ext/pcre/config.m4
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-28 22:41:48 +0000
committerZeev Suraski <zeev@php.net>1999-05-28 22:41:48 +0000
commit0eb1498fa865601db3c61c77513046c3eba79d39 (patch)
tree062a80d404501d2192474f260acfee18ed4440b2 /ext/pcre/config.m4
parentdfce358a5b1cc2ec1d7901bccc95e645f947b428 (diff)
downloadphp-git-0eb1498fa865601db3c61c77513046c3eba79d39.tar.gz
* Get Apache module to compile again with the regex stuff.
* Get Apache to propertly work with POST, and some SAPI fixes
Diffstat (limited to 'ext/pcre/config.m4')
-rw-r--r--ext/pcre/config.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pcre/config.m4 b/ext/pcre/config.m4
index 2f25c86803..e2a903178f 100644
--- a/ext/pcre/config.m4
+++ b/ext/pcre/config.m4
@@ -8,7 +8,7 @@ AC_MSG_CHECKING(whether to include PCRE support)
AC_ARG_WITH(pcre-regex,
[ --with-pcre-regex[=DIR] Include Perl Compatible Regular Expressions support],[
if test "$withval" = "yes"; then
- EXTRA_LIBS="-Lext/pcre/pcrelib -lpcre $EXTRA_LIBS"
+ EXTRA_LIBS="-L$abs_builddir/ext/pcre/pcrelib -lpcre $EXTRA_LIBS"
PCRE_SUBDIR="pcrelib"
AC_DEFINE(HAVE_PCRE, 1)
AC_MSG_RESULT(yes)
@@ -17,7 +17,7 @@ AC_ARG_WITH(pcre-regex,
AC_MSG_RESULT(no)
fi
],[
- EXTRA_LIBS="-Lext/pcre/pcrelib -lpcre $EXTRA_LIBS"
+ EXTRA_LIBS="-L$abs_builddir/ext/pcre/pcrelib -lpcre $EXTRA_LIBS"
PCRE_SUBDIR="pcrelib"
AC_DEFINE(HAVE_PCRE, 1)
AC_MSG_RESULT(yes)