Skip to content

Commit 13a5020

Browse files
committed
Check feature availability as ICU < 49 is still supported
1 parent 9a8e7b5 commit 13a5020

5 files changed

+13
-0
lines changed

ext/intl/normalizer/normalizer_class.c

+4
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ ZEND_BEGIN_ARG_INFO_EX( normalizer_args, 0, 0, 1 )
3434
ZEND_ARG_INFO( 0, form )
3535
ZEND_END_ARG_INFO()
3636

37+
#if U_ICU_VERSION_MAJOR_NUM >= 49
3738
ZEND_BEGIN_ARG_INFO_EX( decomposition_args, 0, 0, 1 )
3839
ZEND_ARG_INFO( 0, input )
3940
ZEND_END_ARG_INFO();
41+
#endif
4042

4143
/* }}} */
4244

@@ -47,7 +49,9 @@ ZEND_END_ARG_INFO();
4749
static const zend_function_entry Normalizer_class_functions[] = {
4850
ZEND_FENTRY( normalize, ZEND_FN( normalizer_normalize ), normalizer_args, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
4951
ZEND_FENTRY( isNormalized, ZEND_FN( normalizer_is_normalized ), normalizer_args, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
52+
#if U_ICU_VERSION_MAJOR_NUM >= 49
5053
ZEND_FENTRY( getRawDecomposition, ZEND_FN( normalizer_get_raw_decomposition ), decomposition_args, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
54+
#endif
5155
PHP_FE_END
5256
};
5357
/* }}} */

ext/intl/normalizer/normalizer_normalize.c

+2
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ PHP_FUNCTION( normalizer_is_normalized )
255255
/* {{{ proto string|null normalizer_get_raw_decomposition( string $input )
256256
* Returns the Decomposition_Mapping property for the given UTF-8 encoded code point.
257257
*/
258+
#if U_ICU_VERSION_MAJOR_NUM >= 49
258259
PHP_FUNCTION( normalizer_get_raw_decomposition )
259260
{
260261
char* input = NULL;
@@ -294,6 +295,7 @@ PHP_FUNCTION( normalizer_get_raw_decomposition )
294295

295296
RETVAL_NEW_STR(intl_convert_utf16_to_utf8(decomposition, decomposition_length, &status));
296297
}
298+
#endif
297299
/* }}} */
298300

299301
/*

ext/intl/normalizer/normalizer_normalize.h

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
PHP_FUNCTION( normalizer_normalize );
2323
PHP_FUNCTION( normalizer_is_normalized );
24+
#if U_ICU_VERSION_MAJOR_NUM >= 49
2425
PHP_FUNCTION( normalizer_get_raw_decomposition );
26+
#endif
2527

2628
#endif // NORMALIZER_NORMALIZE_H

ext/intl/php_intl.c

+4
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,11 @@ ZEND_BEGIN_ARG_INFO_EX(normalizer_args, 0, 0, 1)
206206
ZEND_ARG_INFO(0, form)
207207
ZEND_END_ARG_INFO()
208208

209+
#if U_ICU_VERSION_MAJOR_NUM >= 49
209210
ZEND_BEGIN_ARG_INFO_EX(decomposition_args, 0, 0, 1)
210211
ZEND_ARG_INFO(0, input)
211212
ZEND_END_ARG_INFO();
213+
#endif
212214

213215
ZEND_BEGIN_ARG_INFO_EX(grapheme_1_arg, 0, 0, 1)
214216
ZEND_ARG_INFO(0, string)
@@ -666,7 +668,9 @@ static const zend_function_entry intl_functions[] = {
666668
/* normalizer functions */
667669
PHP_FE( normalizer_normalize, normalizer_args )
668670
PHP_FE( normalizer_is_normalized, normalizer_args )
671+
#if U_ICU_VERSION_MAJOR_NUM >= 49
669672
PHP_FE( normalizer_get_raw_decomposition, decomposition_args )
673+
#endif
670674

671675
/* Locale functions */
672676
PHP_NAMED_FE( locale_get_default, zif_locale_get_default, locale_0_args )

ext/intl/tests/normalizer_get_raw_decomposition.phpt

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
normalizer_get_raw_decomposition()
33
--SKIPIF--
44
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
5+
<?php if( !function_exists( 'normalizer_get_raw_decomposition' ) ) print 'skip'; ?>
56
--FILE--
67
<?php
78

0 commit comments

Comments
 (0)