blob: 2b7f130668d841f0858afe8a809f136c4aa557dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
--- Apache2/Makefile.orig Mon Jun 12 06:27:54 2006
+++ Apache2/Makefile Sat Apr 14 15:33:13 2007
@@ -84,6 +84,22 @@
+ifeq "FreeBSD" "${OS}"
+ifdef USE_SSL
+# Flags for use when enabling mod_ssl support (on by default)
+ENABLE_SSL_SUPPORT = -DAPACHE_SECURITY_ENABLED
+# These should be set to point at the ssl include and lib directories, respectively.
+OPENSSL_INCL_FLAGS = -I/usr/include/openssl
+OPENSSL_LIB_FLAGS = -L/usr/lib -lcrypto -lssl
+endif
+
+INCLUDES += ${OPENSSL_INCL_FLAGS}
+LDFLAGS += ${OPENSSL_LIB_FLAGS} -lm -module
+APXSFLAGS += "-I`${APXS} -q INCLUDEDIR`"
+
+endif
+# End FreeBSD Config
+
# Build steps
# Get the list of source files from the ../Adaptor directory and change their extension to .o
@@ -138,6 +154,17 @@
mod_WebObjects.o : mod_WebObjects.c ${COMMON_OBJFILES}
${CC} -c ${CFLAGS} mod_WebObjects.c ${COMMON_OBJFILES}
endif
+
+# FreeBSD Build
+ifeq "FreeBSD" "$(OS)"
+
+mod_WebObjects.so : mod_WebObjects.c ${COMMON_SRCFILES}
+ ${APXS} ${APXSFLAGS} mod_WebObjects.c ${COMMON_SRCFILES}
+ cp $(@:.so=.slo) $@
+
+endif
+#end FreeBSD
+
# The install target does what you'd think it would: install the module; By default, this is not called.
install: mod_WebObjects.la
|