From: Sterling Hughes Date: Thu, 17 Jan 2002 17:21:38 +0000 (+0000) Subject: Update for Sablotron .8 X-Git-Tag: PRE_ISSET_PATCH~181 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce6c5801b312b185eca130cb0406c7a8b7aa307d;p=php Update for Sablotron .8 --- diff --git a/ext/xslt/config.m4 b/ext/xslt/config.m4 index 00fe9fd738..7a1db17800 100644 --- a/ext/xslt/config.m4 +++ b/ext/xslt/config.m4 @@ -15,6 +15,9 @@ PHP_ARG_WITH(xslt-sablot, for XSLT Sablotron backend, PHP_ARG_WITH(expat-dir, libexpat dir for Sablotron XSL support, [ --with-expat-dir=DIR XSLT: libexpat dir for Sablotron 0.50]) +PHP_ARG_WITH(sablot-js, enable JavaScript for Sablotron, +[ --with-sablot-js=DIR Sablotron: enable JavaScript support for Sablotron]) + if test "$PHP_XSLT" != "no"; then PHP_EXTENSION(xslt, $ext_shared) @@ -81,6 +84,14 @@ if test "$PHP_XSLT" != "no"; then AC_MSG_ERROR([iconv not found, in order to build sablotron you need the iconv library]) fi + if test "$PHP_SABLOT_JS" != "no"; then + found_js=no + AC_CHECK_LIB(js, JS_GetRuntime, found_js=yes) + if test "$found_js" = "yes"; then + PHP_ADD_LIBRARY(js) + fi + fi + AC_DEFINE(HAVE_SABLOT_BACKEND, 1, [ ]) if test "$found_expat" = "yes"; then old_LIBS=$LIBS