PHP 5.2.4 core dump during pear install

PHP 5.2.4 core dump during pear install

am 27.09.2007 20:12:15 von gquiring

I get a core dump while trying make install for PHP 5.2.4. Solaris 9
(Sparc), gcc 3.4.6.

Configure options:

../buildconf --force
../configure '--enable-pdo' '--with-pdo-informix=/u/informix' '--with-
apxs2=/usr/local/apache/bin/apxs' '--with-config-file-path=/etc' '--
enable-ftp' '--with-gettext' '--enable-force-cgi-redirect' '--enable-
pic' '--enable-inline-optimization' '--with-ncurses' '--with-iconv' '--
with-pear=/usr/share/pear' '--with-imagemagick' '--without-sqlite' '--
without-pdo-sqlite'

Re: PHP 5.2.4 core dump during pear install

am 28.09.2007 20:20:58 von gquiring

On Sep 27, 2:12 pm, "gquir...@gmail.com" wrote:
> I get a core dump while trying make install for PHP 5.2.4. Solaris 9
> (Sparc), gcc 3.4.6.
>
>
Here is how to compile PHP with PDO_INFORMIX. The IBM page is wrong
using buildconf which causes the errors.
Do the usual PHP stuff:
../configure
make
make install

then copy the PDO_INFORMIX1.1 to ext/PDO_INFORMIX
cd PDO_INFORMIX
phpize
../configure
make
make install

Add extension to php.ini:
extension=pdo_informix.so

All works as it should.

Gary Quiring