pajoye Fri Dec 26 14:06:29 2008 UTC
Modified files:
/php-src/ext/xsl config.w32
Log:
- MFB: be sure we define the deps so the right exts are built before (dom
symbol error when dom and xsl are shared)
http://cvs.php.net/viewvc.cgi/php-src/ext/xsl/config.w32?r1=1.9&r2=1.10&diff_format=u
Index: php-src/ext/xsl/config.w32
diff -u php-src/ext/xsl/config.w32:1.9 php-src/ext/xsl/config.w32:1.10
--- php-src/ext/xsl/config.w32:1.9 Sun Jul 18 13:23:33 2004
+++ php-src/ext/xsl/config.w32 Fri Dec 26 14:06:29 2008
@@ -1,10 +1,12 @@
-// $Id: config.w32,v 1.9 2004/07/18 13:23:33 rrichards Exp $
+// $Id: config.w32,v 1.10 2008/12/26 14:06:29 pajoye Exp $
// vim: ft=javascript
ARG_WITH("xsl", "xsl support", "no");
if (PHP_XSL != "no") {
- if (PHP_DOM == "yes" && PHP_LIBXML == "yes") {
+ if (PHP_DOM == "yes" && PHP_LIBXML == "yes"
+ && ADD_EXTENSION_DEP('xsl', 'libxml')
+ && ADD_EXTENSION_DEP('xsl', 'dom')) {
var ext_xsl_lib_found = false;
var ext_exslt_lib_found = false;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php