ntfs-3g: uses dlopen(), not available on static builds
authorPeter Korsgaard <peter@korsgaard.com>
Thu, 4 Jun 2015 12:26:09 +0000 (14:26 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Thu, 4 Jun 2015 12:26:09 +0000 (14:26 +0200)
Fixes:
http://autobuild.buildroot.net/results/722/7227d5f01755affa2a234eedd8d1fc8c826395c7/

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/ntfs-3g/Config.in

index 36e8ab85d5bc18a2c1c1643d5fdc03b2a35dc108..a860498d64c1962926a1ae0f07e8f9a3b6449cba 100644 (file)
@@ -3,6 +3,7 @@ config BR2_PACKAGE_NTFS_3G
        depends on BR2_USE_WCHAR
        depends on BR2_TOOLCHAIN_HAS_THREADS
        depends on BR2_USE_MMU
+       depends on !BR2_STATIC_LIBS
        help
          The NTFS-3G driver is an open source, freely available
          read/write NTFS driver for Linux, FreeBSD, Mac OS X, NetBSD,
@@ -29,6 +30,6 @@ config BR2_PACKAGE_NTFS_3G_NTFSPROGS
 
 endif
 
-comment "ntfs-3g needs a toolchain w/ wchar, threads"
+comment "ntfs-3g 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)