53bf725ae1
This was needed during the IPSEC->FAST_IPSEC->IPSEC transition period to not break the build after picking up netipsec header files. Now that the FAST_IPSEC kernel option is gone and the default is IPSEC again those defines are superfluous. Approved by: re (rwatson)
17 lines
244 B
Makefile
17 lines
244 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ping6
|
|
MAN= ping6.8
|
|
|
|
CFLAGS+=-DIPSEC -DKAME_SCOPEID -DUSE_RFC2292BIS \
|
|
-DHAVE_POLL_H -DHAVE_ARC4RANDOM
|
|
WARNS?= 2
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
LDADD= -lipsec -lm -lmd
|
|
DPADD= ${LIBIPSEC} ${LIBM} ${LIBMD}
|
|
|
|
.include <bsd.prog.mk>
|