Had to modify the makefile to compile under Apple OS X
10.3 (Panther).
1: APXS location is /usr/sbin/apxs
2: Changed Build target from
build:
$(APXS) -Wc,-Wall,-O3,-fomit-frame-pointer,-pipe -c
mod_gzip.c mod_gzip_debug.c mod_gzip_compress.c -o
mod_gzip.so
to
build:
$(APXS) -Wc,-Wall,-O3,-fomit-frame-pointer,-pipe -c
mod_gzip.c mod_gzip_debug.c mod_gzip_compress.c
then it makes, installs, and works.
Logged In: NO
To compile mod_gzip do not use the Makefile in mod_gzip
package.
Do configure with add-module mod_gzip, then the configure
script creates Makefile in the directory containning mod_gzip.
Use this make file to create libgzip.so, as this is created by
the new Makefile.
Accordingly in httpd.conf change path in LoadModule gzip line.