mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
* zend_module_entry change: apino, debug and zts are moved first,
see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
This commit is contained in:
parent
405142087c
commit
689252082c
97 changed files with 392 additions and 72 deletions
|
@ -631,14 +631,16 @@ static PHP_MINFO_FUNCTION(java) {
|
|||
}
|
||||
|
||||
zend_module_entry java_module_entry = {
|
||||
"java",
|
||||
java_functions,
|
||||
PHP_MINIT(java),
|
||||
PHP_MSHUTDOWN(java),
|
||||
NULL,
|
||||
NULL,
|
||||
PHP_MINFO(java),
|
||||
STANDARD_MODULE_PROPERTIES
|
||||
STANDARD_MODULE_HEADER,
|
||||
"java",
|
||||
java_functions,
|
||||
PHP_MINIT(java),
|
||||
PHP_MSHUTDOWN(java),
|
||||
NULL,
|
||||
NULL,
|
||||
PHP_MINFO(java),
|
||||
NO_VERSION_YET,
|
||||
STANDARD_MODULE_PROPERTIES
|
||||
};
|
||||
|
||||
ZEND_GET_MODULE(java)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue