スポンサーリンク

【Docker】クラウドサーバーでLAMP環境構築してみたpart2

 

前回からの続き、やっていきます!

 


・PHPとMySQLの連携

PHPとMySQLの2つのコンテナを連携する
今まで作成したコンテナは削除しておくこと

 

連携するために以下2つの準備を行う

1.DockerfileによるPHPイメージのカスタマイズ
2.MySQLイメージの設定を変更

 

1.DockerfileによるPHPイメージのカスタマイズ

オフィシャルのPHPコンテナは最小限のオプションでコンパイルされているので、そのままではMySQLと連動するのが難しいらしい・・・

そこでDockerfileを使うと既にあるイメージをカスタマイズして新しいイメージを作ることができる

Dockerfileの場所はどこでもよいがとりあえず/docker/php/ に作成
ホスト側で /docker/php/Dockerfile を以下の内容で作成します

FROM php:5.6-apache
RUN apt-get update && \
  docker-php-ext-install pdo_mysql mysqli mbstring

 

FROMは元となるイメージを指定
RUNでコマンドを指定

docker-php-ext-installはphp:5.6-apacheイメージに含まれるユーティリティで

オプションを追加してPHPをリコンパイルするものらしい

Dockerfileができたら以下のようにコマンドを実行して新しいイメージをビルド

/docker/phpにあるDockerfileをもとにphp:customというイメージを作成する

[root@dev381 ~]# docker build -t php:custom /docker/php
Sending build context to Docker daemon 2.048 kB
Step 1 : FROM php:5.6-apache
—> 2d4c03fc6240
Step 2 : RUN apt-get update && docker-php-ext-install pdo_mysqli mbstring
—> Running in 4d745badfd3f
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Get:2 http://security.debian.org jessie/updates/main amd64 Packages [519 kB]
Ign http://deb.debian.org jessie InRelease
Get:3 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:4 http://deb.debian.org jessie Release.gpg [2373 B]
Get:5 http://deb.debian.org jessie-updates/main amd64 Packages [17.6 kB]
Get:6 http://deb.debian.org jessie Release [148 kB]
Get:7 http://deb.debian.org jessie/main amd64 Packages [9065 kB]
Fetched 9960 kB in 16s (599 kB/s)
Reading package lists…
error: /usr/src/php/ext/pdo_mysqli does not exist

usage: /usr/local/bin/docker-php-ext-install [-jN] ext-name [ext-name …]
ie: /usr/local/bin/docker-php-ext-install gd mysqli
/usr/local/bin/docker-php-ext-install pdo pdo_mysql
/usr/local/bin/docker-php-ext-install -j5 gd mbstring mysqli pdo pdo_mysq

if custom ./configure arguments are necessary, see docker-php-ext-configure

Possible values for ext-name:
bcmath bz2 calendar ctype curl dba dom enchant exif fileinfo filter ftp gd gettee intl json ldap mbstring mcrypt mssql mysql mysqli oci8 odbc opcache pcntl pdo l pdo_oci pdo_odbc pdo_pgsql pdo_sqlite pgsql phar posix pspell readline recode xml snmp soap sockets spl standard sybase_ct sysvmsg sysvsem sysvshm tidy tokenimlwriter xsl zip
The command ‘/bin/sh -c apt-get update && docker-php-ext-install pdo_mysqli mbe: 1

 

失敗した・・・

dockerファイルの記述が間違っていたのかと思い、もう一度記述し直して実行してみるとうまくいった

[root@dev381 ~]# vi /docker/php/Dockerfile
[root@dev381 ~]# docker build -t php:custom /docker/php
開くと長いので注意!
[toggle title=”実行結果”]
Sending build context to Docker daemon 2.048 kB
Step 1 : FROM php:5.6-apache
—> 2d4c03fc6240
Step 2 : RUN apt-get update && docker-php-ext-install pdo_mysql mysqli mbstrin
—> Running in b0690c346456
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://deb.debian.org jessie InRelease
Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:3 http://security.debian.org jessie/updates/main amd64 Packages [519 kB]
Get:4 http://deb.debian.org jessie Release.gpg [2373 B]
Get:5 http://deb.debian.org jessie-updates/main amd64 Packages [17.6 kB]
Get:6 http://deb.debian.org jessie Release [148 kB]
Get:7 http://deb.debian.org jessie/main amd64 Packages [9065 kB]
Fetched 9960 kB in 12s (774 kB/s)
Reading package lists…
+ cd pdo_mysql
+ phpize
Configuring for:
PHP Api Version: 20131106
Zend Module Api No: 20131226
Zend Extension Api No: 220131226
+ ./configure –build=x86_64-linux-gnu
checking for grep that handles long lines and -e… /bin/grep
checking for egrep… /bin/grep -E
checking for a sed that does not truncate output… /bin/sed
checking for cc… cc
checking whether the C compiler works… yes
checking for C compiler default output file name… a.out
checking for suffix of executables…
checking whether we are cross compiling… no
checking for suffix of object files… o
checking whether we are using the GNU C compiler… yes
checking whether cc accepts -g… yes
checking for cc option to accept ISO C89… none needed
checking how to run the C preprocessor… cc -E
checking for icc… no
checking for suncc… no
checking whether cc understands -c and -o together… yes
checking for system library directory… lib
checking if compiler supports -R… no
checking if compiler supports -Wl,-rpath,… yes
checking build system type… x86_64-pc-linux-gnu
checking host system type… x86_64-pc-linux-gnu
checking target system type… x86_64-pc-linux-gnu
checking for PHP prefix… /usr/local
checking for PHP includes… -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclu
checking for PHP extension directory… /usr/local/lib/php/extensions/no-debug-n
checking for PHP installed headers prefix… /usr/local/include/php
checking if debug is enabled… no
checking if zts is enabled… no
checking for re2c… re2c
checking for re2c version… 0.13.5 (ok)
checking for gawk… no
checking for nawk… nawk
checking if nawk is broken… no
checking for MySQL support for PDO… yes, shared
checking for the location of libz… no
checking for PDO includes… checking for PDO includes… /usr/local/include/php
checking for ld used by cc… /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld… yes
checking for /usr/bin/ld option to reload object files… -r
checking for BSD-compatible nm… /usr/bin/nm -B
checking whether ln -s works… yes
checking how to recognize dependent libraries… pass_all
checking for ANSI C header files… yes
checking for sys/types.h… yes
checking for sys/stat.h… yes
checking for stdlib.h… yes
checking for string.h… yes
checking for memory.h… yes
checking for strings.h… yes
checking for inttypes.h… yes
checking for stdint.h… yes
checking for unistd.h… yes
checking dlfcn.h usability… yes
checking dlfcn.h presence… yes
checking for dlfcn.h… yes
checking the maximum length of command line arguments… 1572864
checking command to parse /usr/bin/nm -B output from cc object… ok
checking for objdir… .libs
checking for ar… ar
checking for ranlib… ranlib
checking for strip… strip
checking if cc supports -fno-rtti -fno-exceptions… no
checking for cc option to produce PIC… -fPIC
checking if cc PIC flag -fPIC works… yes
checking if cc static flag -static works… no
checking if cc supports -c -o file.o… yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libra
checking whether -lc should be explicitly linked in… no
checking dynamic linker characteristics… GNU/Linux ld.so
checking how to hardcode library paths into programs… immediate
checking whether stripping libraries is possible… yes
checking if libtool supports shared libraries… yes
checking whether to build shared libraries… yes
checking whether to build static libraries… no

