From: Andi Gutmans Date: Mon, 13 Mar 2000 06:00:36 +0000 (+0000) Subject: - Also check module API number X-Git-Tag: PHP-4.0-RC1~161 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70eb0c78f8cf35ef1f3542741927a01a717e9b5a;p=php - Also check module API number --- diff --git a/ext/standard/dl.c b/ext/standard/dl.c index b9bfb288e5..651b84e665 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -132,14 +132,15 @@ void php_dl(pval *file,int type,pval *return_value) RETURN_FALSE; } module_entry = get_module(); - if ((module_entry->zend_debug != ZEND_DEBUG) || (module_entry->zts != USING_ZTS)) { + if ((module_entry->zend_debug != ZEND_DEBUG) || (module_entry->zts != USING_ZTS) + || (module_entry->zend_api != ZEND_MODULE_API_NO)) { php_error(E_CORE_WARNING, "%s: Unable to initialize module\n" - "Module compiled with debug=%d, thread-safety=%d\n" - "PHP compiled with debug=%d, thread-safety=%d\n" + "Module compiled with debug=%d, thread-safety=%d module API=%d\n" + "PHP compiled with debug=%d, thread-safety=%d module API=%d\n" "These options need to match\n", - module_entry->name, module_entry->zend_debug, module_entry->zts, - ZEND_DEBUG, USING_ZTS); + module_entry->name, module_entry->zend_debug, module_entry->zts, module_entry->zend_api, + ZEND_DEBUG, USING_ZTS, ZEND_MODULE_API_NO); DL_UNLOAD(handle); RETURN_FALSE; }