Steve Chadsey - 2003-03-12

Logged In: YES
user_id=643107

I ran into this as well: apache 1.3.27, php 4.2.3,
mod_gzip-1.3.26.1a, RH 7.2

What I did was edit the src/modules/gzip/Makefile file and
make the following changes:
OBJS=mod_gzip.a
to
OBJS=mod_gzip.o
and
LIB=libgzip.$(LIBEXT)
to
LIB=libgzip.a

after that, the compile completes, and running src/httpd -l
shows that mod_gzip.c is compiled in. However....I haven't
tested it in production, so I don't know if the above
changes produce a properly working mod_gzip module.