creating libtool
appending configuration tag “CXX” to libtool
configure: creating ./config.status
config.status: creating config.h
/bin/bash /usr/src/php/ext/pdo_mysql/libtool –mode=compile cc -I/usr/local/inclhp/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/rc/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/ur/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/estrong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2l/pdo_mysql.c -o pdo_mysql.lo
mkdir .libs
cc -I/usr/local/include/php/ext -I -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_l/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/r/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVEong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/pdo_mysql.c -fPIC -DPIC -o .l
/bin/bash /usr/src/php/ext/pdo_mysql/libtool –mode=compile cc -I/usr/local/inclhp/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/rc/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/ur/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/estrong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2l/mysql_driver.c -o mysql_driver.lo
cc -I/usr/local/include/php/ext -I -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_l/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/r/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVEong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_driver.c -fPIC -DPIC -o
/bin/bash /usr/src/php/ext/pdo_mysql/libtool –mode=compile cc -I/usr/local/inclhp/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/rc/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/ur/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/estrong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2l/mysql_statement.c -o mysql_statement.lo
cc -I/usr/local/include/php/ext -I -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_l/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/r/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVEong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_statement.c -fPIC -DPIC
/bin/bash /usr/src/php/ext/pdo_mysql/libtool –mode=link cc -DPHP_ATOM_INC -I/us -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/inchp/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/localnclude/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_ic -fpie -O2 -Wl,-O1 -Wl,–hash-style=both -pie -o pdo_mysql.la -export-dynamicdule -rpath /usr/src/php/ext/pdo_mysql/modules pdo_mysql.lo mysql_driver.lo mys
cc -shared .libs/pdo_mysql.o .libs/mysql_driver.o .libs/mysql_statement.o -Wl-soname -Wl,pdo_mysql.so -o .libs/pdo_mysql.so
creating pdo_mysql.la
(cd .libs && rm -f pdo_mysql.la && ln -s ../pdo_mysql.la pdo_mysql.la)
/bin/bash /usr/src/php/ext/pdo_mysql/libtool –mode=install cp ./pdo_mysql.la /us
cp ./.libs/pdo_mysql.so /usr/src/php/ext/pdo_mysql/modules/pdo_mysql.so
cp ./.libs/pdo_mysql.lai /usr/src/php/ext/pdo_mysql/modules/pdo_mysql.la
PATH=”$PATH:/sbin” ldconfig -n /usr/src/php/ext/pdo_mysql/modules
———————————————————————-
Libraries have been installed in:
/usr/src/php/ext/pdo_mysql/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR’
flag during linking and do at least one of the following:
– add LIBDIR to the `LD_LIBRARY_PATH’ environment variable
during execution
– add LIBDIR to the `LD_RUN_PATH’ environment variable
during linking
– use the `-Wl,–rpath -Wl,LIBDIR’ linker flag
– have your system administrator add LIBDIR to `/etc/ld.so.conf’

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
———————————————————————-

