Skip to content

Commit 3081ce8

Browse files
committed
Makefile: Added build for Apache 1.3.x
1 parent 0af7712 commit 3081ce8

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Makefile

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
APXS = /usr/local/apache2/bin/apxs
2-
1+
APXS2 = /usr/local/apache2/bin/apxs
2+
APXS = /usr/local/apache/bin/apxs
3+
MODULE = mod_limits
4+
MODULES = mod_limits.so
35
.SUFFIXES: .c .o .so
46

5-
MODULES = mod_limits.so
7+
8+
ap13: mod_limits.c
9+
$(APXS) -c $(MODULE).c
610

711
all: $(MODULES)
812

913
.c.so: $*.c
10-
$(APXS) -c $(DEF) $(INC) $(LIB) $*.c
14+
$(APXS2) -c $(DEF) $(INC) $(LIB) $*.c
1115

1216
install: all
1317
@for i in $(MODULES); do \

0 commit comments

Comments
 (0)