aboutsummaryrefslogtreecommitdiff
path: root/libexec/tcpd
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2002-01-12 13:31:30 +0000
committerMark Murray <markm@FreeBSD.org>2002-01-12 13:31:30 +0000
commita61a203e62775333d55d3171af67f50cc478c967 (patch)
tree72b11a1d524f0e705cb4a310c514dafce5eabb1f /libexec/tcpd
parente3e5c7667e75e5479d97b5b24e6a687e55c84a5e (diff)
Notes
Diffstat (limited to 'libexec/tcpd')
-rw-r--r--libexec/tcpd/Makefile20
1 files changed, 20 insertions, 0 deletions
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 <bsd.prog.mk>
+
+.PATH: ${.CURDIR}/../../contrib/tcp_wrappers