Hi to all,
when i compile apache with modul mod_gzip i get the
fallowing error-message:
nstall/php-4.2.1 -DUSE_EXPAT -I../../lib/expat-lite -
DNO_DL_NEEDED `../../apaci` mod_gzip_debug.c
make[4]: *** No rule to make target `mod_gzip.a',
needed by `libgzip.a'. Stop.
make[3]: *** [all] Error 1
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory
`/tmp/install/apache_1.3.26/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory `/tmp/install/apache_1.3.26'
make: *** [build] Error 2
I use Apache 1.3.26 with PHP 4.2.1 and GD 1.8.4 on
Linux Suse 8.0
Any ideas?
Many thanx in advance
Günther Unterrainer
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.