mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
Notable upstream pull request merges: #15892 -multiple Fast Dedup: Introduce the FDT on-disk format and feature flag #15893 -multiple Fast Dedup: “flat” DDT entry format #15895 -multiple Fast Dedup: FDT-log feature #162396be8bf555zpool: Provide GUID to zpool-reguid(8) with -g #16277 -multiple Fast Dedup: prune unique entries #163165807de90aFix null ptr deref when renaming a zvol with snaps and snapdev=visible #1634377a797a38Enable L2 cache of all (MRU+MFU) metadata but MFU data only #1644683f359245FreeBSD: fix build without kernel option MAC #16449963e6c9f3Fix incorrect error report on vdev attach/replace #16505b10992582spa_prop_get: require caller to supply output nvlist Obtained from: OpenZFS OpenZFS commit:b109925820
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
.include <src.opts.mk>
|
|
|
|
PROG= fstyp
|
|
SRCS= apfs.c befs.c cd9660.c exfat.c ext2fs.c fstyp.c geli.c hammer.c \
|
|
hammer2.c hfsplus.c msdosfs.c ntfs.c ufs.c
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
SRCS += zfs.c
|
|
.endif
|
|
|
|
MAN= fstyp.8
|
|
|
|
.if ${MK_ICONV} == "yes"
|
|
CFLAGS+= -DWITH_ICONV
|
|
.endif
|
|
|
|
.include <bsd.endian.mk>
|
|
|
|
.if ${TARGET_ENDIANNESS} == 1234
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
IGNORE_PRAGMA= YES
|
|
|
|
CFLAGS+= -DHAVE_ZFS
|
|
CFLAGS.zfs.c+= -DIN_BASE
|
|
CFLAGS.zfs.c+= -I${SRCTOP}/sys/contrib/openzfs/include
|
|
CFLAGS.zfs.c+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include
|
|
CFLAGS.zfs.c+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/os/freebsd
|
|
CFLAGS.zfs.c+= -I${SRCTOP}/sys/contrib/openzfs/lib/libzpool/include
|
|
CFLAGS.zfs.c+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
|
|
CFLAGS.zfs.c+= -include ${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl/sys/ccompile.h
|
|
CFLAGS.zfs.c+= -DHAVE_ISSETUGID
|
|
CFLAGS.zfs.c+= -include ${SRCTOP}/sys/modules/zfs/zfs_config.h
|
|
CFLAGS.zfs.c+= -Wno-cast-qual
|
|
.endif
|
|
|
|
.for src in ${SRCS}
|
|
.if ${src} != "zfs.c"
|
|
CFLAGS.${src}+=-I${SRCTOP}/sys
|
|
.endif
|
|
.endfor
|
|
|
|
|
|
LIBADD= geom md ufs
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
LIBADD+=nvpair zfs spl
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|