diff options
| author | Mark Murray <markm@FreeBSD.org> | 2002-01-12 13:31:30 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2002-01-12 13:31:30 +0000 |
| commit | a61a203e62775333d55d3171af67f50cc478c967 (patch) | |
| tree | 72b11a1d524f0e705cb4a310c514dafce5eabb1f /libexec/tcpd | |
| parent | e3e5c7667e75e5479d97b5b24e6a687e55c84a5e (diff) | |
Notes
Diffstat (limited to 'libexec/tcpd')
| -rw-r--r-- | libexec/tcpd/Makefile | 20 |
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 |
