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.
This commit is contained in:
Mark Murray 1999-03-14 18:02:14 +00:00
parent f3fc2030ea
commit 8d4b20e333
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44747
3 changed files with 42 additions and 1 deletions

View File

@ -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 \

20
usr.sbin/tcpdchk/Makefile Normal file
View File

@ -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>

View File

@ -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>