From 5f25ab414f7d6b3e17aa9e4304c6da63624e4c58 Mon Sep 17 00:00:00 2001 From: Edin Kadribasic Date: Tue, 23 Jul 2002 13:03:03 +0000 Subject: [PATCH] Allow pcre.h to be in $PREFIX/include/pcre since this is the case with some Linux distributions (patch by Troels Arvin ). --- ext/pcre/config.m4 | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/pcre/config.m4 b/ext/pcre/config.m4 index cf973fe052..8e1a6f7f3e 100644 --- a/ext/pcre/config.m4 +++ b/ext/pcre/config.m4 @@ -25,6 +25,7 @@ if test "$PHP_PCRE_REGEX" != "no"; then else test -f $PHP_PCRE_REGEX/pcre.h && PCRE_INCDIR=$PHP_PCRE_REGEX test -f $PHP_PCRE_REGEX/include/pcre.h && PCRE_INCDIR=$PHP_PCRE_REGEX/include + test -f $PHP_PCRE_REGEX/include/pcre/pcre.h && PCRE_INCDIR=$PHP_PCRE_REGEX/include/pcre if test -z "$PCRE_INCDIR"; then AC_MSG_RESULT(Could not find pcre.h in $PHP_PCRE_REGEX) -- 2.40.0