ラズベリーパイでphpを使ってみる – C言語で作られたPHPのライブラリを使う –

スポンサーリンク

コンテンツ

PECL(ペクル)というのがC言語で作られたPHPのライブラリです。同じPHPのライブラリにPEAR(ピアー)がありますが、PEARはPHP言語で書かれたライブラリです。

PECLはC言語で書かれている、高速+少ないメモリで動作します。

インストールの準備

コマンド一つでOKです

sudo apt-get install php5-dev curl libcurl3-dev

PECLでのパッケージのインストール

たとえばpecl_httpというPECLパッケージをインストールするには以下のコマンドを実行します

sudo pecl install pecl_http

ログ

sudo pecl install pecl_http
downloading pecl_http-2.0.4.tgz ...
Starting to download pecl_http-2.0.4.tgz (152,350 bytes)
.................................done: 152,350 bytes
downloading raphf-1.0.4.tgz ...
Starting to download raphf-1.0.4.tgz (7,232 bytes)
...done: 7,232 bytes
downloading propro-1.0.0.tgz ...
Starting to download propro-1.0.0.tgz (6,217 bytes)
...done: 6,217 bytes
4 source files, building
running: phpize
Configuring for:
PHP Api Version:         20100412
Zend Module Api No:      20100525
Zend Extension Api No:   220100525
whether to enable raphf support [yes] :
building in /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4
running: /tmp/pear/temp/raphf/configure --enable-raphf=yes
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... armv6l-unknown-linux-gnueabihf
checking host system type... armv6l-unknown-linux-gnueabihf
checking target system type... armv6l-unknown-linux-gnueabihf
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
checking for PHP extension directory... /usr/lib/php5/20100525+lfs
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking whether to enable raphf support... yes, shared
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert armv6l-unknown-linux-gnueabihf file names to armv6l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv6l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... (cached) nawk
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... 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 dlfcn.h... yes
checking for objdir... .libs
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC -DPIC
checking if cc PIC flag -fPIC -DPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.o... (cached) yes
checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
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
configure: creating ./config.status
config.status: creating config.h
config.status: executing libtool commands
running: make
/bin/bash /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/raphf -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/include -I/tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/main -I/tmp/pear/temp/raphf -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/raphf/php_raphf.c -o php_raphf.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/raphf -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/include -I/tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/main -I/tmp/pear/temp/raphf -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/raphf/php_raphf.c  -fPIC -DPIC -o .libs/php_raphf.o
/bin/bash /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/libtool --mode=link cc -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/include -I/tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/main -I/tmp/pear/temp/raphf -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -DHAVE_CONFIG_H  -g -O2   -o raphf.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/modules  php_raphf.lo
libtool: link: cc -shared  -fPIC -DPIC  .libs/php_raphf.o    -O2   -Wl,-soname -Wl,raphf.so -o .libs/raphf.so
libtool: link: ( cd ".libs" && rm -f "raphf.la" && ln -s "../raphf.la" "raphf.la" )
/bin/bash /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/libtool --mode=install cp ./raphf.la /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/modules
libtool: install: cp ./.libs/raphf.so /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/modules/raphf.so
libtool: install: cp ./.libs/raphf.lai /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/modules/raphf.la
libtool: finish: PATH="/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /tmp/pear/temp/pear-build-rootWklyGN/raphf-1.0.4/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'.

running: make INSTALL_ROOT="/tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4" install
Installing shared extensions:     /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/lib/php5/20100525+lfs/
Installing header files:          /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/include/php5/
running: find "/tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4" | xargs ls -dils
414807  4 drwxr-xr-x 3 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4
414828  4 drwxr-xr-x 4 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr
414832  4 drwxr-xr-x 3 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/include
414833  4 drwxr-xr-x 3 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/include/php5
414834  4 drwxr-xr-x 3 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/include/php5/ext
414835  4 drwxr-xr-x 2 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/include/php5/ext/raphf
414836  8 -rw-r--r-- 1 root root  5075  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/include/php5/ext/raphf/php_raphf.h
414829  4 drwxr-xr-x 3 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/lib
414830  4 drwxr-xr-x 3 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/lib/php5
414831  4 drwxr-xr-x 2 root root  4096  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/lib/php5/20100525+lfs
414827 76 -rwxr-xr-x 1 root root 76799  1月 30 06:55 /tmp/pear/temp/pear-build-rootWklyGN/install-raphf-1.0.4/usr/lib/php5/20100525+lfs/raphf.so

