Rdesktop

From CBLFS
Jump to navigationJump to search
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

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