Config.in 726 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_SYNERGY
  2. bool "synergy"
  3. depends on BR2_PACKAGE_XORG7
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_USE_WCHAR
  6. depends on BR2_USE_MMU # fork()
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
  8. select BR2_PACKAGE_XLIB_LIBX11
  9. select BR2_PACKAGE_XLIB_LIBXTST
  10. help
  11. Synergy lets you easily share a single mouse and
  12. keyboard between multiple computers with different
  13. operating systems, each with its own display,
  14. without special hardware.
  15. https://github.com/symless/synergy-core/
  16. comment "synergy needs a toolchain w/ C++, wchar, gcc >= 4.9"
  17. depends on BR2_PACKAGE_XORG7
  18. depends on BR2_USE_MMU
  19. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
  20. BR2_TOOLCHAIN_GCC_AT_LEAST_4_9)