summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-05 11:39:41 +0000
committerSascha Schumann <sas@php.net>2000-05-05 11:39:41 +0000
commit30f6031bfa2a1be946fe978b14ce5fc118deea5b (patch)
treef3aca09d74f4de1988410c85317b3c0b87d193c0 /configure.in
parentf51b56cfed860d5f5db143e44269f751146cd6c6 (diff)
downloadphp-git-30f6031bfa2a1be946fe978b14ce5fc118deea5b.tar.gz
Fix a bug introduced when the SAPI checks were moved.
INCLUDES were overwritten, so i.e. APXS builds failed.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 3d62a060f2..3b72232c66 100644
--- a/configure.in
+++ b/configure.in
@@ -182,7 +182,7 @@ if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then
LDFLAGS="$LDFLAGS -L/usr/pkg/lib"
fi
-INCLUDES="-I\$(top_builddir)/Zend -I\$(top_srcdir)"
+INCLUDES="$INCLUDES -I\$(top_builddir)/Zend -I\$(top_srcdir)"
AC_CHECK_LIB(nsl, gethostname, [
AC_ADD_LIBRARY(nsl)