I've just got it to build.
MY steps:
1. Untar apache 1.3.12
2. run configure.
3. Make.
4. Put the p4api "*.a" files in "src/Perforce",
put the p4api "*.h" files in "src/include".
5. put the files from
//guest/paul_goffin/apache1.3.6/src/modules/perforce
into
src/modules/perforce.
6. Modify the makefile in src as follows:
6.1 mod:
MODULES = \
modules/standard/libstandard.a
to:
MODULES = \
modules/standard/libstandard.a \
modules/perforce/libperforce.a
6.2 mod:
EXTRA_LIBS=
to:
EXTRA_LIBS=-L$(SRCDIR)Perforce -lclient -lrpc -lsupp
7. Modify the makefile in src/modules as follows:
7.1 mod:
MODULES=standard
to:
MODULES=standard perforce
Then goto src and type make again.
Works for me.
Paul.