All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/gvfs: needs dynamic library
@ 2020-07-15 19:52 Fabrice Fontaine
  2020-07-15 19:59 ` Christian Stewart
  2020-07-15 21:35 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2020-07-15 19:52 UTC (permalink / raw)
  To: buildroot

Since commit 35e240105f1db3e91fb769616efd8bdb90fb1b24, gvfs needs
dynamic library as it uses shared_module to build libgvfs_dbus and
libgioremote_volume_monitor

Fixes:
 - http://autobuild.buildroot.org/results/89a02fda05e75bfc9bd4fa17fea3bec23fd5da3d

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/docker-engine/Config.in | 1 +
 package/gvfs/Config.in          | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/package/docker-engine/Config.in b/package/docker-engine/Config.in
index 1fd229fcbb..fcbccbd5c0 100644
--- a/package/docker-engine/Config.in
+++ b/package/docker-engine/Config.in
@@ -44,6 +44,7 @@ config BR2_PACKAGE_DOCKER_ENGINE_DRIVER_VFS
 	depends on BR2_USE_WCHAR # gvfs
 	depends on BR2_USE_MMU # gvfs
 	depends on BR2_TOOLCHAIN_HAS_THREADS # gvfs
+	depends on !BR2_STATIC_LIBS # gvfs
 	select BR2_PACKAGE_GVFS
 	help
 	  Build the vfs filesystem driver for Docker.
diff --git a/package/gvfs/Config.in b/package/gvfs/Config.in
index 78280f80e0..5a6b3e73ec 100644
--- a/package/gvfs/Config.in
+++ b/package/gvfs/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_GVFS
 	depends on BR2_USE_WCHAR # glib2
 	depends on BR2_USE_MMU # dbus, glib2
 	depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, glib2
+	depends on !BR2_STATIC_LIBS
 	select BR2_PACKAGE_GSETTINGS_DESKTOP_SCHEMAS
 	select BR2_PACKAGE_LIBGLIB2
 	select BR2_PACKAGE_DBUS
@@ -16,6 +17,7 @@ config BR2_PACKAGE_GVFS
 
 	  https://wiki.gnome.org/action/show/Projects/gvfs
 
-comment "gvfs needs a toolchain w/ wchar, threads"
+comment "gvfs needs a toolchain w/ wchar, threads, dynamic library"
 	depends on BR2_USE_MMU
-	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
+		!BR2_STATIC_LIBS
-- 
2.27.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-07-15 21:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15 19:52 [Buildroot] [PATCH 1/1] package/gvfs: needs dynamic library Fabrice Fontaine
2020-07-15 19:59 ` Christian Stewart
2020-07-15 21:35 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.