remove a circular dep where it was impossible to build simplexml shared
and not load it.
Get a simplexml_element object from dom to allow for processing */
PHP_FUNCTION(dom_import_simplexml)
{
-#ifdef HAVE_SIMPLEXML
zval *rv = NULL;
zval *node;
xmlNodePtr nodep = NULL;
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid Nodetype to import");
RETURN_NULL();
}
-#else
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "SimpleXML support is not enabled");
- return;
-#endif
}
/* }}} */
static zend_module_dep dom_deps[] = {
ZEND_MOD_REQUIRED("libxml")
ZEND_MOD_CONFLICTS("domxml")
-#ifdef HAVE_SIMPLEXML
- ZEND_MOD_REQUIRED("simplexml")
-#endif
{NULL, NULL, NULL}
};