I tried this and end with the same results, is it the shtool that creates
the libphp4.so in the libs directory? It seems like it's not getting
created there, and so can't be copied ?
At 04:33 PM 12/13/2002 -0700, Jim Thome wrote:
It appears like the extension for shared libraries on AIX is .a (
It appears like the extension for shared libraries on AIX is .a (depends on your
version of AIX; the new linker in AIX release 4.2.1 is .so).
To hack the apxs...
On line 116 of the apxs script in Apache 1.3.26:
Change: my $dso_ext = "so";
To: my $dso_ext = "a";
On line 381:
Change: $d =~ s|\.s
As far as I can tell it's .so - what would I change in the apxs script from
so to sl, if it does turn out that it's sl?
At 03:04 PM 12/13/2002 -0700, Jim Thome wrote:
What suffix does AIX use for shared libaries? .sl or .so? If it's
something other than .so, you will have to hack your apxs scr
What suffix does AIX use for shared libaries? .sl or .so? If it's something other
than .so, you will have to hack your apxs script to change it to whatever your system
needs. (Just search apxs for .so; it is only in two places in newer apxs scripts).
After changing your apxs script, run mak