mirror of
https://github.com/danog/ext-pq.git
synced 2025-01-22 22:01:33 +01:00
fix version macros name
This commit is contained in:
parent
3f5dbab5c1
commit
a4c00b0761
2
php_pq.h
2
php_pq.h
@ -14,7 +14,7 @@
|
||||
#ifndef PHP_PQ_H
|
||||
#define PHP_PQ_H
|
||||
|
||||
#define PHP_PQ_EXT_VERSION "0.4.0"
|
||||
#define PHP_PQ_VERSION "0.4.0"
|
||||
|
||||
int pq_module_number;
|
||||
zend_module_entry pq_module_entry;
|
||||
|
@ -100,7 +100,7 @@ static PHP_MINFO_FUNCTION(pq)
|
||||
|
||||
php_info_print_table_start();
|
||||
php_info_print_table_header(2, "PQ Support", "enabled");
|
||||
php_info_print_table_row(2, "Extension Version", PHP_PQ_EXT_VERSION);
|
||||
php_info_print_table_row(2, "Extension Version", PHP_PQ_VERSION);
|
||||
php_info_print_table_end();
|
||||
|
||||
php_info_print_table_start();
|
||||
@ -134,7 +134,7 @@ zend_module_entry pq_module_entry = {
|
||||
NULL,/*PHP_RINIT(pq),*/
|
||||
NULL,/*PHP_RSHUTDOWN(pq),*/
|
||||
PHP_MINFO(pq),
|
||||
PHP_PQ_EXT_VERSION,
|
||||
PHP_PQ_VERSION,
|
||||
STANDARD_MODULE_PROPERTIES
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user