diff options
Diffstat (limited to 'ext/mcal/php_mcal.c')
-rw-r--r-- | ext/mcal/php_mcal.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ext/mcal/php_mcal.c b/ext/mcal/php_mcal.c index 8589e21b4d..c5dcdf8018 100644 --- a/ext/mcal/php_mcal.c +++ b/ext/mcal/php_mcal.c @@ -111,7 +111,16 @@ function_entry mcal_functions[] = { }; zend_module_entry php_mcal_module_entry = { - "mcal", mcal_functions, PHP_MINIT(mcal), NULL, NULL, NULL, PHP_MINFO(mcal), STANDARD_MODULE_PROPERTIES + STANDARD_MODULE_HEADER, + "mcal", + mcal_functions, + PHP_MINIT(mcal), + NULL, + NULL, + NULL, + PHP_MINFO(mcal), + NO_VERSION_YET, + STANDARD_MODULE_PROPERTIES }; #ifdef COMPILE_DL_MCAL |