blob: f8460b85f4f37d699bc72e1284a4bd7c97ae14a1 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
--- configs/FreeBSD.orig 2007-10-12 02:53:28.000000000 +0400
+++ configs/FreeBSD 2007-10-12 03:03:56.000000000 +0400
@@ -2,25 +2,25 @@
CC = cc
CP = cp
MAKE = make
-PREFIX = /usr/firewall
+PREFIX = /usr/local
# Defines path where to find ncurses libraries
-NCURSES_LIBDIR=/usr/local/lib
+NCURSES_LIBDIR=/usr/lib
# Defines path where to find ncurses headers
-NCURSES_INCDIR=/usr/local/include/ncurses
+NCURSES_INCDIR=/usr/include/ncurses
# Defines path where to find SSL libraries
-SSL_LIBDIR=/usr/local/ssl/lib
+SSL_LIBDIR=/usr/lib
# Defines path where to find SSL headers
-SSL_INCDIR=/usr/local/ssl/include
+SSL_INCDIR=/usr/include/openssl
# Defines path where to find GNU Magic/File libraries
-MAGIC_LIBDIR=/usr/local/lib
+MAGIC_LIBDIR=/usr/lib
# Defines path where to find GNU Magic/File headers
-MAGIC_INCDIR=/usr/local/include
+MAGIC_INCDIR=/usr/include
# Defines path where to find Milter client library (libci_milter)
MILTER_LIBDIR=../../libci_milter
@@ -29,7 +29,7 @@
MILTER_INCDIR=../../libci_milter/include
# Defines path where to find berkeley bd headers
-DBM_INCDIR=/usr/include/gdbm
+DBM_INCDIR=/usr/include
# Defines for your operating system
DEFINES=-DPREFIX=\"$(PREFIX)\"
@@ -70,16 +70,16 @@
FWTKSRCDIR=$(PREFIX)/src/fwtk
# Location of X libraries for X-gw
-XLIBDIR=/usr/X11R6/lib
+XLIBDIR=${X11BASE}lib/X11
# X Libraries
XLIBS = -L$(XLIBDIR) -lXaw -lXmu -lXt -lXext -lX11 -lSM -lICE -lXext
# Location of X include files
-XINCLUDE=/usr/X11R6/include
+XINCLUDE=${X11BASE}/include/X11
# IPFilter location
#IPFILTER=$(PREFIX)/development/src/ipfilter/ip_fil3.2.9
# authsrv agent communication socket
-AUTHSRV_SOCK_PATH=$(PREFIX)/var/
+AUTHSRV_SOCK_PATH=/var/run/openfwtk
|