mirror of
https://github.com/opnsense/src.git
synced 2026-04-13 21:36:47 -04:00
Reviewed by: emaste, arichardson, jhb Differential Revision: https://reviews.freebsd.org/D43236 (cherry picked from commit 2cadbe468a8e8aef193429565b729d34ec48b266)
22 lines
389 B
Makefile
22 lines
389 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/contrib/tcp_wrappers
|
|
|
|
PACKAGE= tcpd
|
|
|
|
PROG= tcpd
|
|
MAN= tcpd.8
|
|
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>
|