mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Notable upstream pull request merges:
#12766 Fix error propagation from lzc_send_redacted
#12805 Updated the lz4 decompressor
#12851 FreeBSD: Provide correct file generation number
#12857 Verify dRAID empty sectors
#12874 FreeBSD: Update argument types for VOP_READDIR
#12896 Reduce number of arc_prune threads
#12934 FreeBSD: Fix zvol_*_open() locking
#12947 lz4: Cherrypick fix for CVE-2021-3520
#12961 FreeBSD: Fix leaked strings in libspl mnttab
#12964 Fix handling of errors from dmu_write_uio_dbuf() on FreeBSD
#12981 Introduce a flag to skip comparing the local mac when raw sending
#12985 Avoid memory allocations in the ARC eviction thread
Obtained from: OpenZFS
OpenZFS commit: 17b2ae0b24
36 lines
975 B
Makefile
36 lines
975 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/contrib/openzfs/lib/libzfsbootenv
|
|
.PATH: ${SRCTOP}/sys/contrib/openzfs/include
|
|
|
|
PACKAGE= runtime
|
|
LIB= zfsbootenv
|
|
SHLIB_MAJOR= 1
|
|
|
|
LIBADD= zfs
|
|
LIBADD+= nvpair
|
|
|
|
INCS= libzfsbootenv.h
|
|
USER_C= \
|
|
lzbe_device.c \
|
|
lzbe_util.c \
|
|
lzbe_pair.c
|
|
|
|
SRCS= $(USER_C)
|
|
|
|
CSTD= c99
|
|
CFLAGS+= -DIN_BASE
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/os/freebsd
|
|
CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
|
|
CFLAGS+= -include ${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl/sys/ccompile.h
|
|
CFLAGS+= -DHAVE_ISSETUGID
|
|
CFLAGS+= -include ${SRCTOP}/sys/modules/zfs/zfs_config.h
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/zfs
|
|
CFLAGS.lzbe_device.c= -Wno-cast-qual
|
|
CFLAGS.lzbe_util.c= -Wno-cast-qual
|
|
CFLAGS.lzbe_pair.c= -Wno-cast-qual
|
|
|
|
.include <bsd.lib.mk>
|