config.m4 1.6 KB

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