From b1767d8a5625d7347e500e1230cf6c6c66d111ad Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 14 Jun 2018 23:35:29 +0200 Subject: Bump intl extension version to PHP release version This patch syncs and simplifies the intl core extension versioning to match the PHP release version. --- ext/intl/php_intl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ext/intl/php_intl.c') diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index 05832eaa34..dc028918b0 100644 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -103,7 +103,6 @@ #include #include "php_ini.h" -#define INTL_MODULE_VERSION PHP_INTL_VERSION /* * locale_get_default has a conflict since ICU also has @@ -879,7 +878,7 @@ zend_module_entry intl_module_entry = { PHP_RINIT( intl ), PHP_RSHUTDOWN( intl ), PHP_MINFO( intl ), - INTL_MODULE_VERSION, + PHP_INTL_VERSION, PHP_MODULE_GLOBALS(intl), /* globals descriptor */ PHP_GINIT(intl), /* globals ctor */ NULL, /* globals dtor */ @@ -1061,7 +1060,6 @@ PHP_MINFO_FUNCTION( intl ) php_info_print_table_start(); php_info_print_table_header( 2, "Internationalization support", "enabled" ); - php_info_print_table_row( 2, "version", INTL_MODULE_VERSION ); php_info_print_table_row( 2, "ICU version", U_ICU_VERSION ); #ifdef U_ICU_DATA_VERSION php_info_print_table_row( 2, "ICU Data version", U_ICU_DATA_VERSION ); -- cgit v1.2.1