[[FastCGI]]


Words | Servers | AppLibs | Mail | Home
[FastCGI Home Page]

FastCGI Tcl Binaries

To install the compiled version of Tcl with FastCGI support follow these steps:
  1. Download the appropriate tar file for your architecture
  2. cd into /usr/local and unpack the tar file.
    	> cd /usr/local
    	> zcat tcl7.4-solaris.tar.Z | tar xf - 
    	
    This creates a directory tcl7.4-fcgi which contains the tcl executables, libraries, and manual pages. If you do not want this to live in /usr/local/tcl7.4-fcgi you have two choices:
    1. Unpack the tar file somewhere else and make a symbolic link to /usr/local/tcl7.4-fcgi for example:
      		> cd /opt
      		> zcat tcl7.4-solaris.tar.Z | tar xf -
      		> ln -s /opt/tcl7.4-fcgi /usr/local/tcl7.4-fcgi
      		
    2. Or set the TCL_LIBRARY environment varible to the the location of the library files that came with the kit.
  3. Start writting FCGI scripts in Tcl! For more information on how to do this, read doc/fcgi-tcl.html in the fcgi developers kit.


Words | Servers | AppLibs | Mail | Home