mirror of
https://github.com/opnsense/src.git
synced 2026-03-17 08:02:24 -04:00
Instead of passing flags (which describe a type of nvlist) every send/recv we remember them in channel. It's enough for use to extract them only during unwrap. This simplify use of Casper. Reviewed by: bruffer@, bcr@ (both man page) Differential Revision: https://reviews.freebsd.org/D14196 (man page)
29 lines
370 B
Makefile
29 lines
370 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR?= /lib/casper
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=libcasper
|
|
|
|
SHLIB_MAJOR= 1
|
|
INCSDIR?= ${INCLUDEDIR}/casper
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
SHLIB= cap_random
|
|
|
|
SRCS= cap_random.c
|
|
.endif
|
|
|
|
INCS= cap_random.h
|
|
|
|
LIBADD= nv
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
|
|
MAN+= cap_random.3
|
|
|
|
MLINKS+=cap_random.3 libcap_random.3
|
|
MLINKS+=cap_random.3 cap_random_buf.3
|
|
|
|
.include <bsd.lib.mk>
|