????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.19.75.212 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/intl/ |
Upload File : |
// $Id$ // vim:ft=javascript ARG_ENABLE("intl", "Enable internationalization support", "no"); if (PHP_INTL != "no") { if (CHECK_LIB("icuuc.lib", "intl", PHP_INTL) && CHECK_HEADER_ADD_INCLUDE("unicode/utf.h", "CFLAGS_INTL")) { // always build as shared - zend_strtod.c/ICU type conflict EXTENSION("intl", "php_intl.c intl_convert.c intl_convertcpp.cpp intl_error.c ", true, "/I \"" + configure_module_dirname + "\""); ADD_SOURCES(configure_module_dirname + "/collator", "\ collator.c \ collator_attr.c \ collator_class.c \ collator_compare.c \ collator_convert.c \ collator_create.c \ collator_error.c \ collator_is_numeric.c \ collator_locale.c \ collator_sort.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/common", "\ common_error.c \ common_enum.cpp \ common_date.cpp \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/converter", "\ converter.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/formatter", "\ formatter.c \ formatter_attr.c \ formatter_class.c \ formatter_data.c \ formatter_format.c \ formatter_main.c \ formatter_parse.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/locale", "\ locale.c \ locale_class.c \ locale_methods.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/msgformat", "\ msgformat.c \ msgformat_attr.c \ msgformat_class.c \ msgformat_data.c \ msgformat_format.c \ msgformat_helpers.cpp \ msgformat_parse.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/grapheme", "\ grapheme_string.c grapheme_util.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/normalizer", "\ normalizer.c \ normalizer_class.c \ normalizer_normalize.c \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/dateformat", "\ dateformat.c \ dateformat_class.c \ dateformat_attr.c \ dateformat_format.c \ dateformat_format_object.cpp \ dateformat_parse.c \ dateformat_data.c \ dateformat_attrcpp.cpp \ dateformat_helpers.cpp \ dateformat_create.cpp \ ", "intl"); ADD_SOURCES(configure_module_dirname + "/idn", "\ idn.c", "intl"); ADD_SOURCES(configure_module_dirname + "/resourcebundle", "\ resourcebundle.c \ resourcebundle_class.c \ resourcebundle_iterator.c", "intl"); if (CHECK_HEADER_ADD_INCLUDE("unicode/uspoof.h", "CFLAGS_INTL")) { ADD_SOURCES(configure_module_dirname + "/spoofchecker", "\ spoofchecker.c \ spoofchecker_class.c \ spoofchecker_create.c \ spoofchecker_main.c", "intl"); AC_DEFINE("HAVE_INTL", 1, "Internationalization support enabled"); } ADD_SOURCES(configure_module_dirname + "/transliterator", "\ transliterator.c \ transliterator_class.c \ transliterator_methods.c", "intl"); ADD_SOURCES(configure_module_dirname + "/timezone", "\ timezone_class.cpp \ timezone_methods.cpp", "intl"); ADD_SOURCES(configure_module_dirname + "/calendar", "\ calendar_methods.cpp \ gregoriancalendar_methods.cpp \ calendar_class.cpp", "intl"); ADD_SOURCES(configure_module_dirname + "/breakiterator", "\ breakiterator_class.cpp \ breakiterator_methods.cpp \ breakiterator_iterators.cpp \ rulebasedbreakiterator_methods.cpp \ codepointiterator_internal.cpp \ codepointiterator_methods.cpp ", "intl"); ADD_FLAG("LIBS_INTL", "icudt.lib icuin.lib icuio.lib icule.lib iculx.lib"); ADD_FLAG("CFLAGS_INTL", "/EHsc"); AC_DEFINE("HAVE_INTL", 1, "Internationalization support enabled"); } else { WARNING("intl not enabled; libraries and/or headers not found"); } }