Build process completed successfully
Installing '/usr/include/php5/ext/raphf/php_raphf.h'
Installing '/usr/lib/php5/20100525+lfs/raphf.so'
install ok: channel://pecl.php.net/raphf-1.0.4
3 source files, building
running: phpize
Configuring for:
PHP Api Version:         20100412
Zend Module Api No:      20100525
Zend Extension Api No:   220100525
whether to enable property proxy support [yes] :
building in /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0
running: /tmp/pear/temp/propro/configure --enable-propro=yes
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... armv6l-unknown-linux-gnueabihf
checking host system type... armv6l-unknown-linux-gnueabihf
checking target system type... armv6l-unknown-linux-gnueabihf
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
checking for PHP extension directory... /usr/lib/php5/20100525+lfs
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking whether to enable property proxy support... yes, shared
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert armv6l-unknown-linux-gnueabihf file names to armv6l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv6l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... (cached) nawk
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... 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 dlfcn.h... yes
checking for objdir... .libs
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC -DPIC
checking if cc PIC flag -fPIC -DPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.o... (cached) yes
checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
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
configure: creating ./config.status
config.status: creating config.h
config.status: executing libtool commands
running: make
/bin/bash /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/libtool --mode=compile cc  -I. -I/tmp/pear/temp/propro -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/include -I/tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/main -I/tmp/pear/temp/propro -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/propro/php_propro.c -o php_propro.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/propro -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/include -I/tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/main -I/tmp/pear/temp/propro -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/propro/php_propro.c  -fPIC -DPIC -o .libs/php_propro.o
/bin/bash /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/libtool --mode=link cc -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/include -I/tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/main -I/tmp/pear/temp/propro -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -DHAVE_CONFIG_H  -g -O2   -o propro.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/modules  php_propro.lo
libtool: link: cc -shared  -fPIC -DPIC  .libs/php_propro.o    -O2   -Wl,-soname -Wl,propro.so -o .libs/propro.so
libtool: link: ( cd ".libs" && rm -f "propro.la" && ln -s "../propro.la" "propro.la" )
/bin/bash /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/libtool --mode=install cp ./propro.la /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/modules
libtool: install: cp ./.libs/propro.so /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/modules/propro.so
libtool: install: cp ./.libs/propro.lai /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/modules/propro.la
libtool: finish: PATH="/usr/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /tmp/pear/temp/pear-build-rootZeZQmx/propro-1.0.0/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'.

running: make INSTALL_ROOT="/tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0" install
Installing shared extensions:     /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/lib/php5/20100525+lfs/
Installing header files:          /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/include/php5/
running: find "/tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0" | xargs ls -dils
414884  4 drwxr-xr-x 3 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0
414905  4 drwxr-xr-x 4 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr
414909  4 drwxr-xr-x 3 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/include
414910  4 drwxr-xr-x 3 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/include/php5
414911  4 drwxr-xr-x 3 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/include/php5/ext
414912  4 drwxr-xr-x 2 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/include/php5/ext/propro
414913  4 -rw-r--r-- 1 root root  2128  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/include/php5/ext/propro/php_propro.h
414906  4 drwxr-xr-x 3 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/lib
414907  4 drwxr-xr-x 3 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/lib/php5
414908  4 drwxr-xr-x 2 root root  4096  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/lib/php5/20100525+lfs
414904 52 -rwxr-xr-x 1 root root 52856  1月 30 06:57 /tmp/pear/temp/pear-build-rootZeZQmx/install-propro-1.0.0/usr/lib/php5/20100525+lfs/propro.so

