diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-24 09:43:52 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-24 09:43:52 +0100 |
commit | c9253253c1cb80fb8574c3d313a129b64b4ad2a1 (patch) | |
tree | 4f70a13eef59c3a7346760bf47dd29cd62926eac /package/synergy/Config.in | |
parent | fd2bd9e3df276301f867b05bd9f47ab3ab7b4ef4 (diff) | |
download | buildroot-novena-c9253253c1cb80fb8574c3d313a129b64b4ad2a1.tar.gz buildroot-novena-c9253253c1cb80fb8574c3d313a129b64b4ad2a1.zip |
synergy: fix build
Closes #3307
Synergy needs libXtst, a toolchain with wchar support and was missing
an include for exit().
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/synergy/Config.in')
-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 a2766b13e..7d8c54ece 100644 --- a/package/synergy/Config.in +++ b/package/synergy/Config.in @@ -2,6 +2,8 @@ config BR2_PACKAGE_SYNERGY bool "synergy" depends on BR2_PACKAGE_XORG7 depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_USE_WCHAR + select BR2_PACKAGE_XLIB_LIBXTST help Synergy lets you easily share a single mouse and keyboard between multiple computers with different @@ -10,5 +12,5 @@ config BR2_PACKAGE_SYNERGY http://synergy2.sourceforge.net/ -comment "synergy requires a toolchain with C++ support enabled" - depends on BR2_PACKAGE_XORG7 && !BR2_INSTALL_LIBSTDCPP +comment "synergy requires a toolchain with C++ and WCHAR support enabled" + depends on BR2_PACKAGE_XORG7 && !BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR |