aboutsummaryrefslogtreecommitdiff
path: root/lib/libwrap/Makefile
blob: cf414a18cd9f080346eac8d5c96b18992cb115a8 (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
#
# $FreeBSD$
#

MAINTAINER=markm@FreeBSD.org

LIB=	wrap
SHLIB_MAJOR= 3
INCS=	tcpd.h
MAN=	hosts_access.3
MAN+=	hosts_access.5 hosts_options.5

.PATH:	${.CURDIR}/../../contrib/tcp_wrappers

CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
	-DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \
	-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
	-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
	-DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -DUSE_STRSEP
.if !defined(NOINET6)
CFLAGS+=-DINET6
.endif

SRCS=	clean_exit.c diag.c eval.c fix_options.c fromhost.c \
	hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \
	percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \
	socket.c tli.c update.c workarounds.c libvars.c

.include <bsd.lib.mk>