diff options
Diffstat (limited to 'ext/pcre')
-rw-r--r-- | ext/pcre/php_pcre.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index a9d901e895..381c1b4eed 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -1364,13 +1364,16 @@ function_entry pcre_functions[] = { }; zend_module_entry pcre_module_entry = { - "pcre", pcre_functions, - PHP_MINIT(pcre), - PHP_MSHUTDOWN(pcre), - PHP_RINIT(pcre), - NULL, - PHP_MINFO(pcre), - STANDARD_MODULE_PROPERTIES + STANDARD_MODULE_HEADER, + "pcre", + pcre_functions, + PHP_MINIT(pcre), + PHP_MSHUTDOWN(pcre), + PHP_RINIT(pcre), + NULL, + PHP_MINFO(pcre), + NO_VERSION_YET, + STANDARD_MODULE_PROPERTIES }; #ifdef COMPILE_DL_PCRE |