sniper Fri Jun 17 07:45:00 2005 EDT
Modified files:
/php-src/ext/xsl php_xsl.c
Log:
Use the new dependency system
http://cvs.php.net/diff.php/php-src/ext/xsl/php_xsl.c?r1=1.29&r2=1.30&ty=u
Index: php-src/ext/xsl/php_xsl.c
diff -u php-src/ext/xsl/php_xsl.c:1.29 php-src/ext/xsl/php_xsl.c:1.30
--- php-src/ext/xsl/php_xsl.c:1.29 Wed Apr 6 08:26:29 2005
+++ php-src/ext/xsl/php_xsl.c Fri Jun 17 07:44:59 2005
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_xsl.c,v 1.29 2005/04/06 12:26:29 chregu Exp $ */
+/* $Id: php_xsl.c,v 1.30 2005/06/17 11:44:59 sniper Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -43,10 +43,18 @@
};
/* }}} */
+static zend_module_dep xsl_deps[] = {
+ ZEND_MOD_REQUIRED("libxml")
+ {NULL, NULL, NULL}
+};
+
/* {{{ xsl_module_entry
*/
zend_module_entry xsl_module_entry = {
-#if ZEND_MODULE_API_NO >= 20010901
+#if ZEND_MODULE_API_NO >= 20050617
+ STANDARD_MODULE_HEADER_EX, NULL,
+ xsl_deps,
+#elif ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"xsl",
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php