config.m4 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. dnl config.m4 for extension xml
  2. PHP_ARG_ENABLE(xml,whether to enable XML support,
  3. [ --disable-xml Disable XML support], yes)
  4. if test -z "$PHP_LIBXML_DIR"; then
  5. PHP_ARG_WITH(libxml-dir, libxml2 install dir,
  6. [ --with-libxml-dir=DIR XML: libxml2 install prefix], no, no)
  7. fi
  8. PHP_ARG_WITH(libexpat-dir, libexpat install dir,
  9. [ --with-libexpat-dir=DIR XML: libexpat install prefix (deprecated)], no, no)
  10. if test "$PHP_XML" != "no"; then
  11. dnl
  12. dnl Default to libxml2 if --with-libexpat-dir is not used.
  13. dnl
  14. if test "$PHP_LIBEXPAT_DIR" = "no"; then
  15. if test "$PHP_LIBXML" = "no"; then
  16. AC_MSG_ERROR([XML extension requires LIBXML extension, add --enable-libxml])
  17. fi
  18. PHP_SETUP_LIBXML(XML_SHARED_LIBADD, [
  19. xml_extra_sources="compat.c"
  20. PHP_ADD_EXTENSION_DEP(xml, libxml)
  21. ], [
  22. AC_MSG_ERROR([libxml2 not found. Use --with-libxml-dir=<DIR>])
  23. ])
  24. fi
  25. dnl
  26. dnl Check for expat only if --with-libexpat-dir is used.
  27. dnl
  28. if test "$PHP_LIBEXPAT_DIR" != "no"; then
  29. for i in $PHP_XML $PHP_LIBEXPAT_DIR /usr /usr/local; do
  30. if test -f "$i/$PHP_LIBDIR/libexpat.a" || test -f "$i/$PHP_LIBDIR/libexpat.$SHLIB_SUFFIX_NAME"; then
  31. EXPAT_DIR=$i
  32. break
  33. fi
  34. done
  35. if test -z "$EXPAT_DIR"; then
  36. AC_MSG_ERROR([not found. Please reinstall the expat distribution.])
  37. fi
  38. PHP_ADD_INCLUDE($EXPAT_DIR/include)
  39. PHP_ADD_LIBRARY_WITH_PATH(expat, $EXPAT_DIR/$PHP_LIBDIR, XML_SHARED_LIBADD)
  40. AC_DEFINE(HAVE_LIBEXPAT, 1, [ ])
  41. fi
  42. PHP_NEW_EXTENSION(xml, xml.c $xml_extra_sources, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
  43. PHP_SUBST(XML_SHARED_LIBADD)
  44. PHP_INSTALL_HEADERS([ext/xml/])
  45. AC_DEFINE(HAVE_XML, 1, [ ])
  46. fi