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