diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-10-29 16:35:33 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-10-30 21:00:35 +0100 |
commit | 54000d187a291f295d74ad23d16eeabc50ff23ea (patch) | |
tree | 1500294896bca380f5d492746c9675ac3689b104 | |
parent | 87187d5c994c98537866bb7e10d16606b0eb738a (diff) | |
download | buildroot-54000d187a291f295d74ad23d16eeabc50ff23ea.tar.gz buildroot-54000d187a291f295d74ad23d16eeabc50ff23ea.zip |
synergy: needs gcc >= 4.9
Since version 1.9.0 and
https://github.com/symless/synergy-core/commit/c0376e9e2f659aec23a748f9a8d8ee6cd82f1281,
synergy needs C++14 so add a dependency on
BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
Fixes:
- http://autobuild.buildroot.org/results/c4646ee9342ea8bd906bfe2b29996c48cb403ccc
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Tested-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com>
Reviewed-by: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/synergy/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/synergy/Config.in b/package/synergy/Config.in index e0ac246155..c1216c4ba9 100644 --- a/package/synergy/Config.in +++ b/package/synergy/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_SYNERGY depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on BR2_USE_MMU # fork() + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14 select BR2_PACKAGE_XLIB_LIBX11 select BR2_PACKAGE_XLIB_LIBXTST help @@ -14,7 +15,8 @@ config BR2_PACKAGE_SYNERGY https://github.com/symless/synergy-core/ -comment "synergy needs a toolchain w/ C++, wchar" +comment "synergy needs a toolchain w/ C++, wchar, gcc >= 4.9" depends on BR2_PACKAGE_XORG7 depends on BR2_USE_MMU - depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR) + depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \ + BR2_TOOLCHAIN_GCC_AT_LEAST_4_9) |