de8db47547
* RFC 3542 isn't binary compatible with RFC 2292. * RFC 2292 support is on by default but can be disabled. * update ping6, telnet and traceroute6 to the new API. From the KAME project (www.kame.net). Reviewed by core.
17 lines
258 B
Makefile
17 lines
258 B
Makefile
# $NetBSD: Makefile,v 1.6 2006/05/05 00:03:22 rpaulo Exp $
|
|
|
|
PROG= traceroute6
|
|
MAN= traceroute6.8
|
|
|
|
BINMODE=4555
|
|
BINOWN= root
|
|
|
|
CPPFLAGS+=-DINET6 -DIPSEC
|
|
CPPFLAGS+=-DUSE_RFC3542
|
|
LDADD+= -lipsec
|
|
DPADD+= ${LIBIPSEC}
|
|
|
|
CPPFLAGS+=-DHAVE_POLL
|
|
|
|
.include <bsd.prog.mk>
|