Commit a0c5fb4f authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

sconeserver: requires thread support

parent 7e50472c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
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)