| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2001-03-16 20:59 UTC] sniper@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 15:00:01 2025 UTC | 
I configured php using the following line: ./configure --with-apxs=/opt/apache/bin/apxs --prefix=/opt/php4 --without-mysql make works fine but in make install, apxs complains that libs/libphp4.sl is not a DSO I edited apxs and had to change line if ($f !~ m|\.so$|) { to if ($f !~ m|\.sl$|) { Why not change the name of the shared library to libphp4.so in the installation process ?