kumquat-buildroot/package/powerpc-utils/powerpc-utils.mk
Joel Stanley a1e4354d5d package/powerpc-utils: bump to v1.3.10
Since v1.3.9 the package requires numa.h from numctl, so add this as a
dependency.

librtas now builds fine with musl/uclibc too, so remove the glibc
restriction for enabling that support.

Drop 0001-add-includes-defines-for-musl-libc-support.patch which is
upstream as of 1.3.10.

Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-07-23 19:13:42 +02:00

27 lines
868 B
Makefile

################################################################################
#
# powerpc-utils
#
################################################################################
POWERPC_UTILS_VERSION = 1.3.10
POWERPC_UTILS_SITE = $(call github,ibm-power-utilities,powerpc-utils,v$(POWERPC_UTILS_VERSION))
POWERPC_UTILS_DEPENDENCIES = zlib numactl
POWERPC_UTILS_AUTORECONF = YES
POWERPC_UTILS_LICENSE = GPL-2.0+
POWERPC_UTILS_LICENSE_FILES = COPYING
POWERPC_UTILS_CPE_ID_VENDOR = powerpc-utils_project
POWERPC_UTILS_CONF_ENV = \
ax_cv_check_cflags___fstack_protector_all=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no)
POWERPC_UTILS_CONF_OPTS = --disable-werror
ifeq ($(BR2_PACKAGE_POWERPC_UTILS_RTAS),y)
POWERPC_UTILS_DEPENDENCIES += librtas
POWERPC_UTILS_CONF_OPTS += --with-librtas
else
POWERPC_UTILS_CONF_OPTS += --without-librtas
endif
$(eval $(autotools-package))