* [Buildroot] [PATCH 1/1] package/zchunk: needs argp
@ 2021-12-28 10:35 Fabrice Fontaine
2021-12-28 12:55 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-12-28 10:35 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Fabrice Fontaine
Fix the following build failure raised since the addition of the package
in commit c618da772df32679fdd338b99f44133655c9113f:
../output-1/build/zchunk-1.1.16/meson.build:35:4: ERROR: C shared or static library 'argp' not found
Fixes:
- http://autobuild.buildroot.org/results/f82d06e95ac497aa8215268a7a58e929a05b32e3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/zchunk/Config.in | 1 +
package/zchunk/zchunk.mk | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/package/zchunk/Config.in b/package/zchunk/Config.in
index d610e15997..2c8db434ce 100644
--- a/package/zchunk/Config.in
+++ b/package/zchunk/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_ZCHUNK
bool "zchunk"
+ select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
select BR2_PACKAGE_LIBCURL
help
A file format designed for highly efficient deltas while
diff --git a/package/zchunk/zchunk.mk b/package/zchunk/zchunk.mk
index d8538542f1..6f7ac799a0 100644
--- a/package/zchunk/zchunk.mk
+++ b/package/zchunk/zchunk.mk
@@ -9,7 +9,9 @@ ZCHUNK_SITE = $(call github,zchunk,zchunk,$(ZCHUNK_VERSION))
ZCHUNK_LICENSE = BSD-2-Clause
ZCHUNK_LICENSE_FILES = LICENSE
ZCHUNK_INSTALL_STAGING = YES
-ZCHUNK_DEPENDENCIES = libcurl
+ZCHUNK_DEPENDENCIES = \
+ libcurl \
+ $(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone)
ifeq ($(BR2_PACKAGE_OPENSSL),y)
ZCHUNK_DEPENDENCIES += openssl
--
2.33.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-12-28 12:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-28 10:35 [Buildroot] [PATCH 1/1] package/zchunk: needs argp Fabrice Fontaine
2021-12-28 12:55 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox