From 4bcbf467c307a8bb07e7937ebf4b35e27eb66305 Mon Sep 17 00:00:00 2001 From: Maksim Kiselev Date: Tue, 16 May 2023 11:23:40 +0300 Subject: [PATCH] package/fio: add optional libiscsi dependency Since commit 247ef2a fio has optional libiscsi engine support This patch enables fio iscsi support if BR2_PACKAGE_LIBISCSI was selected, which also requires pkg-config as it is used by the configure script to detect libiscsi. There is no --disable-libscsi option in the configure script: if --enable-libiscsi is not passed, it doesn't even try to detect/use libiscsi. Signed-off-by: Maksim Kiselev Signed-off-by: Thomas Petazzoni --- package/fio/fio.mk | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package/fio/fio.mk b/package/fio/fio.mk index 90ec407207..b1763d6c73 100644 --- a/package/fio/fio.mk +++ b/package/fio/fio.mk @@ -9,6 +9,8 @@ FIO_SITE = http://brick.kernel.dk/snaps FIO_LICENSE = GPL-2.0 FIO_LICENSE_FILES = COPYING MORAL-LICENSE +FIO_OPTS = --cc="$(TARGET_CC)" --extra-cflags="$(TARGET_CFLAGS)" + ifeq ($(BR2_PACKAGE_LIBAIO),y) FIO_DEPENDENCIES += libaio endif @@ -17,6 +19,11 @@ ifeq ($(BR2_PACKAGE_LIBNFS),y) FIO_DEPENDENCIES += libnfs endif +ifeq ($(BR2_PACKAGE_LIBISCSI),y) +FIO_OPTS += --enable-libiscsi +FIO_DEPENDENCIES += host-pkgconf libiscsi +endif + ifeq ($(BR2_PACKAGE_NUMACTL),y) FIO_DEPENDENCIES += numactl endif @@ -26,7 +33,7 @@ FIO_DEPENDENCIES += zlib endif define FIO_CONFIGURE_CMDS - (cd $(@D); $(TARGET_MAKE_ENV) ./configure --cc="$(TARGET_CC)" --extra-cflags="$(TARGET_CFLAGS)") + (cd $(@D); $(TARGET_MAKE_ENV) ./configure $(FIO_OPTS)) endef define FIO_BUILD_CMDS