mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 01:55:19 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
23 lines
434 B
Makefile
23 lines
434 B
Makefile
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/contrib/tcp_wrappers
|
|
|
|
PACKAGE= tcpd
|
|
|
|
PROG= tcpdchk
|
|
MAN= tcpdchk.8
|
|
SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c
|
|
|
|
CFLAGS+=-DREAL_DAEMON_DIR=\"${LIBEXECDIR}\" \
|
|
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DPROCESS_OPTIONS \
|
|
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
WARNS?= 0
|
|
|
|
LIBADD= wrap
|
|
|
|
.include <bsd.prog.mk>
|