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 ---- {{...)
 
 
(4 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://internap.dl.sourceforge.net/sourceforge/libvncserver/LibVNCServer-0.9.1.tar.gz
+
| http://downloads.sourceforge.net/sourceforge/libvncserver/LibVNCServer-{{LibVNCServer-Version}}.tar.gz
 
+
|}
 
----
 
----
  
Line 18: Line 18:
  
 
  make install
 
  make install
 
=== Command Explanations ===
 
  
 
== Multilib ==
 
== Multilib ==
Line 27: Line 25:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
+
  CC="gcc ${BUILD32}" USE_ARCH=32 \
 +
./configure --prefix=/usr &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/libvncserver-config{,-32}
  
 
=== N32 ===
 
=== N32 ===
Line 38: Line 38:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  CC="gcc ${BUILDN32}" USE_ARCH=n32 \
 +
./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  make libdir=/usr/lib32
 
  make libdir=/usr/lib32
  
 
Install the package
 
Install the package
  
  make libdir=/usr/lib32 install
+
  make libdir=/usr/lib32 install &&
 +
mv -v /usr/bin/libvncserver-config{,-n32}
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 49: Line 51:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  CC="gcc ${BUILD64}" USE_ARCH=64 \
 +
./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make libdir=/usr/lib64
 
  make libdir=/usr/lib64
  
 
Install the package
 
Install the package
  
  make libdir=/usr/lib64 install
+
  make libdir=/usr/lib64 install &&
 +
mv -v /usr/bin/libvncserver-config{,-64} &&
 +
ln -sfnv multiarch_wrapper /usr/bin/libvncserver-config

Latest revision as of 10:58, 7 September 2009

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 &&
mv -v /usr/bin/libvncserver-config{,-32}

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 &&
mv -v /usr/bin/libvncserver-config{,-n32}

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 &&
mv -v /usr/bin/libvncserver-config{,-64} &&
ln -sfnv multiarch_wrapper /usr/bin/libvncserver-config