blob: 4f57d17c79be9c35ac9aa0bd4725de4dccda6305 (
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
|
TCL_VERSION?=8.3
TCL_NDVER?=${TCL_VERSION:S/.//} # same, but without the dot
PREFIX?= /usr/local
INCLUDES= -I${PREFIX}/include/apache \
-I${PREFIX}/include/tcl${TCL_VERSION} \
-I${PREFIX}/include
CC!= ${PREFIX}/sbin/apxs -q CC
CFLAGS!= ${PREFIX}/sbin/apxs -q CFLAGS CFLAGS_SHLIB
CFLAGS+= ${INCLUDES} -DGDTCL
# Ridiculous!
#CFLAGS+= -Dneo_log_module=log_neo_module \
# -Dtcl_auth_module=auth_tcl_module
SHLIB_NAME= ${SRCS:R}.so
LDADD= -L${PREFIX}/lib -ltcl${TCL_NDVER} -lm
USE_DB!= grep -l db.h ${.CURDIR}/${SRCS}
.if !empty(USE_DB)
LDADD+= -ldb2
.endif
#LDFLAGS= ${LDADD}
NOMAN= True # don't bother with the man-page here, let the port handle it
.include <bsd.lib.mk>
|