From 70f27cd4dd7e1d1d852cba36b094d6dc066d927d Mon Sep 17 00:00:00 2001 From: ume Date: Fri, 14 Jul 2000 17:15:34 +0000 Subject: Add IPv6 scoped address support. It enables us to control link-local connections by interface like this: ALL : [fe80::%ed0]/10 : allow ALL : [fe80::]/10 : deny --- usr.sbin/tcpdchk/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'usr.sbin/tcpdchk') diff --git a/usr.sbin/tcpdchk/Makefile b/usr.sbin/tcpdchk/Makefile index 86639f7..3393011 100644 --- a/usr.sbin/tcpdchk/Makefile +++ b/usr.sbin/tcpdchk/Makefile @@ -11,7 +11,9 @@ 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\" -CFLAGS+=-DINET6 -DUSE_GETIPNODEBY +.if !defined(NOINET6) +CFLAGS+=-DINET6 +.endif DPADD= ${LIBWRAP} LDADD= -lwrap -- cgit v1.1