blob: 9669c0940701a6c0d3674cd638c0cfd01ec21dac (
plain)
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
|
$NetBSD: patch-aa,v 1.23 2002/12/02 12:08:43 tron Exp $
--- Makefile.orig Sat Nov 30 16:36:10 2002
+++ Makefile Mon Dec 2 12:43:07 2002
@@ -2,15 +2,20 @@
# Please read docs/Readme.html, or http://www.analog.cx/
# This is a general Unix-like Makefile: Makefiles for other OS's can be found
# in the "build" directory.
-CC = gcc # which compiler to use: eg cc, acc, gcc. NB Different
+#CC = gcc # which compiler to use: eg cc, acc, gcc. NB Different
# compilers need different CFLAGS, e.g., -O instead of -O2.
-MAKE = make # which "make" to use
-CFLAGS = -O2 # options, e.g. for optimisation or ANSI compilation.
+#MAKE = make # which "make" to use
+#CFLAGS = -O2 # options, e.g. for optimisation or ANSI compilation.
# HP/UX cc needs CFLAGS = -Aa (HP/UX 9) or -Ae (HP/UX 10)
# BeOS needs CFLAGS = -O2 -Wl,-L/boot/home/config/lib
# BS2000/OSD needs CFLAGS = -XLLML -XLLMK
# NeXTSTEP needs CFLAGS = -O2 -pipe -no-precomp
-DEFS = # any combination of -DNOPIPES -DNODNS -DNODIRENT -DNOGLOB ...
+DEFS = -DANALOGDIR=\"${PREFIX}/lib/analog/\" \
+ -DDEFAULTCONFIGFILE=\"${SYSCONFDIR}/analog.cfg\" \
+ -DIMAGEDIR=\"/images/\" \
+ -DLANGDIR=\"${PREFIX}/lib/analog/lang/\" \
+ -DLOGFILE=\"/var/log/httpd-access.log\"
+# any combination of -DNOPIPES -DNODNS -DNODIRENT -DNOGLOB ...
# ... -DNOOPEN -DNOFOLLOW -DNOALARM -DNOGRAPHICS -DNOGMTIME ...
# ... -DEBCDIC -DUSE_PLAIN_SETJMP ...
# ... -DHAVE_GD -DHAVE_ZLIB -DHAVE_PCRE ...
|