I am attempting to build Apache 2.0.28 beta on an AIX 4.3 box.
After unpacking I have used the following commands
./configure --prefix=/my/install --enable-mods-shared=most
make
make install
This adds LoadModule statements to my httpd.conf such as
LoadModule access_module modules/mod_access.so
but my /my/install/modules directory only contains files as
mod_access.la
libmod_access.a
libmod_access.so.0
libmod_access.so.0.0.0
with the last two being links to libmod_access.a
I tried changing the LoadModule statement to reference the
libmod_access.a file, but this just gave me a coredump at
startup.
What am I doing wrong? Or isn't it supposed to support shared
modules yet?
Ray Pearce