mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 17:05:14 -04:00
Create a casper service for netdb functions. Initially only cap_getprotobyname is implemented. This is needed for capsicumizing sockstat. Reviewed by: oshogbo, bcr (manpages) Relnotes: yes Differential Revision: https://reviews.freebsd.org/D24832
14 lines
187 B
Makefile
14 lines
187 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
ATF_TESTS_C= netdb_test
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
LIBADD+= casper
|
|
LIBADD+= cap_netdb
|
|
CFLAGS+=-DWITH_CASPER
|
|
.endif
|
|
LIBADD+= nv
|
|
|
|
.include <bsd.test.mk>
|