VNC
Building RealVNC from source on the Mac Platform
Procedure
- make sure the fink environment is installed and configured properly
- :!:it is unclear if any prior dependencies are required
- download the latest unix source code from http://www.realvnc.com
- the version used in this example was 4.1.2
- extract the compressed file
- change directory to vnc-x_x_x-unixsrc/unix/
- build vnc:
./configure --prefix=/sw --mandir=/sw/share/man --infodir=/sw/share/info --with-x make
- if you want to use an already installed zlib, you can do this:
./configure --prefix=/sw --mandir=/sw/share/man --infodir=/sw/share/info --with-x --with-installed-zlib make
- at this point, you can install by one of several options:
- copy vnc-x_x_x-unixsrc/unix/vncviewer/vncviewer to /sw/bin/
- create a symbolic link from vnc-x_x_x-unixsrc/unix/vncviewer/vncviewer to /sw/bin/vncviewer
- run vnc-x_x_x-unixsrc/unix/vncinstall /sw/bin /sw/share/man
- this will install man pages, vncserver, vncpasswd etc…