????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.133.83.123 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/mbstring/libmbfl/ |
Upload File : |
# Process this file with autoconf to produce a configure script. AC_INIT(mbfl/mbfilter.c) AM_INIT_AUTOMAKE(libmbfl, 1.1.0) AC_CONFIG_SRCDIR(mbfl/mbfilter.c) AM_CONFIG_HEADER(config.h) # SHLIB isn't a version number but the API reference # Read http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info SHLIB_VERSION="1:1:0" AC_SUBST(SHLIB_VERSION) # Checks for programs. AC_PROG_CC AC_PROG_CXX AC_PROG_LIBTOOL AC_PROG_RANLIB # Checks for libraries. # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stdlib.h stddef.h assert.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([strcasecmp strchr]) AC_CHECK_PROGS([FETCH_VIA_FTP], [wget curl ncftpget]) if test "$FETCH_VIA_FTP" = "curl"; then FETCH_VIA_FTP="curl -O" fi AC_CONFIG_FILES([ Makefile mbfl/Makefile filters/Makefile nls/Makefile tests/Makefile tests/conv_encoding.tests/Makefile tests/conv_kana.tests/Makefile tests/strwidth.tests/Makefile tests/strcut.tests/Makefile]) AC_OUTPUT