mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Notable upstream pull request merges:
#13725 Fix BLAKE3 tuneable and module loading on Linux and FreeBSD
#13756 FreeBSD: Organize sysctls
#13773 FreeBSD: add kqfilter support for zvol cdev
#13781 Importing from cachefile can trip assertion
#13794 Apply arc_shrink_shift to ARC above arc_c_min
#13798 Improve too large physical ashift handling
#13799 Revert "Avoid panic with recordsize > 128k, raw sending and
no large_blocks"
#13802 Add zfs.sync.snapshot_rename
#13831 zfs_enter rework
#13855 zfs recv hangs if max recordsize is less than received
recordsize
Obtained from: OpenZFS
OpenZFS commit: c629f0bf62
28 lines
537 B
Makefile
28 lines
537 B
Makefile
libuutil_la_CFLAGS = $(AM_CFLAGS) $(LIBRARY_CFLAGS) $(LIBRARY_CFLAGS)
|
|
|
|
lib_LTLIBRARIES += libuutil.la
|
|
CPPCHECKTARGETS += libuutil.la
|
|
|
|
libuutil_la_SOURCES = \
|
|
%D%/uu_alloc.c \
|
|
%D%/uu_avl.c \
|
|
%D%/uu_ident.c \
|
|
%D%/uu_list.c \
|
|
%D%/uu_misc.c \
|
|
%D%/uu_string.c
|
|
|
|
libuutil_la_LIBADD = \
|
|
libavl.la \
|
|
libspl.la
|
|
|
|
libuutil_la_LIBADD += $(LTLIBINTL)
|
|
|
|
libuutil_la_LDFLAGS = -pthread
|
|
|
|
if !ASAN_ENABLED
|
|
libuutil_la_LDFLAGS += -Wl,-z,defs
|
|
endif
|
|
|
|
libuutil_la_LDFLAGS += -version-info 3:0:0
|
|
|
|
dist_noinst_DATA += %D%/libuutil.abi %D%/libuutil.suppr
|