Commit 0c28e36a authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

sconeserver: use BR2_TOOLCHAIN_HAS_THREADS_NPTL

parent fe061a98
Loading
Loading
Loading
Loading
+3 −9
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
	# pthread_setschedprio needs NPTL
	depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD
	# no NPTL for these archs
	depends on !BR2_avr32 && !BR2_xtensa && !BR2_arc
	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
	select BR2_PACKAGE_PCRE
	help
	  Sconeserver is a modular, object-orientated and extremely versatile
@@ -102,7 +98,5 @@ comment "ui module requires X.org"

endif # BR2_PACKAGE_SCONESERVER

comment "sconeserver needs a toolchain w/ C++, threads"
	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
	depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD
	depends on !BR2_avr32 && !BR2_xtensa && !BR2_arc
comment "sconeserver needs a toolchain w/ C++, NPTL"
	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS_NPTL)