Diff for /embedaddon/php/ext/intl/php_intl.c between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/05/29 12:34:40 version 1.1.1.3, 2013/07/22 01:31:52
Line 70 Line 70
   
 #include "idn/idn.h"  #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_class.h"
 # include "spoofchecker/spoofchecker.h"  # include "spoofchecker/spoofchecker.h"
 # include "spoofchecker/spoofchecker_create.h"  # include "spoofchecker/spoofchecker_create.h"
Line 646  PHP_MINIT_FUNCTION( intl ) Line 646  PHP_MINIT_FUNCTION( intl )
         /* Expose IDN constants to PHP scripts. */          /* Expose IDN constants to PHP scripts. */
         idn_register_constants(INIT_FUNC_ARGS_PASSTHRU);          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 */          /* Register 'Spoofchecker' PHP class */
         spoofchecker_register_Spoofchecker_class( TSRMLS_C );          spoofchecker_register_Spoofchecker_class( TSRMLS_C );
   

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>