Browse Source

Use the new dependency system

PHP-5.1
foobar 21 years ago
parent
commit
78a5b7693c
  1. 8
      ext/simplexml/simplexml.c

8
ext/simplexml/simplexml.c

@ -1652,8 +1652,14 @@ function_entry simplexml_functions[] = {
{NULL, NULL, NULL}
};
static zend_module_dep simplexml_deps[] = {
ZEND_MOD_REQUIRED("libxml")
{NULL, NULL, NULL}
};
zend_module_entry simplexml_module_entry = {
STANDARD_MODULE_HEADER,
STANDARD_MODULE_HEADER_EX, NULL,
simplexml_deps,
"SimpleXML",
simplexml_functions,
PHP_MINIT(simplexml),

Loading…
Cancel
Save