Rdesktop: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 69: | Line 69: | ||
make install | make install | ||
[[Category:Network Applications]] | |||
Latest revision as of 16:25, 19 March 2009
| Download Source: | http://prdownloads.sourceforge.net/rdesktop/rdesktop-1.6.0.tar.gz |
|---|
Introduction to Rdesktop
rdesktop is an open source client for Windows NT Terminal Server and Windows 2000/2003 Terminal Services, capable of natively speaking Remote Desktop Protocol (RDP) in order to present the user's NT desktop. Unlike Citrix ICA, no server extensions are required.
Project Homepage: http://www.rdesktop.org/
Dependencies
Required
Optional
- libvncserver
- libao (Sound Support for RDP)
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
This package does not install any libraries so only one installation is needed.
32Bit
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make
Install the package
make install
N32
Compile the package:
sed -i "/LIBS=/s@/lib@&32@g" configure &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr &&
make
Install the package
make install
64Bit
Compile the package:
sed -i "/LIBS=/s@/lib@&64@g" configure &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr &&
make
Install the package
make install