1dnl config.m4 for extension simplexml 2 3PHP_ARG_ENABLE(simplexml, whether to enable SimpleXML support, 4[ --disable-simplexml Disable SimpleXML support], yes) 5 6if test -z "$PHP_LIBXML_DIR"; then 7 PHP_ARG_WITH(libxml-dir, libxml2 install dir, 8 [ --with-libxml-dir=DIR SimpleXML: libxml2 install prefix], no, no) 9fi 10 11if test "$PHP_SIMPLEXML" != "no"; then 12 13 if test "$PHP_LIBXML" = "no"; then 14 AC_MSG_ERROR([SimpleXML extension requires LIBXML extension, add --enable-libxml]) 15 fi 16 17 PHP_SETUP_LIBXML(SIMPLEXML_SHARED_LIBADD, [ 18 AC_DEFINE(HAVE_SIMPLEXML,1,[ ]) 19 PHP_NEW_EXTENSION(simplexml, simplexml.c sxe.c, $ext_shared) 20 PHP_INSTALL_HEADERS([ext/simplexml/php_simplexml.h ext/simplexml/php_simplexml_exports.h]) 21 PHP_SUBST(SIMPLEXML_SHARED_LIBADD) 22 ], [ 23 AC_MSG_ERROR([libxml2 not found. Please check your libxml2 installation.]) 24 ]) 25 PHP_ADD_EXTENSION_DEP(simplexml, libxml) 26 PHP_ADD_EXTENSION_DEP(simplexml, spl, true) 27fi 28