ipmiutil: needs dynamic library support
authorBaruch Siach <baruch@tkos.co.il>
Tue, 29 Sep 2015 10:41:21 +0000 (13:41 +0300)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 29 Sep 2015 22:30:21 +0000 (00:30 +0200)
ipmiutil builds libipmiutil.so unconditionally.

Fixes:
http://autobuild.buildroot.net/results/e31/e31d94847cad9216aad839c2fbb312e9ea0ae75e/
http://autobuild.buildroot.net/results/5f3/5f3f32473186e6fa3a165b263f682047af8e291e/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/ipmiutil/Config.in

index a2a898b5c5eb1ef6780d5e7efd4cda94339f371d..9eb5452b6ce3c37d5081fd0cab0036de68dd8f1b 100644 (file)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_IPMIUTIL
        bool "ipmiutil"
        depends on BR2_USE_MMU
+       depends on !BR2_STATIC_LIBS
        depends on BR2_TOOLCHAIN_HAS_THREADS
        depends on BR2_x86_64 || BR2_i386
        help
@@ -11,7 +12,7 @@ config BR2_PACKAGE_IPMIUTIL
 
          http://ipmiutil.sourceforge.net/
 
-comment "ipmiutil needs a toolchain w/ threads"
+comment "ipmiutil needs a toolchain w/ threads, dynamic library"
        depends on BR2_USE_MMU
-       depends on !BR2_TOOLCHAIN_HAS_THREADS
+       depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
        depends on BR2_x86_64 || BR2_i386