summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-07-24 21:40:37 +0000
committerSascha Schumann <sas@php.net>1999-07-24 21:40:37 +0000
commitf6f0f285cc204df8bc99a2fa0769122396dcee22 (patch)
tree03956651609b5a6ab58c1d9160e263c2286a497c
parent97c496fc9dbbe24d034d484404ef75edd7389a2f (diff)
downloadphp-git-f6f0f285cc204df8bc99a2fa0769122396dcee22.tar.gz
overlooked them
-rw-r--r--ext/xml/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/xml/config.m4 b/ext/xml/config.m4
index daba7bfc0a..df323399dc 100644
--- a/ext/xml/config.m4
+++ b/ext/xml/config.m4
@@ -27,9 +27,9 @@ AC_ARG_WITH(xml,
AC_MSG_RESULT([yes (static)])
fi
if test "$withval" = "yes"; then
- test -d /usr/include/xmltok && XML_INCLUDE="-I/usr/include/xmltok"
- test -d /usr/include/xml && XML_INCLUDE="-I/usr/include/xml"
- test -d /usr/local/include/xml && XML_INCLUDE="-I/usr/local/include/xml"
+ test -d /usr/include/xmltok && XML_INCLUDE="/usr/include/xmltok"
+ test -d /usr/include/xml && XML_INCLUDE="/usr/include/xml"
+ test -d /usr/local/include/xml && XML_INCLUDE="/usr/local/include/xml"
AC_CHECK_LIB(expat, main, XML_LIBS="-lexpat", XML_LIBS="-lxmlparse -lxmltok")
else
XML_LIBS="-L$withval/lib -lexpat"