Build process completed successfully
Installing '/usr/include/php5/ext/propro/php_propro.h'
Installing '/usr/lib/php5/20100525+lfs/propro.so'
install ok: channel://pecl.php.net/propro-1.0.0
64 source files, building
running: phpize
Configuring for:
PHP Api Version:         20100412
Zend Module Api No:      20100525
Zend Extension Api No:   220100525
Enable extended HTTP support [yes] :
where to find zlib [/usr] :
where to find libcurl [/usr] :
where to find libevent [/usr] :
building in /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4
running: /tmp/pear/temp/pecl_http/configure --with-http --with-http-zlib-dir=/usr --with-http-libcurl-dir=/usr --with-http-libevent-dir=/usr
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... armv6l-unknown-linux-gnueabihf
checking host system type... armv6l-unknown-linux-gnueabihf
checking target system type... armv6l-unknown-linux-gnueabihf
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
checking for PHP extension directory... /usr/lib/php5/20100525+lfs
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking whether to enable extended HTTP support... yes, shared
checking for egrep... (cached) /bin/grep -E
checking for a sed that does not truncate output... (cached) /bin/sed
checking how to run the C preprocessor... cc -E
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 netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for unistd.h... (cached) yes
checking for gethostname... yes
checking for getdomainname... yes
checking for getservbyport... yes
checking for getservbyport_r... yes
checking for getservbyname... yes
checking for getservbyname_r... yes
checking for zlib.h... found in /usr
checking for zlib version >= 1.2.0.4... 1.2.7
checking for curl/curl.h... found in /usr
checking for curl-config... found: /usr/bin/curl-config
checking for curl version >= 7.18.2... 7.26.0
checking for SSL support in libcurl... yes
checking for openssl support in libcurl... yes
checking openssl/crypto.h usability... yes
checking openssl/crypto.h presence... yes
checking for openssl/crypto.h... yes
checking for gnutls support in libcurl... no
checking for bundled SSL CA info... /etc/ssl/certs/ca-certificates.crt
checking for event2/event.h... not found
configure: WARNING: continuing without libevent support
checking for ext/raphf support... no
checking for ext/propro support... no
checking whether to depend on extensions which have been built shared... yes
checking for ext/hash support... yes
checking for php_hash.h... /usr/include/php5/ext/hash
checking for ext/json support... yes
checking for ext/iconv support... yes
checking whether to add a dependency on ext/hash... yes
checking whether to add a dependency on ext/iconv... yes
checking whether to add a dependency on ext/json... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert armv6l-unknown-linux-gnueabihf file names to armv6l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv6l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... (cached) nawk
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC -DPIC
checking if cc PIC flag -fPIC -DPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.o... (cached) yes
checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
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
configure: creating ./config.status
config.status: creating config.h
config.status: executing libtool commands
running: make
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_buffer.c -o php_http_buffer.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_buffer.c  -fPIC -DPIC -o .libs/php_http_buffer.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http.c -o php_http.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http.c  -fPIC -DPIC -o .libs/php_http.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_client.c -o php_http_client.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_client.c  -fPIC -DPIC -o .libs/php_http_client.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_client_curl.c -o php_http_client_curl.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_client_curl.c  -fPIC -DPIC -o .libs/php_http_client_curl.o
In function 'php_http_curle_get_storage',
    inlined from 'php_http_curle_option_set_cookiestore' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:725:29:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_curle_get_info',
    inlined from 'php_http_client_curl_getopt.part.3' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1874:27,
    inlined from 'php_http_client_curl_getopt' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1856:15:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:481:19: warning: call to '_curl_easy_getinfo_err_curl_slist' declared with attribute warning: curl_easy_getinfo expects a pointer to struct curl_slist * for this info [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_curle_get_info' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:507:82,
    inlined from 'php_http_client_curl_getopt.part.3' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1874:27,
    inlined from 'php_http_client_curl_getopt' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1856:15:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_curle_dtor' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:136:28:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_curle_copy' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:128:29:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_curle_ctor' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:116:29:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_curlm_responsehandler' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:529:31,
    inlined from 'php_http_client_curl_once' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1773:32:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_client_curl_handler_init',
    inlined from 'php_http_client_curl_enqueue' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1650:10:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:1411:2: warning: call to '_curl_easy_setopt_err_write_callback' declared with attribute warning: curl_easy_setopt expects a curl_write_callback argument for this option [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_client_curl_handler_reset' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1334:5,
    inlined from 'php_http_client_curl_handler_init' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1419:36,
    inlined from 'php_http_client_curl_enqueue' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1650:10:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
In function 'php_http_curle_get_storage',
    inlined from 'php_http_client_curl_handler_prepare' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1429:28,
    inlined from 'php_http_client_curl_enqueue' at /tmp/pear/temp/pecl_http/php_http_client_curl.c:1655:53:
/tmp/pear/temp/pecl_http/php_http_client_curl.c:100:2: warning: call to '_curl_easy_getinfo_err_string' declared with attribute warning: curl_easy_getinfo expects a pointer to char * for this info [enabled by default]
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_client_request.c -o php_http_client_request.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_client_request.c  -fPIC -DPIC -o .libs/php_http_client_request.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_client_response.c -o php_http_client_response.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_client_response.c  -fPIC -DPIC -o .libs/php_http_client_response.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_cookie.c -o php_http_cookie.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_cookie.c  -fPIC -DPIC -o .libs/php_http_cookie.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_curl.c -o php_http_curl.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_curl.c  -fPIC -DPIC -o .libs/php_http_curl.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_encoding.c -o php_http_encoding.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_encoding.c  -fPIC -DPIC -o .libs/php_http_encoding.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_env.c -o php_http_env.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_env.c  -fPIC -DPIC -o .libs/php_http_env.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_env_request.c -o php_http_env_request.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_env_request.c  -fPIC -DPIC -o .libs/php_http_env_request.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_env_response.c -o php_http_env_response.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_env_response.c  -fPIC -DPIC -o .libs/php_http_env_response.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_etag.c -o php_http_etag.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_etag.c  -fPIC -DPIC -o .libs/php_http_etag.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_exception.c -o php_http_exception.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_exception.c  -fPIC -DPIC -o .libs/php_http_exception.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_filter.c -o php_http_filter.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_filter.c  -fPIC -DPIC -o .libs/php_http_filter.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_header_parser.c -o php_http_header_parser.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_header_parser.c  -fPIC -DPIC -o .libs/php_http_header_parser.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_header.c -o php_http_header.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_header.c  -fPIC -DPIC -o .libs/php_http_header.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_info.c -o php_http_info.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_info.c  -fPIC -DPIC -o .libs/php_http_info.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_message_body.c -o php_http_message_body.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_message_body.c  -fPIC -DPIC -o .libs/php_http_message_body.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_message.c -o php_http_message.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_message.c  -fPIC -DPIC -o .libs/php_http_message.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_message_parser.c -o php_http_message_parser.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_message_parser.c  -fPIC -DPIC -o .libs/php_http_message_parser.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_misc.c -o php_http_misc.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_misc.c  -fPIC -DPIC -o .libs/php_http_misc.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_negotiate.c -o php_http_negotiate.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_negotiate.c  -fPIC -DPIC -o .libs/php_http_negotiate.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_object.c -o php_http_object.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_object.c  -fPIC -DPIC -o .libs/php_http_object.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_options.c -o php_http_options.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_options.c  -fPIC -DPIC -o .libs/php_http_options.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_params.c -o php_http_params.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_params.c  -fPIC -DPIC -o .libs/php_http_params.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_querystring.c -o php_http_querystring.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_querystring.c  -fPIC -DPIC -o .libs/php_http_querystring.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_strlist.c -o php_http_strlist.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_strlist.c  -fPIC -DPIC -o .libs/php_http_strlist.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_url.c -o php_http_url.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_url.c  -fPIC -DPIC -o .libs/php_http_url.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=compile cc  -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/pecl_http/php_http_version.c -o php_http_version.lo
libtool: compile:  cc -I. -I/tmp/pear/temp/pecl_http -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/pecl_http/php_http_version.c  -fPIC -DPIC -o .libs/php_http_version.o
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=link cc -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/include -I/tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/main -I/tmp/pear/temp/pecl_http -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/php5/ext/hash  -DHAVE_CONFIG_H  -g -O2   -o http.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/modules  php_http_buffer.lo php_http.lo php_http_client.lo php_http_client_curl.lo php_http_client_request.lo php_http_client_response.lo php_http_cookie.lo php_http_curl.lo php_http_encoding.lo php_http_env.lo php_http_env_request.lo php_http_env_response.lo php_http_etag.lo php_http_exception.lo php_http_filter.lo php_http_header_parser.lo php_http_header.lo php_http_info.lo php_http_message_bo
dy.lo php_http_message.lo php_http_message_parser.lo php_http_misc.lo php_http_negotiate.lo php_http_object.lo php_http_options.lo php_http_params.lo php_http_querystring.lo php_http_strlist.lo php_http_url.lo php_http_version.lo -Wl,-rpath,/usr/lib/arm-linux-gnueabihf -L/usr/lib/arm-linux-gnueabihf -lcurl -lz -lcurl
libtool: link: cc -shared  -fPIC -DPIC  .libs/php_http_buffer.o .libs/php_http.o .libs/php_http_client.o .libs/php_http_client_curl.o .libs/php_http_client_request.o .libs/php_http_client_response.o .libs/php_http_cookie.o .libs/php_http_curl.o .libs/php_http_encoding.o .libs/php_http_env.o .libs/php_http_env_request.o .libs/php_http_env_response.o .libs/php_http_etag.o .libs/php_http_exception.o .libs/php_http_filter.o .libs/php_http_header_parser.o .libs/php_http_header.o .libs/php_http_info.o .libs/php_http_message_body.o .libs/php_http_message.o .libs/php_http_message_parser.o .libs/php_http_misc.o .libs/php_http_negotiate.o .libs/php_http_object.o .libs/php_http_options.o .libs/php_http_params.o .libs/php_http_querystring.o .libs/php_http_strlist.o .libs/php_http_url.o .libs/php_http_version.o   -L/usr/lib/arm-linux-gnueabihf -lz /usr/lib/arm-linux-gnueabihf/libcurl.so  -O2 -Wl,-rpath -Wl,/usr/lib/arm-linux-gnueabihf   -Wl,-soname -Wl,http.so -o .libs/http.so
libtool: link: ( cd ".libs" && rm -f "http.la" && ln -s "../http.la" "http.la" )
/bin/bash /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/libtool --mode=install cp ./http.la /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/modules
libtool: install: cp ./.libs/http.so /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/modules/http.so
libtool: install: cp ./.libs/http.lai /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/modules/http.la
libtool: finish: PATH="/usr/bin:/usr/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /tmp/pear/temp/pear-build-root01oZGx/pecl_http-2.0.4/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'.

running: make INSTALL_ROOT="/tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4" install
Installing shared extensions:     /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/lib/php5/20100525+lfs/
Installing header files:          /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/
running: find "/tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4" | xargs ls -dils
415293    4 drwxr-xr-x 3 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4
415372    4 drwxr-xr-x 4 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr
415376    4 drwxr-xr-x 3 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include
415377    4 drwxr-xr-x 3 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5
415378    4 drwxr-xr-x 3 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext
415379    4 drwxr-xr-x 2 root root    4096  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http
415394    4 -rw-r--r-- 1 root root    1054  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http.h
415380    8 -rw-r--r-- 1 root root    4174  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_api.h
415381   12 -rw-r--r-- 1 root root   10549  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_buffer.h
415382    8 -rw-r--r-- 1 root root    6174  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_client.h
415383    4 -rw-r--r-- 1 root root    1037  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_client_request.h
415384    4 -rw-r--r-- 1 root root    1043  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_client_response.h
415385    4 -rw-r--r-- 1 root root    3983  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_cookie.h
415386    4 -rw-r--r-- 1 root root    1139  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_curl.h
415387    8 -rw-r--r-- 1 root root    7976  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_encoding.h
415388    4 -rw-r--r-- 1 root root    3900  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_env.h
415389    4 -rw-r--r-- 1 root root     993  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_env_request.h
415390    4 -rw-r--r-- 1 root root    3219  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_env_response.h
415391    4 -rw-r--r-- 1 root root    1585  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_etag.h
415392    4 -rw-r--r-- 1 root root    2242  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_exception.h
415393    4 -rw-r--r-- 1 root root     978  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_filter.h
415396    4 -rw-r--r-- 1 root root    1495  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_header.h
415395    4 -rw-r--r-- 1 root root    2453  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_header_parser.h
415397    4 -rw-r--r-- 1 root root    2826  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_info.h
415399    8 -rw-r--r-- 1 root root    4641  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_message.h
415398    8 -rw-r--r-- 1 root root    4136  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_message_body.h
415400    4 -rw-r--r-- 1 root root    2982  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_message_parser.h
415401   12 -rw-r--r-- 1 root root    9863  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_misc.h
415402    8 -rw-r--r-- 1 root root    4202  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_negotiate.h
415403    4 -rw-r--r-- 1 root root    1560  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_object.h
415404    4 -rw-r--r-- 1 root root    2224  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_options.h
415405    4 -rw-r--r-- 1 root root    2311  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_params.h
415406    4 -rw-r--r-- 1 root root    1869  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_querystring.h
415407    4 -rw-r--r-- 1 root root    1867  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_strlist.h
415408    8 -rw-r--r-- 1 root root    6773  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_url.h
415409    4 -rw-r--r-- 1 root root    1496  1月 30 07:08 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/include/php5/ext/http/php_http_version.h
415373    4 drwxr-xr-x 3 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/lib
415374    4 drwxr-xr-x 3 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/lib/php5
415375    4 drwxr-xr-x 2 root root    4096  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/lib/php5/20100525+lfs
415371 1504 -rwxr-xr-x 1 root root 1538090  1月 30 07:07 /tmp/pear/temp/pear-build-root01oZGx/install-pecl_http-2.0.4/usr/lib/php5/20100525+lfs/http.so

Build process completed successfully
Installing '/usr/include/php5/ext/http/php_http_cookie.h'
Installing '/usr/include/php5/ext/http/php_http_querystring.h'
Installing '/usr/include/php5/ext/http/php_http_strlist.h'
Installing '/usr/include/php5/ext/http/php_http_client.h'
Installing '/usr/include/php5/ext/http/php_http_exception.h'
Installing '/usr/include/php5/ext/http/php_http_header_parser.h'
Installing '/usr/include/php5/ext/http/php_http_message.h'
Installing '/usr/include/php5/ext/http/php_http_curl.h'
Installing '/usr/include/php5/ext/http/php_http_message_parser.h'
Installing '/usr/include/php5/ext/http/php_http_encoding.h'
Installing '/usr/include/php5/ext/http/php_http_client_response.h'
Installing '/usr/include/php5/ext/http/php_http_buffer.h'
Installing '/usr/include/php5/ext/http/php_http_client_request.h'
Installing '/usr/include/php5/ext/http/php_http_env_response.h'
Installing '/usr/include/php5/ext/http/php_http_api.h'
Installing '/usr/include/php5/ext/http/php_http_message_body.h'
Installing '/usr/include/php5/ext/http/php_http_version.h'
Installing '/usr/include/php5/ext/http/php_http_object.h'
Installing '/usr/include/php5/ext/http/php_http_filter.h'
Installing '/usr/include/php5/ext/http/php_http_misc.h'
Installing '/usr/include/php5/ext/http/php_http_params.h'
Installing '/usr/include/php5/ext/http/php_http_info.h'
Installing '/usr/include/php5/ext/http/php_http_negotiate.h'
Installing '/usr/include/php5/ext/http/php_http_header.h'
Installing '/usr/include/php5/ext/http/php_http_url.h'
Installing '/usr/include/php5/ext/http/php_http.h'
Installing '/usr/include/php5/ext/http/php_http_env.h'
Installing '/usr/include/php5/ext/http/php_http_etag.h'
Installing '/usr/include/php5/ext/http/php_http_env_request.h'
Installing '/usr/include/php5/ext/http/php_http_options.h'
Installing '/usr/lib/php5/20100525+lfs/http.so'
install ok: channel://pecl.php.net/pecl_http-2.0.4
configuration option "php_ini" is not set to php.ini location
You should add "extension=raphf.so" to php.ini
configuration option "php_ini" is not set to php.ini location
You should add "extension=raphf.so" to php.ini
configuration option "php_ini" is not set to php.ini location
You should add "extension=propro.so" to php.ini
configuration option "php_ini" is not set to php.ini location
You should add "extension=raphf.so" to php.ini
configuration option "php_ini" is not set to php.ini location
You should add "extension=propro.so" to php.ini
configuration option "php_ini" is not set to php.ini location
You should add "extension=http.so" to php.ini

実際にコンパイルしているので、CPUが遅いラズベリーパイだと時間がかかります。時間のあるときにやるといいです(^^;)

他のPECLパッケージは検索すると出てくるかと思います

ラズベリーパイでPHPプログラムを作るときに役立つかと思います

PHPが動くのが遅いなぁ…という場合は

ラズベリーパイのCPUを高速にすることはできませんが、高速なさくらのVPSを借りてそれにUbuntuをインストールすることで、ラズベリーパイとほぼ同じ手順で高速なサーバを構築することができます(^O^)

自分も使っていますが、CPUはラズベリーパイのおよそ10倍速いのでブログソフトWordpressもサクサク動いてとても快適です(・∀・)
ラズベリーパイでサーバ構築の練習をし、VPSで高速安定なサーバを構築するとCPUやメモリも自由に使え、勉強する時間も少なく安定したサーバが作れるためコスパが最高だと思います


それかメモリ1ギガで月490円のDTIのVPSだと、ラズベリーパイ+SDカード+電源そろえる5000円で10ヶ月はVPSが使えるので、wordpressを使ってブログの「運用」まで考えるならVPSの方がいいです