From mboxrd@z Thu Jan 1 00:00:00 1970 From: Romain Naour Date: Mon, 17 May 2021 17:56:27 +0200 Subject: [Buildroot] [PATCHv2 2/3] package/poke: add optional json-c dependency In-Reply-To: <20210517155628.267749-1-romain.naour@gmail.com> References: <20210517155628.267749-1-romain.naour@gmail.com> Message-ID: <20210517155628.267749-2-romain.naour@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net >From [1]: "The poke machine-interface uses a protocol to communicate with clients, which is based on JSON. poke uses the json-c library to parse and build JSON strings. If this library is not found, poke will build without machine-interface support." [1] https://git.savannah.nongnu.org/cgit/poke.git/tree/DEPENDENCIES?h=releases/poke-1.2#n55 Signed-off-by: Romain Naour Cc: Jose E. Marchesi Cc: Luca Saiu Signed-off-by: Romain Naour --- package/poke/poke.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/poke/poke.mk b/package/poke/poke.mk index c0217b6fad..7c3c81d93c 100644 --- a/package/poke/poke.mk +++ b/package/poke/poke.mk @@ -19,7 +19,13 @@ POKE_DEPENDENCIES = host-flex host-bison host-pkgconf bdwgc readline POKE_CONF_OPTS = \ --disable-gui \ --disable-libnbd \ - --disable-mi \ --with-libreadline-prefix=$(STAGING_DIR) +ifeq ($(BR2_PACKAGE_JSON_C),y) +POKE_DEPENDENCIES += json-c +POKE_CONF_OPTS += --enable-mi +else +POKE_CONF_OPTS += --disable-mi +endif + $(eval $(autotools-package)) -- 2.31.1