Browse Source

package/gvfs: needs dynamic library

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>
Acked-by: Christian Stewart <christian@paral.in>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice Fontaine 5 years ago
parent
commit
4266c9f54f
2 changed files with 5 additions and 2 deletions
  1. 1 0
      package/docker-engine/Config.in
  2. 4 2
      package/gvfs/Config.in

+ 1 - 0
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.

+ 4 - 2
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