]> granicus.if.org Git - php/commitdiff
Allow Spoofchecker to be registered on ICU 49.1
authorGustavo Lopes <glopes@nebm.ist.utl.pt>
Sun, 26 Aug 2012 21:30:43 +0000 (23:30 +0200)
committerGustavo Lopes <glopes@nebm.ist.utl.pt>
Sun, 26 Aug 2012 21:39:04 +0000 (23:39 +0200)
ext/intl/php_intl.c

index efe0ddd242319a0803daf045e2f839ce6fdf780a..90e3573c1b51d763b98f3c1b43922ea32d8c1412 100644 (file)
@@ -70,7 +70,7 @@
 
 #include "idn/idn.h"
 
-#if U_ICU_VERSION_MAJOR_NUM > 3 && U_ICU_VERSION_MINOR_NUM >=2
+#if U_ICU_VERSION_MAJOR_NUM * 1000 + U_ICU_VERSION_MINOR_NUM >= 4002
 # include "spoofchecker/spoofchecker_class.h"
 # include "spoofchecker/spoofchecker.h"
 # include "spoofchecker/spoofchecker_create.h"
@@ -646,7 +646,7 @@ PHP_MINIT_FUNCTION( intl )
        /* Expose IDN constants to PHP scripts. */
        idn_register_constants(INIT_FUNC_ARGS_PASSTHRU);
 
-#if U_ICU_VERSION_MAJOR_NUM > 3 && U_ICU_VERSION_MINOR_NUM >=2
+#if U_ICU_VERSION_MAJOR_NUM * 1000 + U_ICU_VERSION_MINOR_NUM >= 4002
        /* Register 'Spoofchecker' PHP class */
        spoofchecker_register_Spoofchecker_class( TSRMLS_C );