From a61a203e62775333d55d3171af67f50cc478c967 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sat, 12 Jan 2002 13:31:30 +0000 Subject: [PATCH] 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. --- libexec/tcpd/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libexec/tcpd/Makefile diff --git a/libexec/tcpd/Makefile b/libexec/tcpd/Makefile new file mode 100644 index 000000000000..74c689174136 --- /dev/null +++ b/libexec/tcpd/Makefile @@ -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 + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers