sconeserver: requires thread support
authorSimon Dawson <spdawson@gmail.com>
Sun, 2 Jun 2013 20:57:24 +0000 (20:57 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Mon, 3 Jun 2013 07:15:19 +0000 (09:15 +0200)
Fixes autobuild failures such as the following.

  http://autobuild.buildroot.net/results/a290aa34bd44c0e08f7aa44a7c606420668eef6d/

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/sconeserver/Config.in

index 0fc3a13efbb2ccd025dc09b497d8d7f906f4e2f8..a4674762331cb82f771108aa78b767d5a5490ac5 100644 (file)
@@ -1,6 +1,7 @@
 menuconfig BR2_PACKAGE_SCONESERVER
        bool "sconeserver"
        depends on BR2_INSTALL_LIBSTDCPP
+       depends on BR2_TOOLCHAIN_HAS_THREADS
        select BR2_PACKAGE_PCRE
        help
          Sconeserver is a modular, object-orientated and extremely versatile
@@ -90,5 +91,5 @@ comment "ui module requires X.org"
 
 endif # BR2_PACKAGE_SCONESERVER
 
-comment "sconeserver requires a toolchain with C++ support enabled"
-       depends on !BR2_INSTALL_LIBSTDCPP
+comment "sconeserver requires a toolchain with C++ and thread support enabled"
+       depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)