mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-23 16:41:09 +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
399 B
Makefile
23 lines
399 B
Makefile
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/contrib/tcp_wrappers
|
|
|
|
PACKAGE= tcpd
|
|
|
|
PROG= tcpd
|
|
MAN= tcpd.8
|
|
CSTD?= c89
|
|
CFLAGS+=-DREAL_DAEMON_DIR=\"${LIBEXECDIR}\" \
|
|
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
|
|
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
|
|
-DFACILITY=LOG_DAEMON
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
LIBADD= wrap
|
|
|
|
WARNS?= 1
|
|
|
|
.include <bsd.prog.mk>
|