]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
libupnp: requires threads
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 27 Feb 2013 00:27:04 +0000 (00:27 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Wed, 27 Feb 2013 10:56:46 +0000 (11:56 +0100)
Fixes:
http://autobuild.buildroot.net/results/ac5a18a6241d36a751cce1867c4da63047eafbaa/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/libupnp/Config.in
package/ushare/Config.in

index 2e6edcdb5a886692d8fe8f6c7691be3aae33af0f..52fa73920326e9c76084495a3165ee581467ff09 100644 (file)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_LIBUPNP
        bool "libupnp"
        depends on BR2_LARGEFILE
+       depends on BR2_TOOLCHAIN_HAS_THREADS
        help
          The portable SDK for UPnP(tm) Devices (libupnp) provides developers
          with an API and open source code for building control points,
@@ -9,5 +10,5 @@ config BR2_PACKAGE_LIBUPNP
 
          http://pupnp.sourceforge.net/
 
-comment "libupnp requires a toolchain with LARGEFILE support"
-       depends on !BR2_LARGEFILE
+comment "libupnp requires a toolchain with LARGEFILE and thread support"
+       depends on !(BR2_LARGEFILE && BR2_TOOLCHAIN_HAS_THREADS)
index f7b2124de753a390e5b2138c572014b94ca757dd..5b87087280c5b295cbb6ea59f465979fdf0f5637 100644 (file)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_USHARE
        bool "ushare"
        depends on BR2_LARGEFILE
+       depends on BR2_TOOLCHAIN_HAS_THREADS # libupnp
        select BR2_PACKAGE_LIBUPNP
        select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
        help
@@ -10,5 +11,5 @@ config BR2_PACKAGE_USHARE
 
          http://ushare.geexbox.org/
 
-comment "ushare requires a toolchain with LARGEFILE support"
-       depends on !BR2_LARGEFILE
+comment "ushare requires a toolchain with LARGEFILE and thread support"
+       depends on !(BR2_LARGEFILE && BR2_TOOLCHAIN_HAS_THREADS)