config.m4 872 B

1234567891011121314151617181920212223242526272829303132
  1. PHP_ARG_WITH([xsl],
  2. [whether to build with XSL support],
  3. [AS_HELP_STRING([--with-xsl],
  4. [Build with XSL support])])
  5. if test "$PHP_XSL" != "no"; then
  6. if test "$PHP_LIBXML" = "no"; then
  7. AC_MSG_ERROR([XSL extension requires LIBXML extension, add --with-libxml])
  8. fi
  9. if test "$PHP_DOM" = "no"; then
  10. AC_MSG_ERROR([XSL extension requires DOM extension, add --enable-dom])
  11. fi
  12. PKG_CHECK_MODULES([XSL], [libxslt >= 1.1.0])
  13. PHP_EVAL_INCLINE($XSL_CFLAGS)
  14. PHP_EVAL_LIBLINE($XSL_LIBS, XSL_SHARED_LIBADD)
  15. PKG_CHECK_MODULES([EXSLT], [libexslt],
  16. [
  17. PHP_EVAL_INCLINE($EXSLT_CFLAGS)
  18. PHP_EVAL_LIBLINE($EXSLT_LIBS, XSL_SHARED_LIBADD)
  19. AC_DEFINE(HAVE_XSL_EXSLT, 1, [ ])
  20. ], [ ])
  21. AC_DEFINE(HAVE_XSL,1,[ ])
  22. PHP_NEW_EXTENSION(xsl, php_xsl.c xsltprocessor.c, $ext_shared)
  23. PHP_SUBST(XSL_SHARED_LIBADD)
  24. PHP_ADD_EXTENSION_DEP(xsl, libxml)
  25. fi