From 34188366a91c0748a22d55ada87fb8c0a030e7ee Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 2 Mar 2011 01:42:18 -0800 Subject: [PATCH] Added README for libguac-client-vnc --- protocols/vnc/README | 75 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/protocols/vnc/README b/protocols/vnc/README index e69de29b..b716305b 100644 --- a/protocols/vnc/README +++ b/protocols/vnc/README @@ -0,0 +1,75 @@ + +------------------------------------------------------------ + About this README +------------------------------------------------------------ + +This README is intended to provide quick and to-the-point documentation for +technical users intending to compile parts of Guacamole themselves. + +Distribution-specific packages are available from the files section of the main +project page: + + http://sourceforge.net/projects/guacamole/files/ + +Distribution-specific documentation is provided on the Guacamole wiki: + + http://guac-dev.org/ + + +------------------------------------------------------------ + What is libguac-client-vnc? +------------------------------------------------------------ + +libguac-client-vnc is a protocol support plugin for the Guacamole proxy (guacd) +which provides support for VNC via the libvncclient library (part of +libvncserver). + + +------------------------------------------------------------ + Compiling and installing libguac-client-vnc +------------------------------------------------------------ + +Please note that distribution-specific pre-compiled packages are available from +the files section of the main project site: + + http://sourceforge.net/projects/guacamole/files/ + +libguac-client-vnc is built using the popular GNU Automake, and thus provides +the standard configure script. + +1) Run configure + + $ ./configure + + Assuming all dependencies have been installed, this should succeed without + errors. + +2) Run make + + $ make + + libguac-client-vnc will now compile. + +3) Install (as root) + + # make install + + libguac-client-vnc will install to your /usr/local/lib directory by default. + You can change the install location by using the --prefix option for + configure. + + You will need to run ldconfig (as root) so that guacd can find the library + when needed: + + # ldconfig + + +------------------------------------------------------------ + Reporting problems +------------------------------------------------------------ + +Please report any bugs encountered by opening a new ticket at the Trac system +hosted at: + + http://sourceforge.net/apps/trac/guacamole/ +