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...)
 
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 &&

Revision as of 17:17, 28 January 2008

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