1config 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 16 https://github.com/symless/synergy-core/ 17 18comment "synergy needs a toolchain w/ C++, wchar, gcc >= 4.9" 19 depends on BR2_PACKAGE_XORG7 20 depends on BR2_USE_MMU 21 depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \ 22 BR2_TOOLCHAIN_GCC_AT_LEAST_4_9) 23