Php: Cannot build mongo extension

Created on 15 Jul 2015  路  12Comments  路  Source: docker-library/php

This issue relates to #77
Steps to reproduce:

1) Scenario - PECL
Add to your docker file:
RUN pecl install mongo
mongo compiled in wrong directory but doesn't matter for the case. Fatal error stops compilation.

In file included from /tmp/pear/temp/mongo/io_stream.c:34:0:
/tmp/pear/temp/mongo/contrib/php-ssl.h:33:25: fatal error: openssl/evp.h: No such file or directory
 #include <openssl/evp.h>
                         ^
compilation terminated.
Makefile:198: recipe for target 'io_stream.lo' failed
make: *** [io_stream.lo] Error 1
ERROR: `make' failed

2) Scenario - docker-php-pecl-install script from @helderco
https://github.com/helderco/docker-php/blob/master/template/bin/docker-php-pecl-install

RUN docker-php-pecl-install mongo
This time directory is correct /usr/src/php/ext/mongo but similar error occurred during compilation.

In file included from /usr/src/php/ext/mongo/io_stream.c:34:0:
/usr/src/php/ext/mongo/contrib/php-ssl.h:33:25: fatal error: openssl/evp.h: No such file or directory
 #include <openssl/evp.h>
                         ^
compilation terminated.
Makefile:198: recipe for target 'io_stream.lo' failed
make: *** [io_stream.lo] Error 1
The command '/bin/sh -c docker-php-pecl-install mongo' returned a non-zero code: 1

Mongo compiles successfully on Ubuntu 14.04.
Version used from PECL - current (mongo-1.6.10)

Most helpful comment

If anyone is having problems trying to enable this for PHP7, you should use mongodb extension instead of mongo. For example:

FROM php:7-fpm

RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*

RUN pecl install mongodb-1.1.8 \
    && docker-php-ext-enable mongodb

Please note that mongodb-1.1.8 is the latest stable version at the time of writing of this post.

All 12 comments

You need to install the package libssl-dev (in $buildDeps). We could either move it to the persistent deps, or have it installed again when needed.

FROM helder/php:5.6
RUN apt-install libssl-dev && \
    docker-php-pecl-install mongo && \
    apt-get purge -y --auto-remove libssl-dev

If mongo was included in available extensions, there will be no need for libssl-dev installation. If libssl is not installed how php:apache handles https?
Oh, it doesn't.

PHP is built with openssl support, but the package used to build it (libssl-dev) is removed after PHP is built. Look at the official dockerfile, it's in $buildDeps. That's to keep the base image lighter.

Thanks. PECL installation also works fine and mongo is loaded. You can stick to pecl install mongo if you want.

The image does have libssl (see below). Apache not handling SSL is a matter of it not being configured to handle SSL. I believe there was a discussion in one of the issues in this repo (possibly in the repo for https), but if I recall the issue was that the Official Images team didn't have the bandwidth to support the myriad options necessary to configure SSL in Apache and didn't want to provide a default config for SSL.

$ docker run --rm php dpkg -l 'libssl*'
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name              Version         Architecture Description
+++-=================-===============-============-===============================================
ii  libssl1.0.0:amd64 1.0.1k-3+deb8u1 amd64        Secure Sockets Layer toolkit - shared libraries

Regarding the Apache HTTPS thing, it looks like you should be able to use a2ensite with your own SSL config using current versions of the image (cf. https://github.com/docker-library/php/pull/78).

@md5 The image may have libssl (shared libraries), but it's libssl-dev that's needed (development files).

$ docker run --rm php dpkg -l 'libssl-dev*'                                                                                                          [0:30:31]
dpkg-query: no packages found matching libssl-dev*

@jjelev by the way, the difference between docker-php-pecl-install and pecl install is that my script leaves the sources and creates the extension.ini file for you (using docker-php-ext-install).

Although now I've been thinking that docker-php-ext-install uses the sources from the base image because it gives you the choice to install the ones you want afterwards (in your own Dockerfile), instead of having them all installed. Since with PECL you're downloading a package that's not in the base image, and there's no need (as long as I can see) to have those sources around, it should be better to just use pecl install in the script, add the extension.ini file, and clean /tmp/pear in the end.

Thanks @helderco. I should have clarified that I was just responding to @jjelev's tangential comments about libssl not being in the image and SSL not working with the default Apache config:

If mongo was included in available extensions, there will be no need for libssl-dev installation. If libssl is not installed how php:apache handles https?
Oh, it doesn't.

I've updated my script. Now docker-php-pecl-install uses pecl install, but adds the conf.d/extension.ini file for you and does a bit of a cleanup afterwards. This way pecl list works.

Given docker-php-ext-enable, adding the mongo extension should be as simple as something like this:

FROM php:5.6

RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*

RUN pecl install mongo-1.6.14 \
    && docker-php-ext-enable mongo
Sending build context to Docker daemon 2.048 kB
Step 1 : FROM php:5.6
 ---> 5ef859373bd6
Step 2 : RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*
 ---> Running in c5d5052afa8b
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://httpredir.debian.org jessie InRelease
Get:2 http://httpredir.debian.org jessie-updates InRelease [142 kB]
Get:3 http://httpredir.debian.org jessie Release.gpg [2373 B]
Get:4 http://security.debian.org jessie/updates/main amd64 Packages [385 kB]
Get:5 http://httpredir.debian.org jessie Release [148 kB]
Get:6 http://httpredir.debian.org jessie-updates/main amd64 Packages [17.6 kB]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9032 kB]
Fetched 9790 kB in 2s (3471 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  libssl-doc zlib1g-dev
The following NEW packages will be installed:
  libssl-dev libssl-doc zlib1g-dev
0 upgraded, 3 newly installed, 0 to remove and 3 not upgraded.
Need to get 2656 kB of archives.
After this operation, 8805 kB of additional disk space will be used.
Get:1 http://httpredir.debian.org/debian/ jessie/main zlib1g-dev amd64 1:1.2.8.dfsg-2+b1 [206 kB]
Get:2 http://httpredir.debian.org/debian/ jessie/main libssl-dev amd64 1.0.1t-1+deb8u2 [1282 kB]
Get:3 http://httpredir.debian.org/debian/ jessie/main libssl-doc all 1.0.1t-1+deb8u2 [1168 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 2656 kB in 0s (92.2 MB/s)
Selecting previously unselected package zlib1g-dev:amd64.
(Reading database ... 12239 files and directories currently installed.)
Preparing to unpack .../zlib1g-dev_1%3a1.2.8.dfsg-2+b1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.8.dfsg-2+b1) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../libssl-dev_1.0.1t-1+deb8u2_amd64.deb ...
Unpacking libssl-dev:amd64 (1.0.1t-1+deb8u2) ...
Selecting previously unselected package libssl-doc.
Preparing to unpack .../libssl-doc_1.0.1t-1+deb8u2_all.deb ...
Unpacking libssl-doc (1.0.1t-1+deb8u2) ...
Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-2+b1) ...
Setting up libssl-dev:amd64 (1.0.1t-1+deb8u2) ...
Setting up libssl-doc (1.0.1t-1+deb8u2) ...
 ---> 8236e65ec69d
Removing intermediate container c5d5052afa8b
Step 3 : RUN pecl install mongo-1.6.14  && docker-php-ext-enable mongo
 ---> Running in cd35580e97a2
WARNING: "pecl/mongo" is deprecated in favor of "channel:///mongodb"
downloading mongo-1.6.14.tgz ...
Starting to download mongo-1.6.14.tgz (210,095 bytes)
.............................................done: 210,095 bytes
118 source files, building
running: phpize
Configuring for:
PHP Api Version:         20131106
Zend Module Api No:      20131226
Zend Extension Api No:   220131226
Build with Cyrus SASL (MongoDB Enterprise Authentication) support? [no] : building in /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14
running: /tmp/pear/temp/mongo/configure --with-php-config=/usr/local/bin/php-config --with-mongo-sasl=no
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-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20131226
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 Mongo extension... yes, shared
checking whether byte ordering is bigendian... no
checking whether to include code coverage symbols... no
checking Build with Cyrus SASL 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... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) 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

creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
running: make
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/php_mongo.c -o php_mongo.lo
mkdir .libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/php_mongo.c  -fPIC -DPIC -o .libs/php_mongo.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mongo.c -o mongo.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mongo.c  -fPIC -DPIC -o .libs/mongo.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mongoclient.c -o mongoclient.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mongoclient.c  -fPIC -DPIC -o .libs/mongoclient.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/bson.c -o bson.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/bson.c  -fPIC -DPIC -o .libs/bson.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/cursor.c -o cursor.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/cursor.c  -fPIC -DPIC -o .libs/cursor.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/command_cursor.c -o command_cursor.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/command_cursor.c  -fPIC -DPIC -o .libs/command_cursor.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/cursor_shared.c -o cursor_shared.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/cursor_shared.c  -fPIC -DPIC -o .libs/cursor_shared.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/collection.c -o collection.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/collection.c  -fPIC -DPIC -o .libs/collection.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/db.c -o db.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/db.c  -fPIC -DPIC -o .libs/db.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/io_stream.c -o io_stream.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/io_stream.c  -fPIC -DPIC -o .libs/io_stream.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/log_stream.c -o log_stream.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/log_stream.c  -fPIC -DPIC -o .libs/log_stream.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/contrib/crypto.c -o contrib/crypto.lo
mkdir contrib/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/contrib/crypto.c  -fPIC -DPIC -o contrib/.libs/crypto.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/contrib/php-json.c -o contrib/php-json.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/contrib/php-json.c  -fPIC -DPIC -o contrib/.libs/php-json.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/contrib/php-ssl.c -o contrib/php-ssl.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/contrib/php-ssl.c  -fPIC -DPIC -o contrib/.libs/php-ssl.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/gridfs/gridfs.c -o gridfs/gridfs.lo
mkdir gridfs/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/gridfs/gridfs.c  -fPIC -DPIC -o gridfs/.libs/gridfs.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/gridfs/gridfs_cursor.c -o gridfs/gridfs_cursor.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/gridfs/gridfs_cursor.c  -fPIC -DPIC -o gridfs/.libs/gridfs_cursor.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/gridfs/gridfs_file.c -o gridfs/gridfs_file.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/gridfs/gridfs_file.c  -fPIC -DPIC -o gridfs/.libs/gridfs_file.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/gridfs/gridfs_stream.c -o gridfs/gridfs_stream.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/gridfs/gridfs_stream.c  -fPIC -DPIC -o gridfs/.libs/gridfs_stream.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/exception.c -o exceptions/exception.lo
mkdir exceptions/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/exception.c  -fPIC -DPIC -o exceptions/.libs/exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/connection_exception.c -o exceptions/connection_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/connection_exception.c  -fPIC -DPIC -o exceptions/.libs/connection_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/duplicate_key_exception.c -o exceptions/duplicate_key_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/duplicate_key_exception.c  -fPIC -DPIC -o exceptions/.libs/duplicate_key_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/cursor_exception.c -o exceptions/cursor_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/cursor_exception.c  -fPIC -DPIC -o exceptions/.libs/cursor_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/protocol_exception.c -o exceptions/protocol_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/protocol_exception.c  -fPIC -DPIC -o exceptions/.libs/protocol_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/cursor_timeout_exception.c -o exceptions/cursor_timeout_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/cursor_timeout_exception.c  -fPIC -DPIC -o exceptions/.libs/cursor_timeout_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/execution_timeout_exception.c -o exceptions/execution_timeout_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/execution_timeout_exception.c  -fPIC -DPIC -o exceptions/.libs/execution_timeout_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/gridfs_exception.c -o exceptions/gridfs_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/gridfs_exception.c  -fPIC -DPIC -o exceptions/.libs/gridfs_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/result_exception.c -o exceptions/result_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/result_exception.c  -fPIC -DPIC -o exceptions/.libs/result_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/exceptions/write_concern_exception.c -o exceptions/write_concern_exception.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/exceptions/write_concern_exception.c  -fPIC -DPIC -o exceptions/.libs/write_concern_exception.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/bin_data.c -o types/bin_data.lo
mkdir types/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/bin_data.c  -fPIC -DPIC -o types/.libs/bin_data.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/code.c -o types/code.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/code.c  -fPIC -DPIC -o types/.libs/code.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/date.c -o types/date.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/date.c  -fPIC -DPIC -o types/.libs/date.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/db_ref.c -o types/db_ref.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/db_ref.c  -fPIC -DPIC -o types/.libs/db_ref.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/id.c -o types/id.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/id.c  -fPIC -DPIC -o types/.libs/id.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/int32.c -o types/int32.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/int32.c  -fPIC -DPIC -o types/.libs/int32.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/int64.c -o types/int64.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/int64.c  -fPIC -DPIC -o types/.libs/int64.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/regex.c -o types/regex.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/regex.c  -fPIC -DPIC -o types/.libs/regex.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/types/timestamp.c -o types/timestamp.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/types/timestamp.c  -fPIC -DPIC -o types/.libs/timestamp.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/util/log.c -o util/log.lo
mkdir util/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/util/log.c  -fPIC -DPIC -o util/.libs/log.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/util/pool.c -o util/pool.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/util/pool.c  -fPIC -DPIC -o util/.libs/pool.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/bson_helpers.c -o mcon/bson_helpers.lo
mkdir mcon/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/bson_helpers.c  -fPIC -DPIC -o mcon/.libs/bson_helpers.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/collection.c -o mcon/collection.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/collection.c  -fPIC -DPIC -o mcon/.libs/collection.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/connections.c -o mcon/connections.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/connections.c  -fPIC -DPIC -o mcon/.libs/connections.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/manager.c -o mcon/manager.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/manager.c  -fPIC -DPIC -o mcon/.libs/manager.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/mini_bson.c -o mcon/mini_bson.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/mini_bson.c  -fPIC -DPIC -o mcon/.libs/mini_bson.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/parse.c -o mcon/parse.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/parse.c  -fPIC -DPIC -o mcon/.libs/parse.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/read_preference.c -o mcon/read_preference.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/read_preference.c  -fPIC -DPIC -o mcon/.libs/read_preference.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/str.c -o mcon/str.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/str.c  -fPIC -DPIC -o mcon/.libs/str.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/utils.c -o mcon/utils.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/utils.c  -fPIC -DPIC -o mcon/.libs/utils.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/contrib/md5.c -o mcon/contrib/md5.lo
mkdir mcon/contrib/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/contrib/md5.c  -fPIC -DPIC -o mcon/contrib/.libs/md5.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/mcon/contrib/strndup.c -o mcon/contrib/strndup.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/mcon/contrib/strndup.c  -fPIC -DPIC -o mcon/contrib/.libs/strndup.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/api/wire_version.c -o api/wire_version.lo
mkdir api/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/api/wire_version.c  -fPIC -DPIC -o api/.libs/wire_version.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/api/write.c -o api/write.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/api/write.c  -fPIC -DPIC -o api/.libs/write.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/api/batch.c -o api/batch.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/api/batch.c  -fPIC -DPIC -o api/.libs/batch.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/batch/write.c -o batch/write.lo
mkdir batch/.libs
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/batch/write.c  -fPIC -DPIC -o batch/.libs/write.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/batch/insert.c -o batch/insert.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/batch/insert.c  -fPIC -DPIC -o batch/.libs/insert.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/batch/update.c -o batch/update.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/batch/update.c  -fPIC -DPIC -o batch/.libs/update.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=compile cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I
/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/mongo/batch/delete.c -o batch/delete.lo
 cc -I./util -I. -I/tmp/pear/temp/mongo -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/con
trib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/mongo/batch/delete.c  -fPIC -DPIC -o batch/.libs/delete.o
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=link cc -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/include -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/main -I/tmp/pear/temp/mongo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/api -I/tmp/pear/temp/mongo/api -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/util -I/tmp/pear/temp/mongo/util -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/exceptions -I/tmp/pear/temp/mongo/exceptions -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/gridfs -I/tmp/pear/temp/mongo/gridfs -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/types -I/tmp/pear/temp/mongo/types -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/batch -I/tmp/pear/temp/mongo/batch -I/tmp/pear/
temp/pear-build-defaultuser9suGKj/mongo-1.6.14/contrib -I/tmp/pear/temp/mongo/contrib -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon -I/tmp/pear/temp/mongo/mcon -I/tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/mcon/contrib -I/tmp/pear/temp/mongo/mcon/contrib  -DHAVE_CONFIG_H  -g -O2   -o mongo.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/modules  php_mongo.lo mongo.lo mongoclient.lo bson.lo cursor.lo command_cursor.lo cursor_shared.lo collection.lo db.lo io_stream.lo log_stream.lo contrib/crypto.lo contrib/php-json.lo contrib/php-ssl.lo gridfs/gridfs.lo gridfs/gridfs_cursor.lo gridfs/gridfs_file.lo gridfs/gridfs_stream.lo exceptions/exception.lo exceptions/connection_exception.lo exceptions/duplicate_key_exception.lo exceptions/cursor_exception.lo exceptions/protocol_exception.lo exceptions/cursor_timeout_exception.lo exceptions/execution_timeout_exception.lo exceptions/gridfs_exception.lo exceptions/result_ex
ception.lo exceptions/write_concern_exception.lo types/bin_data.lo types/code.lo types/date.lo types/db_ref.lo types/id.lo types/int32.lo types/int64.lo types/regex.lo types/timestamp.lo util/log.lo util/pool.lo mcon/bson_helpers.lo mcon/collection.lo mcon/connections.lo mcon/manager.lo mcon/mini_bson.lo mcon/parse.lo mcon/read_preference.lo mcon/str.lo mcon/utils.lo mcon/contrib/md5.lo mcon/contrib/strndup.lo api/wire_version.lo api/write.lo api/batch.lo batch/write.lo batch/insert.lo batch/update.lo batch/delete.lo
cc -shared  .libs/php_mongo.o .libs/mongo.o .libs/mongoclient.o .libs/bson.o .libs/cursor.o .libs/command_cursor.o .libs/cursor_shared.o .libs/collection.o .libs/db.o .libs/io_stream.o .libs/log_stream.o contrib/.libs/crypto.o contrib/.libs/php-json.o contrib/.libs/php-ssl.o gridfs/.libs/gridfs.o gridfs/.libs/gridfs_cursor.o gridfs/.libs/gridfs_file.o gridfs/.libs/gridfs_stream.o exceptions/.libs/exception.o exceptions/.libs/connection_exception.o exceptions/.libs/duplicate_key_exception.o exceptions/.libs/cursor_exception.o exceptions/.libs/protocol_exception.o exceptions/.libs/cursor_timeout_exception.o exceptions/.libs/execution_timeout_exception.o exceptions/.libs/gridfs_exception.o exceptions/.libs/result_exception.o exceptions/.libs/write_concern_exception.o types/.libs/bin_data.o types/.libs/code.o types/.libs/date.o types/.libs/db_ref.o types/.libs/id.o types/.libs/int32.o types/.libs/int64.o types/.libs/regex.o types/.libs/timestamp.o util/.libs/log.o util/.libs/pool.o mcon/.libs/bson_helpers.o mcon
/.libs/collection.o mcon/.libs/connections.o mcon/.libs/manager.o mcon/.libs/mini_bson.o mcon/.libs/parse.o mcon/.libs/read_preference.o mcon/.libs/str.o mcon/.libs/utils.o mcon/contrib/.libs/md5.o mcon/contrib/.libs/strndup.o api/.libs/wire_version.o api/.libs/write.o api/.libs/batch.o batch/.libs/write.o batch/.libs/insert.o batch/.libs/update.o batch/.libs/delete.o   -Wl,-soname -Wl,mongo.so -o .libs/mongo.so
creating mongo.la
(cd .libs && rm -f mongo.la && ln -s ../mongo.la mongo.la)
/bin/bash /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/libtool --mode=install cp ./mongo.la /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/modules
cp ./.libs/mongo.so /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/modules/mongo.so
cp ./.libs/mongo.lai /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/modules/mongo.la
PATH="$PATH:/sbin" ldconfig -n /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /tmp/pear/temp/pear-build-defaultuser9suGKj/mongo-1.6.14/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-defaultuser9suGKj/install-mongo-1.6.14" install
Installing shared extensions:     /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local/lib/php/extensions/no-debug-non-zts-20131226/
running: find "/tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14" | xargs ls -dils
243395824    4 drwxr-xr-x 3 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14
243404687    4 drwxr-xr-x 3 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr
243408033    4 drwxr-xr-x 3 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local
243408036    4 drwxr-xr-x 3 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local/lib
243408039    4 drwxr-xr-x 3 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local/lib/php
243404690    4 drwxr-xr-x 3 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local/lib/php/extensions
243404693    4 drwxr-xr-x 2 root root    4096 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local/lib/php/extensions/no-debug-non-zts-20131226
  5243410 1808 -rwxr-xr-x 1 root root 1848120 Aug 20 00:05 /tmp/pear/temp/pear-build-defaultuser9suGKj/install-mongo-1.6.14/usr/local/lib/php/extensions/no-debug-non-zts-20131226/mongo.so

Build process completed successfully
Installing '/usr/local/lib/php/extensions/no-debug-non-zts-20131226/mongo.so'
install ok: channel://pecl.php.net/mongo-1.6.14
configuration option "php_ini" is not set to php.ini location
You should add "extension=mongo.so" to php.ini
 ---> b8d35de108cf
Removing intermediate container cd35580e97a2
Successfully built b8d35de108cf

If anyone is having problems trying to enable this for PHP7, you should use mongodb extension instead of mongo. For example:

FROM php:7-fpm

RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*

RUN pecl install mongodb-1.1.8 \
    && docker-php-ext-enable mongodb

Please note that mongodb-1.1.8 is the latest stable version at the time of writing of this post.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

mcnesium picture mcnesium  路  3Comments

nojimage picture nojimage  路  3Comments

ktrzos picture ktrzos  路  3Comments

igodorogea picture igodorogea  路  3Comments

mbates picture mbates  路  3Comments