|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-09-07 04:42 UTC] paolo dot berva at st dot com
I had the same problem also with the previous
version php-4.0.1pl2
./configure and make end without errors, but make install...
$ ./configure \
--with-pgsql=/opt/pgsql \
--with-apxs=/opt/apache/bin/apxs \
--without-mysql \
--with-zlib=/opt/zlib \
--with-config-file-path=/opt/apache/etc/httpd.conf \
$ make
$make install
...
Making install in .
/opt/apache/bin/apxs -i -a -n php4 libs/libphp4.sl
apxs:Error: file libs/libphp4.sl is not a DSO
*** Error exit code 1
Stop.
*** Error exit code 1
Stop.
Regards
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 17:00:02 2025 UTC |
Tried installing php 4.0.4 but with the same error. I successfully installed php 4.0.4 using the workaround suggested by: marvin_lam@agilent.com It seems that apxs wants the shared library to be named libphp4.so, not libphp4.sl. Do the following: # cp libs/libphp4.sl libs/libphp4.so # /path/to/bin/apxs -i -a -n php4 libs/libphp4.so (Bug #7643) Paolo