diff options
author | Wez Furlong <wez@php.net> | 2003-12-05 20:17:47 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-12-05 20:17:47 +0000 |
commit | 952e0db997caa3114bac77fcf5a012ad8c1c8796 (patch) | |
tree | ebcb43d609439c604332aa1c8ea103d005e87de4 /ext/xsl | |
parent | 29e47dc7e42ef5d333b26acf4277cd38e5c2848f (diff) | |
download | php-git-952e0db997caa3114bac77fcf5a012ad8c1c8796.tar.gz |
Use Rob's static libxml+libiconv library; new build no longer
requires libxml2.dll or iconv.dll at runtime.
Since we have iconv built in, enable iconv extension by
default too.
Diffstat (limited to 'ext/xsl')
-rw-r--r-- | ext/xsl/config.w32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/xsl/config.w32 b/ext/xsl/config.w32 index f56d0f482f..e5ad29fc58 100644 --- a/ext/xsl/config.w32 +++ b/ext/xsl/config.w32 @@ -5,9 +5,9 @@ ARG_WITH("xsl", "xsl support", "no"); if (PHP_XSL != "no") { if (PHP_DOM == "yes" && PHP_LIBXML == "yes") { - if (CHECK_LIB("libxslt.lib", "xsl", PHP_XSL) && - CHECK_LIB("libxml2.lib", "xsl") && + if (CHECK_LIB("libxslt_a.lib;libxslt.lib", "xsl", PHP_XSL) && CHECK_HEADER_ADD_INCLUDE("libxslt\\xslt.h", "CFLAGS_XSL")) { + EXTENSION("xsl", "php_xsl.c xsltprocessor.c", PHP_XSL_SHARED); AC_DEFINE("HAVE_XSL", 1, "Define if xsl extension is enabled"); if (! PHP_XSL_SHARED) { |