mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
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)
16 lines
244 B
Makefile
16 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>
|