Hello,
So it seems that there still is an incompatibility between GD and
libpng-1.2.x... fine
So I installed into a dedicated directory an older version, 1.0.15
In my configure line I inserted
--with-png-dir=/my/old-libpng/path
Everything goes fine, and all once built
[patrice@localho st php-5.0.0b1]$ ldd sapi/cli/php|grep png
libpng.so.2 => /usr/lib/./libpng.so.2 (0x40350000)
The command line php is indeed linked against the "old" libpng and all works
like a charm, but...
[patrice@localho st php-5.0.0b1]$ ldd libs/libphp5.so |grep png
libpng.so.3 => /usr/lib/libpng.so.3 (0x403bc000)
The Apache module (--with-apxs) is linked against my system libpng, so any
script that calls ImageCreateFrom Png() causes apache to SegFault :-(((
How do I tell apxs to link according to the configure script ???
Thanks,
Patrice
P.S: This is not related to the beta status of PHP5, older stable versions
behave in the same way.
--
Posté avec Knode, le lecteur de niouzes de KDE
So it seems that there still is an incompatibility between GD and
libpng-1.2.x... fine
So I installed into a dedicated directory an older version, 1.0.15
In my configure line I inserted
--with-png-dir=/my/old-libpng/path
Everything goes fine, and all once built
[patrice@localho st php-5.0.0b1]$ ldd sapi/cli/php|grep png
libpng.so.2 => /usr/lib/./libpng.so.2 (0x40350000)
The command line php is indeed linked against the "old" libpng and all works
like a charm, but...
[patrice@localho st php-5.0.0b1]$ ldd libs/libphp5.so |grep png
libpng.so.3 => /usr/lib/libpng.so.3 (0x403bc000)
The Apache module (--with-apxs) is linked against my system libpng, so any
script that calls ImageCreateFrom Png() causes apache to SegFault :-(((
How do I tell apxs to link according to the configure script ???
Thanks,
Patrice
P.S: This is not related to the beta status of PHP5, older stable versions
behave in the same way.
--
Posté avec Knode, le lecteur de niouzes de KDE
Comment