diff options
author | 1999-12-30 16:19:31 +0000 | |
---|---|---|
committer | 1999-12-30 16:19:31 +0000 | |
commit | c89d62be1cd8bca69761fcc5596ec397c94bab7d (patch) | |
tree | c6dc4ff8d6e8e8d37c8dbc07717ef20b28698481 | |
parent | replace NRL get{addr,name}info with KAME get{addr,name}info. (diff) | |
download | wireguard-openbsd-c89d62be1cd8bca69761fcc5596ec397c94bab7d.tar.xz wireguard-openbsd-c89d62be1cd8bca69761fcc5596ec397c94bab7d.zip |
enable KAME scopeid hack (print link-local addresses with scope identifier
like "fe80::1@de0").
-rw-r--r-- | sbin/ifconfig/Makefile | 4 | ||||
-rw-r--r-- | sbin/ping6/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/netstat/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sbin/ifconfig/Makefile b/sbin/ifconfig/Makefile index 9584521cda3..395452430e2 100644 --- a/sbin/ifconfig/Makefile +++ b/sbin/ifconfig/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1999/12/08 07:45:30 itojun Exp $ +# $OpenBSD: Makefile,v 1.5 1999/12/30 16:19:31 itojun Exp $ PROG= ifconfig MAN= ifconfig.8 @@ -6,6 +6,6 @@ MAN= ifconfig.8 CPPFLAGS+=-DINET6 # kame scopeid hack -#CPPFLAGS+=-DKAME_SCOPEID +CPPFLAGS+=-DKAME_SCOPEID .include <bsd.prog.mk> diff --git a/sbin/ping6/Makefile b/sbin/ping6/Makefile index 5606a8789db..d2097853dc6 100644 --- a/sbin/ping6/Makefile +++ b/sbin/ping6/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1999/12/11 08:43:19 itojun Exp $ +# $OpenBSD: Makefile,v 1.2 1999/12/30 16:19:32 itojun Exp $ PROG= ping6 MAN= ping6.8 @@ -12,6 +12,6 @@ BINMODE=4555 CPPFLAGS+=-DNRL_GETADDRINFO # kame scopeid hack -#CPPFLAGS+=-DKAME_SCOPEID +CPPFLAGS+=-DKAME_SCOPEID .include <bsd.prog.mk> diff --git a/usr.bin/netstat/Makefile b/usr.bin/netstat/Makefile index 521acd59df2..056b388ea96 100644 --- a/usr.bin/netstat/Makefile +++ b/usr.bin/netstat/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1999/12/08 12:30:17 itojun Exp $ +# $OpenBSD: Makefile,v 1.7 1999/12/30 16:19:32 itojun Exp $ PROG= netstat SRCS= if.c inet.c ipx.c iso.c main.c mbuf.c mroute.c ns.c route.c \ @@ -10,6 +10,6 @@ LDADD= -lkvm DPADD= ${LIBKVM} CPPFLAGS+= -DINET6 -#CPPFLAGS+= -DKAME_SCOPEID +CPPFLAGS+= -DKAME_SCOPEID .include <bsd.prog.mk> |