2943ddcf51
Add capsicum support to ping6, mostly copying the strategy used for ping. Submitted by: Ján Sučan <jansucan@gmail.com> Reviewed by: markj MFC after: 2 weeks Sponsored by: Google, inc. (Google Summer of Code 2019) Differential Revision: https://reviews.freebsd.org/D21050
26 lines
380 B
Makefile
26 lines
380 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= ping6
|
|
MAN= ping6.8
|
|
|
|
CFLAGS+=-DIPSEC -DKAME_SCOPEID
|
|
WARNS?= 3
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
LIBADD= ipsec m md
|
|
|
|
.if ${MK_DYNAMICROOT} == "no"
|
|
.warning ${PROG} built without libcasper support
|
|
.elif ${MK_CASPER} != "no" && !defined(RESCUE)
|
|
LIBADD+= casper
|
|
LIBADD+= cap_dns
|
|
CFLAGS+=-DWITH_CASPER
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|