Commit 036377c9 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

synergy: fix comment dependencies



Show comment if either C++ or wchar isn't available, not only if both
aren't.

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 6855bd34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,4 +13,4 @@ config BR2_PACKAGE_SYNERGY
	  http://synergy2.sourceforge.net/

comment "synergy requires a toolchain with C++ and WCHAR support enabled"
	depends on BR2_PACKAGE_XORG7 && !BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR
	depends on BR2_PACKAGE_XORG7 && !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)