diff options
Diffstat (limited to 'ext/intl/php_intl.c')
-rw-r--r-- | ext/intl/php_intl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index 3e45e48016..aef6dc15c7 100644 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -85,6 +85,7 @@ #include "breakiterator/breakiterator_iterators.h" #include "idn/idn.h" +#include "uchar/uchar.h" #if U_ICU_VERSION_MAJOR_NUM * 1000 + U_ICU_VERSION_MINOR_NUM >= 4002 # include "spoofchecker/spoofchecker_class.h" @@ -1003,6 +1004,9 @@ PHP_MINIT_FUNCTION( intl ) /* 'Converter' class for codepage conversions */ php_converter_minit(INIT_FUNC_ARGS_PASSTHRU); + /* IntlChar class */ + php_uchar_minit(INIT_FUNC_ARGS_PASSTHRU); + return SUCCESS; } /* }}} */ |