8d4b20e333
or two, inetd will gain the necessary functionality. At that stage, I'll make wrapping the default for sendmail and portmapper as well.
21 lines
379 B
Makefile
21 lines
379 B
Makefile
#
|
|
# $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>
|