bb7bd0cc4f
- Drop patches (already in version) - liberofs is now released under GPL-2.0+ OR Apache-2.0 license: https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=49b344c5531a7819f282b0b1b6eb01682c0e41ae - This bump will fix the following build failure on or1k thanks to https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=100cae2b98a70ac69ae7a09ed94f86ddf8c89fe2 In file included from ../include/erofs/cache.h:11, from cache.c:9: ../include/erofs/internal.h:34:2: error: #error incompatible PAGE_SIZE is already defined 34 | #error incompatible PAGE_SIZE is already defined | ^~~~~ https://lists.ozlabs.org/pipermail/linux-erofs/2022-June/006462.html Fixes: - http://autobuild.buildroot.org/results/755f8d736b8ad96b213bb3975b26f1143e60e5b5 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Gao Xiang <hsiangkao@aol.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# erofs-utils
|
|
#
|
|
################################################################################
|
|
|
|
EROFS_UTILS_VERSION = 1.5
|
|
EROFS_UTILS_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot
|
|
EROFS_UTILS_LICENSE = GPL-2.0+, GPL-2.0+ or Apache-2.0 (liberofs)
|
|
EROFS_UTILS_LICENSE_FILES = COPYING LICENSES/Apache-2.0 LICENSES/GPL-2.0
|
|
|
|
# From a git tree: no generated autotools files
|
|
EROFS_UTILS_AUTORECONF = YES
|
|
|
|
EROFS_UTILS_DEPENDENCIES = host-pkgconf util-linux
|
|
|
|
ifeq ($(BR2_PACKAGE_EROFS_UTILS_LZ4),y)
|
|
EROFS_UTILS_DEPENDENCIES += lz4
|
|
EROFS_UTILS_CONF_OPTS += --enable-lz4
|
|
else
|
|
EROFS_UTILS_CONF_OPTS += --disable-lz4
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
EROFS_UTILS_CONF_OPTS += --with-selinux
|
|
EROFS_UTILS_DEPENDENCIES += libselinux
|
|
else
|
|
EROFS_UTILS_CONF_OPTS += --without-selinux
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_EROFS_UTILS_EROFSFUSE),y)
|
|
EROFS_UTILS_CONF_OPTS += --enable-fuse
|
|
EROFS_UTILS_DEPENDENCIES += libfuse
|
|
else
|
|
EROFS_UTILS_CONF_OPTS += --disable-fuse
|
|
endif
|
|
|
|
HOST_EROFS_UTILS_DEPENDENCIES = host-pkgconf host-util-linux host-lz4
|
|
HOST_EROFS_UTILS_CONF_OPTS += --enable-lz4 --disable-fuse --without-selinux
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|