Difference between revisions of "Synergy2"
From CBLFS
Jump to navigationJump to searchLine 26: | Line 26: | ||
== Multilib == | == Multilib == | ||
− | + | '''''This package does not provide any libraries so only one installation is required.''''' | |
− | |||
=== 32Bit === | === 32Bit === | ||
Line 33: | Line 32: | ||
Compile the package: | Compile the package: | ||
+ | CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
Line 44: | Line 44: | ||
Compile the package: | Compile the package: | ||
+ | |||
+ | CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
Line 55: | Line 57: | ||
Compile the package: | Compile the package: | ||
+ | |||
+ | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make |
Revision as of 09:17, 20 September 2008
Download Source: | http://downloads.sourceforge.net/synergy2/synergy-1.3.1.tar.gz |
---|
Contents
Introduction to Synergy2
ynergy lets you easily share a single mouse and keyboard between multiple computers with different operating systems, each with its own display, without special hardware. It's intended for users with multiple computers on their desk since each system uses its own monitor(s).
Project Homepage: http://synergy2.sourceforge.net/
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
This package does not provide any libraries so only one installation is required.
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ ./configure --prefix=/usr && make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ ./configure --prefix=/usr && make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ ./configure --prefix=/usr && make
Install the package:
make install