- Use correct configure option style. Enabled by default.

This commit is contained in:
foobar 2005-12-01 08:54:15 +00:00
parent 885a80dabc
commit 8ae898f486
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@ dnl
dnl $Id$
dnl
PHP_ARG_WITH(xmlreader, for XMLReader support,
[ --with-xmlreader Include XMLReader support])
PHP_ARG_ENABLE(xmlreader, whether to enable XMLReader support,
[ --disable-xmlreader Disable XMLReader support], yes)
if test -z "$PHP_LIBXML_DIR"; then
PHP_ARG_WITH(libxml-dir, libxml2 install dir,

View File

@ -1,7 +1,7 @@
// $Id$
// vim:ft=javascript
ARG_WITH("xmlreader", "XMLReader support", "no");
ARG_ENABLE("xmlreader", "XMLReader support", "yes");
if (PHP_XMLREADER == "yes" && PHP_LIBXML == "yes") {
EXTENSION("xmlreader", "php_xmlreader.c");