Build complete.
Don’t forget to run ‘make test’.

Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la modules/* libs/*
+ cd mysqli
+ phpize
Configuring for:
PHP Api Version: 20131106
Zend Module Api No: 20131226
Zend Extension Api No: 220131226
+ ./configure –build=x86_64-linux-gnu
checking for grep that handles long lines and -e… /bin/grep
checking for egrep… /bin/grep -E
checking for a sed that does not truncate output… /bin/sed
checking for cc… cc
checking whether the C compiler works… yes
checking for C compiler default output file name… a.out
checking for suffix of executables…
checking whether we are cross compiling… no
checking for suffix of object files… o
checking whether we are using the GNU C compiler… yes
checking whether cc accepts -g… yes
checking for cc option to accept ISO C89… none needed
checking how to run the C preprocessor… cc -E
checking for icc… no
checking for suncc… no
checking whether cc understands -c and -o together… yes
checking for system library directory… lib
checking if compiler supports -R… no
checking if compiler supports -Wl,-rpath,… yes
checking build system type… x86_64-pc-linux-gnu
checking host system type… x86_64-pc-linux-gnu
checking target system type… x86_64-pc-linux-gnu
checking for PHP prefix… /usr/local
checking for PHP includes… -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclu
checking for PHP extension directory… /usr/local/lib/php/extensions/no-debug-n
checking for PHP installed headers prefix… /usr/local/include/php
checking if debug is enabled… no
checking if zts is enabled… no
checking for re2c… re2c
checking for re2c version… 0.13.5 (ok)
checking for gawk… no
checking for nawk… nawk
checking if nawk is broken… no
checking for MySQLi support… yes, shared
checking whether to enable embedded MySQLi support… no
checking for ld used by cc… /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld… yes
checking for /usr/bin/ld option to reload object files… -r
checking for BSD-compatible nm… /usr/bin/nm -B
checking whether ln -s works… yes
checking how to recognize dependent libraries… pass_all
checking for ANSI C header files… yes
checking for sys/types.h… yes
checking for sys/stat.h… yes
checking for stdlib.h… yes
checking for string.h… yes
checking for memory.h… yes
checking for strings.h… yes
checking for inttypes.h… yes
checking for stdint.h… yes
checking for unistd.h… yes
checking dlfcn.h usability… yes
checking dlfcn.h presence… yes
checking for dlfcn.h… yes
checking the maximum length of command line arguments… 1572864
checking command to parse /usr/bin/nm -B output from cc object… ok
checking for objdir… .libs
checking for ar… ar
checking for ranlib… ranlib
checking for strip… strip
checking if cc supports -fno-rtti -fno-exceptions… no
checking for cc option to produce PIC… -fPIC
checking if cc PIC flag -fPIC works… yes
checking if cc static flag -static works… no
checking if cc supports -c -o file.o… yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libra
checking whether -lc should be explicitly linked in… no
checking dynamic linker characteristics… GNU/Linux ld.so
checking how to hardcode library paths into programs… immediate
checking whether stripping libraries is possible… yes
checking if libtool supports shared libraries… yes
checking whether to build shared libraries… yes
checking whether to build static libraries… no

creating libtool
appending configuration tag “CXX” to libtool
configure: creating ./config.status
config.status: creating config.h
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli.c -o mysq
mkdir .libs
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli.c -fPIC -DPIC -o .libs/mysqli.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_api.c -o
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_api.c -fPIC -DPIC -o .libs/mysqli_api.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_prop.c -o
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_prop.c -fPIC -DPIC -o .libs/mysqli_prop.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_nonapi.c -fPIC -DPIC -o .libs/mysqli_nonapi.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_fe.c -o m
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_fe.c -fPIC -DPIC -o .libs/mysqli_fe.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_report.c
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_report.c -fPIC -DPIC -o .libs/mysqli_report.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_driver.c
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_driver.c -fPIC -DPIC -o .libs/mysqli_driver.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_warning.c
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_warning.c -fPIC -DPIC -o .libs/mysqli_warning.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_exception
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_exception.c -fPIC -DPIC -o .libs/mysqli_exception.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=compile cc -I. -I/usr/src/php/r/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/m-I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/includephp/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fk-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_result_ittor.lo
cc -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/incluin -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclutector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpli/mysqli_result_iterator.c -fPIC -DPIC -o .libs/mysqli_result_iterator.o
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=link cc -DPHP_ATOM_INC -I/usr/sr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/sr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/phpxt/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-p -Wl,-O1 -Wl,–hash-style=both -pie -o mysqli.la -export-dynamic -avoid-versionr/src/php/ext/mysqli/modules mysqli.lo mysqli_api.lo mysqli_prop.lo mysqli_nonat.lo mysqli_driver.lo mysqli_warning.lo mysqli_exception.lo mysqli_result_iterat
cc -shared .libs/mysqli.o .libs/mysqli_api.o .libs/mysqli_prop.o .libs/mysqli_n/mysqli_report.o .libs/mysqli_driver.o .libs/mysqli_warning.o .libs/mysqli_excepator.o -Wl,-O1 -Wl,–hash-style=both -Wl,-soname -Wl,mysqli.so -o .libs/mysqli
creating mysqli.la
(cd .libs && rm -f mysqli.la && ln -s ../mysqli.la mysqli.la)
/bin/bash /usr/src/php/ext/mysqli/libtool –mode=install cp ./mysqli.la /usr/src
cp ./.libs/mysqli.so /usr/src/php/ext/mysqli/modules/mysqli.so
cp ./.libs/mysqli.lai /usr/src/php/ext/mysqli/modules/mysqli.la
PATH=”$PATH:/sbin” ldconfig -n /usr/src/php/ext/mysqli/modules
———————————————————————-
Libraries have been installed in:
/usr/src/php/ext/mysqli/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR’
flag during linking and do at least one of the following:
– add LIBDIR to the `LD_LIBRARY_PATH’ environment variable
during execution
– add LIBDIR to the `LD_RUN_PATH’ environment variable
during linking
– use the `-Wl,–rpath -Wl,LIBDIR’ linker flag
– have your system administrator add LIBDIR to `/etc/ld.so.conf’

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
———————————————————————-

Build complete.
Don’t forget to run ‘make test’.

Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts
Installing header files: /usr/local/include/php/
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la modules/* libs/*
+ cd mbstring
+ phpize
Configuring for:
PHP Api Version: 20131106
Zend Module Api No: 20131226
Zend Extension Api No: 220131226
+ ./configure –build=x86_64-linux-gnu
checking for grep that handles long lines and -e… /bin/grep
checking for egrep… /bin/grep -E
checking for a sed that does not truncate output… /bin/sed
checking for cc… cc
checking whether the C compiler works… yes
checking for C compiler default output file name… a.out
checking for suffix of executables…
checking whether we are cross compiling… no
checking for suffix of object files… o
checking whether we are using the GNU C compiler… yes
checking whether cc accepts -g… yes
checking for cc option to accept ISO C89… none needed
checking how to run the C preprocessor… cc -E
checking for icc… no
checking for suncc… no
checking whether cc understands -c and -o together… yes
checking for system library directory… lib
checking if compiler supports -R… no
checking if compiler supports -Wl,-rpath,… yes
checking build system type… x86_64-pc-linux-gnu
checking host system type… x86_64-pc-linux-gnu
checking target system type… x86_64-pc-linux-gnu
checking for PHP prefix… /usr/local
checking for PHP includes… -I/usr/local/include/php -I/usr/local/include/php/mRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/inclu
checking for PHP extension directory… /usr/local/lib/php/extensions/no-debug-n
checking for PHP installed headers prefix… /usr/local/include/php
checking if debug is enabled… no
checking if zts is enabled… no
checking for re2c… re2c
checking for re2c version… 0.13.5 (ok)
checking for gawk… no
checking for nawk… nawk
checking if nawk is broken… no
checking whether to enable multibyte string support… yes, shared
checking whether to enable multibyte regex support… yes
checking whether to check multibyte regex backtrack… yes
checking for external libmbfl… no
checking for external oniguruma… no
checking for ANSI C header files… yes
checking for sys/types.h… yes
checking for sys/stat.h… yes
checking for stdlib.h… yes
checking for string.h… yes
checking for memory.h… yes
checking for strings.h… yes
checking for inttypes.h… yes
checking for stdint.h… yes
checking for unistd.h… yes
checking for size_t… yes
checking for variable length prototypes and stdarg.h… yes
checking for stdlib.h… (cached) yes
checking for string.h… (cached) yes
checking for strings.h… (cached) yes
checking for unistd.h… (cached) yes
checking sys/time.h usability… yes
checking sys/time.h presence… yes
checking for sys/time.h… yes
checking sys/times.h usability… yes
checking sys/times.h presence… yes
checking for sys/times.h… yes
checking stdarg.h usability… yes
checking stdarg.h presence… yes
checking for stdarg.h… yes
checking size of int… 4
checking size of short… 2
checking size of long… 8
checking for an ANSI C-conforming const… yes
checking whether time.h and sys/time.h may both be included… yes
checking for working alloca.h… yes
checking for alloca… yes
checking for working memcmp… yes
checking for stdarg.h… (cached) yes
checking for ld used by cc… /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld… yes
checking for /usr/bin/ld option to reload object files… -r
checking for BSD-compatible nm… /usr/bin/nm -B
checking whether ln -s works… yes
checking how to recognize dependent libraries… pass_all
checking dlfcn.h usability… yes
checking dlfcn.h presence… yes
checking for dlfcn.h… yes
checking the maximum length of command line arguments… 1572864
checking command to parse /usr/bin/nm -B output from cc object… ok
checking for objdir… .libs
checking for ar… ar
checking for ranlib… ranlib
checking for strip… strip
checking if cc supports -fno-rtti -fno-exceptions… no
checking for cc option to produce PIC… -fPIC
checking if cc PIC flag -fPIC works… yes
checking if cc static flag -static works… no
checking if cc supports -c -o file.o… yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libra
checking whether -lc should be explicitly linked in… no
checking dynamic linker characteristics… GNU/Linux ld.so
checking how to hardcode library paths into programs… immediate
checking whether stripping libraries is possible… yes
checking if libtool supports shared libraries… yes
checking whether to build shared libraries… yes
checking whether to build static libraries… no

creating libtool
appending configuration tag “CXX” to libtool
configure: creating ./config.status
config.status: creating config.h
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regcomp.c -o oniguruma/r
mkdir oniguruma/.libs
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php.c -fPIC -DPIC -o oniguruma/.libs/regcomp.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regerror.c -o oniguruma/
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpr.c -fPIC -DPIC -o oniguruma/.libs/regerror.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regexec.c -o oniguruma/r
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php.c -fPIC -DPIC -o oniguruma/.libs/regexec.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/reggnu.c -o oniguruma/re
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpc -fPIC -DPIC -o oniguruma/.libs/reggnu.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regparse.c -o oniguruma/
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpe.c -fPIC -DPIC -o oniguruma/.libs/regparse.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regenc.c -o oniguruma/re
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpc -fPIC -DPIC -o oniguruma/.libs/regenc.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regext.c -o oniguruma/re
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpc -fPIC -DPIC -o oniguruma/.libs/regext.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regsyntax.c -o oniguruma
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpax.c -fPIC -DPIC -o oniguruma/.libs/regsyntax.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regtrav.c -o oniguruma/r
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php.c -fPIC -DPIC -o oniguruma/.libs/regtrav.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/regversion.c -o onigurum
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpion.c -fPIC -DPIC -o oniguruma/.libs/regversion.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/st.c -o oniguruma/st.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpfPIC -DPIC -o oniguruma/.libs/st.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/unicode.c -o oniguru
mkdir oniguruma/enc/.libs
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpcode.c -fPIC -DPIC -o oniguruma/enc/.libs/unicode.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/ascii.c -o oniguruma
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpii.c -fPIC -DPIC -o oniguruma/enc/.libs/ascii.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/utf8.c -o oniguruma/
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8.c -fPIC -DPIC -o oniguruma/enc/.libs/utf8.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/euc_jp.c -o onigurum
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_jp.c -fPIC -DPIC -o oniguruma/enc/.libs/euc_jp.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/euc_tw.c -o onigurum
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_tw.c -fPIC -DPIC -o oniguruma/enc/.libs/euc_tw.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/euc_kr.c -o onigurum
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_kr.c -fPIC -DPIC -o oniguruma/enc/.libs/euc_kr.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/sjis.c -o oniguruma/
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phps.c -fPIC -DPIC -o oniguruma/enc/.libs/sjis.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_1.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_1.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_1.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_2.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_2.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_2.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_3.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_3.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_3.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_4.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_4.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_4.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_5.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_5.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_5.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_6.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_6.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_6.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_7.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_7.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_7.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_8.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_8.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_8.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_9.c -o onigu
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_9.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_9.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_10.c -o onig
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_10.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_10.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_11.c -o onig
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_11.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_11.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_13.c -o onig
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_13.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_13.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_14.c -o onig
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_14.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_14.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_15.c -o onig
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_15.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_15.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/iso8859_16.c -o onig
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8859_16.c -fPIC -DPIC -o oniguruma/enc/.libs/iso8859_16.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/koi8.c -o oniguruma/
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8.c -fPIC -DPIC -o oniguruma/enc/.libs/koi8.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/koi8_r.c -o onigurum
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php8_r.c -fPIC -DPIC -o oniguruma/enc/.libs/koi8_r.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/big5.c -o oniguruma/
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php5.c -fPIC -DPIC -o oniguruma/enc/.libs/big5.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/utf16_be.c -o onigur
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php16_be.c -fPIC -DPIC -o oniguruma/enc/.libs/utf16_be.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/utf16_le.c -o onigur
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php16_le.c -fPIC -DPIC -o oniguruma/enc/.libs/utf16_le.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/utf32_be.c -o onigur
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php32_be.c -fPIC -DPIC -o oniguruma/enc/.libs/utf32_be.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/oniguruma/enc/utf32_le.c -o onigur
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php32_le.c -fPIC -DPIC -o oniguruma/enc/.libs/utf32_le.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/html_entities.c -olo
mkdir libmbfl/filters/.libs
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phptml_entities.c -fPIC -DPIC -o libmbfl/filters/.libs/html_entities.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_7bit.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_7bit.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_7bit.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_ascii.c -i.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_ascii.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_ascii.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_base64.c e64.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_base64.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_base64.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_big5.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_big5.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_big5.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_byte2.c -2.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_byte2.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_byte2.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_byte4.c -4.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_byte4.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_byte4.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp1251.c 251.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp1251.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp1251.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp1252.c 252.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp1252.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp1252.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp1254.c 254.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp1254.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp1254.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp5022x.c5022x.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp5022x.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp5022x.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp51932.c51932.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp51932.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp51932.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp850.c -0.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp850.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp850.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp866.c -6.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp866.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp866.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp932.c -2.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp932.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp932.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_cp936.c -6.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_cp936.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_cp936.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_gb18030.c18030.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_gb18030.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_gb18030.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_euc_cn.c _cn.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_euc_cn.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_euc_cn.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_euc_jp.c _jp.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_euc_jp.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_euc_jp.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_20r_euc_jp_2004.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_euc_jp_2004.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_euc_jp_2004
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_wi_euc_jp_win.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_euc_jp_win.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_euc_jp_win.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_euc_kr.c _kr.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_euc_kr.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_euc_kr.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_euc_tw.c _tw.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_euc_tw.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_euc_tw.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_htmlent.cmlent.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_htmlent.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_htmlent.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_hz.c -o l
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_hz.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_hz.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso2022_jter_iso2022_jp_ms.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso2022_jp_ms.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso2022_j
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso2022jplter_iso2022jp_2004.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso2022jp_2004.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso2022j
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso2022jpfilter_iso2022jp_mobile.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso2022jp_mobile.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso202
/usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c:51:2: warnatible pointer type
mbfl_encoding_2022jp_kddi_aliases,
^
/usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c:51:2: warnmbfl_encoding_2022jp_kddi.aliases’)
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso2022_k_iso2022_kr.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso2022_kr.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso2022_kr.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1iso8859_1.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_1.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_1.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1_iso8859_10.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_10.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_10.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1_iso8859_13.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_13.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_13.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1_iso8859_14.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_14.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_14.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1_iso8859_15.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_15.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_15.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1_iso8859_16.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_16.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_16.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_2iso8859_2.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_2.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_2.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_3iso8859_3.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_3.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_3.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_4iso8859_4.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_4.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_4.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_5iso8859_5.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_5.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_5.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_6iso8859_6.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_6.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_6.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_7iso8859_7.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_7.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_7.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_8iso8859_8.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_8.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_8.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_iso8859_9iso8859_9.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_iso8859_9.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_iso8859_9.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_jis.c -o
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_jis.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_jis.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_koi8r.c -r.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_koi8r.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_koi8r.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_armscii8.rmscii8.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_armscii8.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_armscii8.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_qprint.c int.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_qprint.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_qprint.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_sjis.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_sjis.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_sjis.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_sjis_opensjis_open.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_sjis_open.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_sjis_open.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_sjis_mobir_sjis_mobile.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_sjis_mobile.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_sjis_mobile
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_sjis_mac.jis_mac.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_sjis_mac.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_sjis_mac.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_sjis_2004sjis_2004.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_sjis_2004.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_sjis_2004.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_tl_jisx02s/mbfilter_tl_jisx0201_jisx0208.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_tl_jisx0201_jisx0208.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_tl
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_ucs2.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_ucs2.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_ucs2.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_ucs4.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_ucs4.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_ucs4.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_uhc.c -o
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_uhc.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_uhc.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_utf16.c -6.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_utf16.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_utf16.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_utf32.c -2.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_utf32.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_utf32.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_utf7.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_utf7.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_utf7.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_utf7imap.tf7imap.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_utf7imap.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_utf7imap.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_utf8.c -olo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_utf8.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_utf8.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_utf8_mobir_utf8_mobile.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_utf8_mobile.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_utf8_mobile
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_uuencode.uencode.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_uuencode.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_uuencode.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/filters/mbfilter_koi8u.c -u.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpbfilter_koi8u.c -fPIC -DPIC -o libmbfl/filters/.libs/mbfilter_koi8u.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfilter.c -o libmbfl
mkdir libmbfl/mbfl/.libs
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phplter.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfilter.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfilter_8bit.c -o li
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phplter_8bit.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfilter_8bit.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfilter_pass.c -o li
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phplter_pass.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfilter_pass.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfilter_wchar.c -o l
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phplter_wchar.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfilter_wchar.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_convert.c -o lib
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_convert.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_convert.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_encoding.c -o li
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_encoding.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_encoding.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_filter_output.c put.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_filter_output.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_filter_output.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_ident.c -o libmb
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_ident.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_ident.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_language.c -o li
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_language.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_language.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c ice.lo
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_memory_device.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_memory_device.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_string.c -o libm
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_string.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_string.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/mbfl/mbfl_allocators.c -o
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php_allocators.c -fPIC -DPIC -o libmbfl/mbfl/.libs/mbfl_allocators.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_de.c -o libmbfl/nl
mkdir libmbfl/nls/.libs
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpe.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_de.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_en.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpn.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_en.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_ja.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpa.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_ja.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_kr.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpr.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_kr.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_neutral.c -o libmb
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpeutral.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_neutral.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_ru.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpu.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_ru.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_uni.c -o libmbfl/n
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpni.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_uni.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_zh.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phph.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_zh.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_hy.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpy.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_hy.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_tr.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpr.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_tr.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -DNOT_RUBY -DONIGar=OnigUChar -DHAVE_CONFIG_H -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/u -I/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/inclu/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/ilude/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mext/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIfpic -fpie -O2 -c /usr/src/php/ext/mbstring/libmbfl/nls/nls_ua.c -o libmbfl/nl
cc -DNOT_RUBY -DONIG_ESCAPE_UCHAR_COLLISION=1 -DUChar=OnigUChar -DHAVE_CONFIG_Hg -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstringng -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/pp/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr -I/usr/src/php/ext/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/phpa.c -fPIC -DPIC -o libmbfl/nls/.libs/nls_ua.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -I. -I/usr/src/phI/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstring/main -I/usr/src/pclude/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/locl/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/src/php/ext/mbstrt/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fstack-protector-sNFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mbstring/
mkdir .libs
cc -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/iing/main -I/usr/src/php/ext/mbstring -I/usr/local/include/php -I/usr/local/inclue/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/locusr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mbstring/libmbfl -I/usr/sr -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strophp/ext/mbstring/mbstring.c -fPIC -DPIC -o .libs/mbstring.o
/usr/src/php/ext/mbstring/mbstring.c: In function ‘php_mb_parse_encoding_list’:
/usr/src/php/ext/mbstring/mbstring.c:724:14: warning: assignment discards ‘const type
while ((p2 = php_memnstr(p1, “,”, 1, endp)) != NULL) {
^
/usr/src/php/ext/mbstring/mbstring.c:737:12: warning: assignment discards ‘const type
p2 = p = php_memnstr(p1, “,”, 1, endp);
^
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -I. -I/usr/src/phI/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstring/main -I/usr/src/pclude/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/locl/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/src/php/ext/mbstrt/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fstack-protector-sNFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mbstring/
cc -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/iing/main -I/usr/src/php/ext/mbstring -I/usr/local/include/php -I/usr/local/inclue/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/locusr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mbstring/libmbfl -I/usr/sr -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strophp/ext/mbstring/php_unicode.c -fPIC -DPIC -o .libs/php_unicode.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -I. -I/usr/src/phI/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstring/main -I/usr/src/pclude/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/locl/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/src/php/ext/mbstrt/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fstack-protector-sNFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mbstring/
cc -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/iing/main -I/usr/src/php/ext/mbstring -I/usr/local/include/php -I/usr/local/inclue/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/locusr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mbstring/libmbfl -I/usr/sr -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strophp/ext/mbstring/mb_gpc.c -fPIC -DPIC -o .libs/mb_gpc.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=compile cc -I. -I/usr/src/phI/usr/src/php/ext/mbstring/include -I/usr/src/php/ext/mbstring/main -I/usr/src/pclude/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/locl/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/src/php/ext/mbstrt/mbstring/libmbfl -I/usr/src/php/ext/mbstring/libmbfl/mbfl -fstack-protector-sNFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mbstring/
cc -I. -I/usr/src/php/ext/mbstring -DPHP_ATOM_INC -I/usr/src/php/ext/mbstring/iing/main -I/usr/src/php/ext/mbstring -I/usr/local/include/php -I/usr/local/inclue/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/locusr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mbstring/libmbfl -I/usr/sr -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strophp/ext/mbstring/php_mbregex.c -fPIC -DPIC -o .libs/php_mbregex.o
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=link cc -DPHP_ATOM_INC -I/usrI/usr/src/php/ext/mbstring/main -I/usr/src/php/ext/mbstring -I/usr/local/includeain -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/incde/php/ext/date/lib -I/usr/src/php/ext/mbstring/oniguruma -I/usr/src/php/ext/mbst/mbstring/libmbfl/mbfl -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_ic -fpie -O2 -Wl,-O1 -Wl,–hash-style=both -pie -o mbstring.la -export-dynamic ule -rpath /usr/src/php/ext/mbstring/modules oniguruma/regcomp.lo oniguruma/regniguruma/reggnu.lo oniguruma/regparse.lo oniguruma/regenc.lo oniguruma/regext.loma/regtrav.lo oniguruma/regversion.lo oniguruma/st.lo oniguruma/enc/unicode.lo o/enc/utf8.lo oniguruma/enc/euc_jp.lo oniguruma/enc/euc_tw.lo oniguruma/enc/euc_kuruma/enc/iso8859_1.lo oniguruma/enc/iso8859_2.lo oniguruma/enc/iso8859_3.lo onima/enc/iso8859_5.lo oniguruma/enc/iso8859_6.lo oniguruma/enc/iso8859_7.lo onigurenc/iso8859_9.lo oniguruma/enc/iso8859_10.lo oniguruma/enc/iso8859_11.lo oniguruenc/iso8859_14.lo oniguruma/enc/iso8859_15.lo oniguruma/enc/iso8859_16.lo oniguroi8_r.lo oniguruma/enc/big5.lo oniguruma/enc/utf16_be.lo oniguruma/enc/utf16_le.iguruma/enc/utf32_le.lo libmbfl/filters/html_entities.lo libmbfl/filters/mbfilteter_ascii.lo libmbfl/filters/mbfilter_base64.lo libmbfl/filters/mbfilter_big5.lo.lo libmbfl/filters/mbfilter_byte4.lo libmbfl/filters/mbfilter_cp1251.lo libmbflmbfl/filters/mbfilter_cp1254.lo libmbfl/filters/mbfilter_cp5022x.lo libmbfl/filt/filters/mbfilter_cp850.lo libmbfl/filters/mbfilter_cp866.lo libmbfl/filters/mbfmbfilter_cp936.lo libmbfl/filters/mbfilter_gb18030.lo libmbfl/filters/mbfilter_eer_euc_jp.lo libmbfl/filters/mbfilter_euc_jp_2004.lo libmbfl/filters/mbfilter_euilter_euc_kr.lo libmbfl/filters/mbfilter_euc_tw.lo libmbfl/filters/mbfilter_html_hz.lo libmbfl/filters/mbfilter_iso2022_jp_ms.lo libmbfl/filters/mbfilter_iso202ilter_iso2022jp_mobile.lo libmbfl/filters/mbfilter_iso2022_kr.lo libmbfl/filtersfilters/mbfilter_iso8859_10.lo libmbfl/filters/mbfilter_iso8859_13.lo libmbfl/fibmbfl/filters/mbfilter_iso8859_15.lo libmbfl/filters/mbfilter_iso8859_16.lo libmlo libmbfl/filters/mbfilter_iso8859_3.lo libmbfl/filters/mbfilter_iso8859_4.lo l_5.lo libmbfl/filters/mbfilter_iso8859_6.lo libmbfl/filters/mbfilter_iso8859_7.l859_8.lo libmbfl/filters/mbfilter_iso8859_9.lo libmbfl/filters/mbfilter_jis.lo lo libmbfl/filters/mbfilter_armscii8.lo libmbfl/filters/mbfilter_qprint.lo libmbfbfl/filters/mbfilter_sjis_open.lo libmbfl/filters/mbfilter_sjis_mobile.lo libmbflibmbfl/filters/mbfilter_sjis_2004.lo libmbfl/filters/mbfilter_tl_jisx0201_jisx0_ucs2.lo libmbfl/filters/mbfilter_ucs4.lo libmbfl/filters/mbfilter_uhc.lo libmbfmbfl/filters/mbfilter_utf32.lo libmbfl/filters/mbfilter_utf7.lo libmbfl/filters/lters/mbfilter_utf8.lo libmbfl/filters/mbfilter_utf8_mobile.lo libmbfl/filters/mters/mbfilter_koi8u.lo libmbfl/mbfl/mbfilter.lo libmbfl/mbfl/mbfilter_8bit.lo limbfl/mbfl/mbfilter_wchar.lo libmbfl/mbfl/mbfl_convert.lo libmbfl/mbfl/mbfl_encod_output.lo libmbfl/mbfl/mbfl_ident.lo libmbfl/mbfl/mbfl_language.lo libmbfl/mbflmbfl/mbfl_string.lo libmbfl/mbfl/mbfl_allocators.lo libmbfl/nls/nls_de.lo libmbf_ja.lo libmbfl/nls/nls_kr.lo libmbfl/nls/nls_neutral.lo libmbfl/nls/nls_ru.lo lis/nls_zh.lo libmbfl/nls/nls_hy.lo libmbfl/nls/nls_tr.lo libmbfl/nls/nls_ua.lo mb.lo php_mbregex.lo
cc -shared oniguruma/.libs/regcomp.o oniguruma/.libs/regerror.o oniguruma/.libsnu.o oniguruma/.libs/regparse.o oniguruma/.libs/regenc.o oniguruma/.libs/regext.niguruma/.libs/regtrav.o oniguruma/.libs/regversion.o oniguruma/.libs/st.o oniguuma/enc/.libs/ascii.o oniguruma/enc/.libs/utf8.o oniguruma/enc/.libs/euc_jp.o onuruma/enc/.libs/euc_kr.o oniguruma/enc/.libs/sjis.o oniguruma/enc/.libs/iso8859__2.o oniguruma/enc/.libs/iso8859_3.o oniguruma/enc/.libs/iso8859_4.o oniguruma/eenc/.libs/iso8859_6.o oniguruma/enc/.libs/iso8859_7.o oniguruma/enc/.libs/iso88559_9.o oniguruma/enc/.libs/iso8859_10.o oniguruma/enc/.libs/iso8859_11.o onigururuma/enc/.libs/iso8859_14.o oniguruma/enc/.libs/iso8859_15.o oniguruma/enc/.libsbs/koi8.o oniguruma/enc/.libs/koi8_r.o oniguruma/enc/.libs/big5.o oniguruma/enc/.libs/utf16_le.o oniguruma/enc/.libs/utf32_be.o oniguruma/enc/.libs/utf32_le.o lies.o libmbfl/filters/.libs/mbfilter_7bit.o libmbfl/filters/.libs/mbfilter_asciier_base64.o libmbfl/filters/.libs/mbfilter_big5.o libmbfl/filters/.libs/mbfiltermbfilter_byte4.o libmbfl/filters/.libs/mbfilter_cp1251.o libmbfl/filters/.libs/ms/.libs/mbfilter_cp1254.o libmbfl/filters/.libs/mbfilter_cp5022x.o libmbfl/filtembfl/filters/.libs/mbfilter_cp850.o libmbfl/filters/.libs/mbfilter_cp866.o libmb.o libmbfl/filters/.libs/mbfilter_cp936.o libmbfl/filters/.libs/mbfilter_gb18030er_euc_cn.o libmbfl/filters/.libs/mbfilter_euc_jp.o libmbfl/filters/.libs/mbfilts/.libs/mbfilter_euc_jp_win.o libmbfl/filters/.libs/mbfilter_euc_kr.o libmbfl/fiibmbfl/filters/.libs/mbfilter_htmlent.o libmbfl/filters/.libs/mbfilter_hz.o libm022_jp_ms.o libmbfl/filters/.libs/mbfilter_iso2022jp_2004.o libmbfl/filters/.libibmbfl/filters/.libs/mbfilter_iso2022_kr.o libmbfl/filters/.libs/mbfilter_iso885ilter_iso8859_10.o libmbfl/filters/.libs/mbfilter_iso8859_13.o libmbfl/filters/.bfl/filters/.libs/mbfilter_iso8859_15.o libmbfl/filters/.libs/mbfilter_iso8859_1ter_iso8859_2.o libmbfl/filters/.libs/mbfilter_iso8859_3.o libmbfl/filters/.libsilters/.libs/mbfilter_iso8859_5.o libmbfl/filters/.libs/mbfilter_iso8859_6.o lib8859_7.o libmbfl/filters/.libs/mbfilter_iso8859_8.o libmbfl/filters/.libs/mbfilt.libs/mbfilter_jis.o libmbfl/filters/.libs/mbfilter_koi8r.o libmbfl/filters/.libilters/.libs/mbfilter_qprint.o libmbfl/filters/.libs/mbfilter_sjis.o libmbfl/fil libmbfl/filters/.libs/mbfilter_sjis_mobile.o libmbfl/filters/.libs/mbfilter_sjibfilter_sjis_2004.o libmbfl/filters/.libs/mbfilter_tl_jisx0201_jisx0208.o libmbf libmbfl/filters/.libs/mbfilter_ucs4.o libmbfl/filters/.libs/mbfilter_uhc.o libm6.o libmbfl/filters/.libs/mbfilter_utf32.o libmbfl/filters/.libs/mbfilter_utf7.o_utf7imap.o libmbfl/filters/.libs/mbfilter_utf8.o libmbfl/filters/.libs/mbfilter.libs/mbfilter_uuencode.o libmbfl/filters/.libs/mbfilter_koi8u.o libmbfl/mbfl/.lbs/mbfilter_8bit.o libmbfl/mbfl/.libs/mbfilter_pass.o libmbfl/mbfl/.libs/mbfiltefl_convert.o libmbfl/mbfl/.libs/mbfl_encoding.o libmbfl/mbfl/.libs/mbfl_filter_o_ident.o libmbfl/mbfl/.libs/mbfl_language.o libmbfl/mbfl/.libs/mbfl_memory_devicing.o libmbfl/mbfl/.libs/mbfl_allocators.o libmbfl/nls/.libs/nls_de.o libmbfl/nlibs/nls_ja.o libmbfl/nls/.libs/nls_kr.o libmbfl/nls/.libs/nls_neutral.o libmbfl/.libs/nls_uni.o libmbfl/nls/.libs/nls_zh.o libmbfl/nls/.libs/nls_hy.o libmbfl/nlibs/nls_ua.o .libs/mbstring.o .libs/php_unicode.o .libs/mb_gpc.o .libs/php_mbreg=both -Wl,-soname -Wl,mbstring.so -o .libs/mbstring.so
creating mbstring.la
(cd .libs && rm -f mbstring.la && ln -s ../mbstring.la mbstring.la)
/bin/bash /usr/src/php/ext/mbstring/libtool –mode=install cp ./mbstring.la /usr
cp ./.libs/mbstring.so /usr/src/php/ext/mbstring/modules/mbstring.so
cp ./.libs/mbstring.lai /usr/src/php/ext/mbstring/modules/mbstring.la
PATH=”$PATH:/sbin” ldconfig -n /usr/src/php/ext/mbstring/modules
———————————————————————-
Libraries have been installed in:
/usr/src/php/ext/mbstring/modules

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR’
flag during linking and do at least one of the following:
– add LIBDIR to the `LD_LIBRARY_PATH’ environment variable
during execution
– add LIBDIR to the `LD_RUN_PATH’ environment variable
during linking
– use the `-Wl,–rpath -Wl,LIBDIR’ linker flag
– have your system administrator add LIBDIR to `/etc/ld.so.conf’

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
———————————————————————-

Build complete.
Don’t forget to run ‘make test’.

Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts
Installing header files: /usr/local/include/php/

warning: mbstring (mbstring.so) is already loaded!

find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la modules/* libs/*
—> 25565093dc47

Removing intermediate container b0690c346456
Successfully built 25565093dc47
[/toggle]
[root@dev381 ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
php custom 25565093dc47 34 minutes ago 388.6 MB
docker.io/php 5.6-apache 2d4c03fc6240 5 days ago 376.8 MB
docker.io/mysql 5.7 e799c7f9ae9c 4 weeks ago 407.3 MB
docker.io/centos centos6 30365b2e827c 8 weeks ago 194.7 MB

イメージができていることを確認

続きはまた次回

コメント

タイトルとURLをコピーしました