f95d46333d
(aka RFC2292bis). Though I believe this commit doesn't break backward compatibility againt existing binaries, it breaks backward compatibility of API. Now, the applications which use Advanced Sockets API such as telnet, ping6, mld6query and traceroute6 use RFC3542 API. Obtained from: KAME
17 lines
251 B
Makefile
17 lines
251 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ping6
|
|
MAN= ping6.8
|
|
|
|
CFLAGS+=-DINET6 -DIPSEC -DKAME_SCOPEID -DUSE_RFC2292BIS \
|
|
-DHAVE_POLL_H -DHAVE_ARC4RANDOM
|
|
WARNS= 0
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
LDADD= -lipsec -lm -lmd
|
|
DPADD= ${LIBIPSEC} ${LIBM} ${LIBMD}
|
|
|
|
.include <bsd.prog.mk>
|