summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-06-01 06:26:22 +0000
committerfoobar <sniper@php.net>2001-06-01 06:26:22 +0000
commit3a1b61c07d152e93744de485a3b7e7ab5db22b12 (patch)
tree349c431b5d9d0d840a1642e6b59ddba653ed8776 /acinclude.m4
parent58d35ea7785c9f9a7008c6bce7b75e64bed979cc (diff)
downloadphp-git-3a1b61c07d152e93744de485a3b7e7ab5db22b12.tar.gz
Fix bug: #9009.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m411
1 files changed, 8 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 3d561c71d2..b25a35bd98 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -684,15 +684,20 @@ AC_DEFUN(PHP_BUILD_RPATH,[
])
dnl
-dnl PHP_ADD_INCLUDE(path)
+dnl PHP_ADD_INCLUDE(path [,before])
dnl
-dnl add a include path
+dnl add a include path.
+dnl if before is 1, add in the beginning of INCLUDES.
dnl
AC_DEFUN(PHP_ADD_INCLUDE,[
if test "$1" != "/usr/include"; then
PHP_EXPAND_PATH($1, ai_p)
AC_PHP_ONCE(INCLUDEPATH, $ai_p, [
- INCLUDES="$INCLUDES -I$ai_p"
+ if test "$2"; then
+ INCLUDES="-I$ai_p $INCLUDES"
+ else
+ INCLUDES="$INCLUDES -I$ai_p"
+ fi
])
fi
])