diff options
author | Sascha Schumann <sas@php.net> | 2000-05-05 11:39:41 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-05-05 11:39:41 +0000 |
commit | 30f6031bfa2a1be946fe978b14ce5fc118deea5b (patch) | |
tree | f3aca09d74f4de1988410c85317b3c0b87d193c0 /configure.in | |
parent | f51b56cfed860d5f5db143e44269f751146cd6c6 (diff) | |
download | php-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.in | 2 |
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) |