1
0
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:
Anatol Belski 2013-10-15 17:32:59 +02:00
parent 3f5dbab5c1
commit a4c00b0761
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
#ifndef PHP_PQ_H #ifndef PHP_PQ_H
#define 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; int pq_module_number;
zend_module_entry pq_module_entry; zend_module_entry pq_module_entry;

View File

@ -100,7 +100,7 @@ static PHP_MINFO_FUNCTION(pq)
php_info_print_table_start(); php_info_print_table_start();
php_info_print_table_header(2, "PQ Support", "enabled"); 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_end();
php_info_print_table_start(); php_info_print_table_start();
@ -134,7 +134,7 @@ zend_module_entry pq_module_entry = {
NULL,/*PHP_RINIT(pq),*/ NULL,/*PHP_RINIT(pq),*/
NULL,/*PHP_RSHUTDOWN(pq),*/ NULL,/*PHP_RSHUTDOWN(pq),*/
PHP_MINFO(pq), PHP_MINFO(pq),
PHP_PQ_EXT_VERSION, PHP_PQ_VERSION,
STANDARD_MODULE_PROPERTIES STANDARD_MODULE_PROPERTIES
}; };