[Mod_gzip] Problems with Install 1.3.26a symbol gzp_main: referenced symbol not found
Christian Kruse
mod_gzip@lists.over.net
Mon, 7 Oct 2002 23:06:27 +0200
Hello,
On Mon, Oct 07, 2002 at 01:48:31PM -0700, Carol Gontko wrote:
> When I tried to do the same for the new mod_gzip
> (1.3.26a) I get the error "Cannot load
> /usr/local/apache/libexec/mod_gzip.so into server:
> ld.so.1: /usr/local/apache/bin/httpd: fatal:
> relocation error: file /usr/local/apache/libexec/mod
> _gzip.so: symbol gzp_main: referenced symbol not found
> /usr/local/apache/bin/apachectl startssl: httpd could
> not be started".
>From the ChangeLog (distributed with the source package):
Now there are two ways to build mod_gzip: statically compiled
into Apache and a DSO-File for mod_so. If you want to
compile it statically into Apache, just copy the source
to Apache src/modules directory and there into a subdirectory
named 'gzip'. You can activate it via a parameter of the
configure script, e.g.
./configure --activate-module=src/modules/gzip/mod_gzip.a
make
make install
This will build a new Apache with mod_gzip statically built in.
The DSO-Version is much easier to build. Just type
make APXS=/path/to/apxs
make install APXS=/path/to/apxs
/path/to/apachectl restart
The apxs script is normaly located inside the bin directory of
Apache.
Greetings,
CK