diff options
author | markm <markm@FreeBSD.org> | 1999-03-14 18:02:14 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1999-03-14 18:02:14 +0000 |
commit | 147edf2497d9581475f186c150a37171bd82a62a (patch) | |
tree | f3d65040248b5a82502dbebb681d92d27b7ecb68 | |
parent | 418d7362f7750701a23298dfd8e5c468875f0e3f (diff) | |
download | FreeBSD-src-147edf2497d9581475f186c150a37171bd82a62a.zip FreeBSD-src-147edf2497d9581475f186c150a37171bd82a62a.tar.gz |
Build tcp_wrappers' userland. I am not building tcpd, because in a day
or two, inetd will gain the necessary functionality. At that stage,
I'll make wrapping the default for sendmail and portmapper as well.
-rw-r--r-- | usr.sbin/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/tcpdchk/Makefile | 20 | ||||
-rw-r--r-- | usr.sbin/tcpdmatch/Makefile | 19 |
3 files changed, 42 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index afe09bd..d524839 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 5.20 (Berkeley) 6/12/93 -# $Id: Makefile,v 1.148 1999/02/21 21:30:13 rnordier Exp $ +# $Id: Makefile,v 1.149 1999/03/12 15:38:54 brian Exp $ # XXX MISSING: mkproto SUBDIR= IPXrouted \ @@ -81,7 +81,9 @@ SUBDIR= IPXrouted \ spray \ sysctl \ syslogd \ + tcpdchk \ tcpdump \ + tcpdmatch \ timed \ traceroute \ trpt \ diff --git a/usr.sbin/tcpdchk/Makefile b/usr.sbin/tcpdchk/Makefile new file mode 100644 index 0000000..ba9be97 --- /dev/null +++ b/usr.sbin/tcpdchk/Makefile @@ -0,0 +1,20 @@ +# +# $Id$ +# + +MAINTAINER=markm@FreeBSD.org + +PROG= tcpdchk +MAN8= tcpdchk.8 +SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c + +CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \ + -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \ + -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" + +DPADD= ${LIBWRAP} +LDADD= -lwrap + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers + +.include <bsd.prog.mk> diff --git a/usr.sbin/tcpdmatch/Makefile b/usr.sbin/tcpdmatch/Makefile new file mode 100644 index 0000000..3bf9eb4 --- /dev/null +++ b/usr.sbin/tcpdmatch/Makefile @@ -0,0 +1,19 @@ +# +# $Id$ +# + +MAINTAINER=markm@FreeBSD.org + +PROG= tcpdmatch +MAN8= tcpdmatch.8 +SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c + +CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \ + -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 + +DPADD= ${LIBWRAP} +LDADD= -lwrap + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers + +.include <bsd.prog.mk> |