Build the TCP-wrapper helper "daemon" tcpd. This is not much use in

a bog-standard FreeBSD installation, as inetd(8) does that job, but
for inetd(8) replacemenrts such as xinetd, having this around makes
sense.
This commit is contained in:
Mark Murray 2002-01-12 13:31:30 +00:00
parent e3e5c7667e
commit a61a203e62
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89284

20
libexec/tcpd/Makefile Normal file
View File

@ -0,0 +1,20 @@
# $FreeBSD$
MAINTAINER= markm@FreeBSD.org
PROG= tcpd
MAN= tcpd.8
CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
-DFACILITY=LOG_DAEMON
.if !defined(NOINET6)
CFLAGS+=-DINET6
.endif
DPADD= ${LIBWRAP}
LDADD= -lwrap
.include <bsd.prog.mk>
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers