Difference between revisions of "Libvncserver"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | http://internap.dl.sourceforge.net/sourceforge/libvncserver/LibVNCServer-0.9.1.tar.gz ---- {{...) |
|||
Line 3: | Line 3: | ||
!Download Source: | !Download Source: | ||
| http://internap.dl.sourceforge.net/sourceforge/libvncserver/LibVNCServer-0.9.1.tar.gz | | http://internap.dl.sourceforge.net/sourceforge/libvncserver/LibVNCServer-0.9.1.tar.gz | ||
− | + | |} | |
---- | ---- | ||
Revision as of 07:49, 26 July 2008
Download Source: | http://internap.dl.sourceforge.net/sourceforge/libvncserver/LibVNCServer-0.9.1.tar.gz |
---|
Contents
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
Command Explanations
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./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}" ./configure --prefix=/usr --libdir=/usr/lib64 && make libdir=/usr/lib64
Install the package
make libdir=/usr/lib64 install