Libvncserver

From CBLFS
Revision as of 10:01, 30 August 2009 by Jim (talk | contribs)
Jump to navigationJump to search
Download Source: http://downloads.sourceforge.net/sourceforge/libvncserver/LibVNCServer-0.9.7.tar.gz

Introduction to Libvncserver

Libvncserver is a library developed for writing VNC servers and clients using the RFB (Remote FrameBuffer) protocol.

Project Homepage: http://libvncserver.sourceforge.net/

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make libdir=/usr/lib32

Install the package

make libdir=/usr/lib32 install

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make libdir=/usr/lib64

Install the package

make libdir=/usr/lib64 install