From 929d82eec462079d3e04267dafde49d8eb945841 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Wed, 10 Jun 2009 14:28:06 +0000 Subject: [PATCH] Fix extension loading order --- ext/simplexml/simplexml.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 50cbb8935f..57e3cabe6f 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -2532,6 +2532,7 @@ const zend_function_entry simplexml_functions[] = { /* {{{ */ static const zend_module_dep simplexml_deps[] = { /* {{{ */ ZEND_MOD_REQUIRED("libxml") + ZEND_MOD_REQUIRED("spl") {NULL, NULL, NULL} }; /* }}} */ -- 2.40.0