mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
42a8595256
giving access to functionality that is not available in capability mode sandbox. The functionality can be precisely restricted. Start with the following services: - system.dns - provides API compatible to: - gethostbyname(3), - gethostbyname2(3), - gethostbyaddr(3), - getaddrinfo(3), - getnameinfo(3), - system.grp - provides getgrent(3)-compatible API, - system.pwd - provides getpwent(3)-compatible API, - system.random - allows to obtain entropy from /dev/random, - system.sysctl - provides sysctlbyname(3-compatible API. Sponsored by: The FreeBSD Foundation
19 lines
394 B
Makefile
19 lines
394 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= casperd
|
|
|
|
SRCS= casperd.c zygote.c
|
|
|
|
DPADD= ${LIBCAPSICUM} ${LIBCASPER} ${LIBNV} ${LIBPJDLOG} ${LIBUTIL}
|
|
LDADD= -lcapsicum -lcasper -lnv -lpjdlog -lutil
|
|
|
|
MAN= casperd.8
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
CFLAGS+=-I${.CURDIR}/../../lib/libcapsicum
|
|
CFLAGS+=-I${.CURDIR}/../../lib/libcasper
|
|
CFLAGS+=-I${.CURDIR}/../../lib/libnv
|
|
CFLAGS+=-I${.CURDIR}/../../lib/libpjdlog
|
|
|
|
.include <bsd.prog.mk>
|