Difference between revisions of "Rdesktop"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://prdownloads.sourceforge.net/rdesktop/rdesktop-{{Rdesktop-Version}}.tar.gz |} ---- {{Package-Introd...) |
|||
(One intermediate revision by the same user not shown) | |||
Line 48: | Line 48: | ||
Compile the package: | Compile the package: | ||
+ | sed -i "/LIBS=/s@/lib@&32@g" configure && | ||
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
Line 60: | Line 61: | ||
Compile the package: | Compile the package: | ||
+ | sed -i "/LIBS=/s@/lib@&64@g" configure && | ||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | CC="gcc ${BUILD64}" USE_ARCH=64 \ | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
Line 67: | 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 |
---|
Contents
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