File: INSTALL

package info (click to toggle)
rivet 0.5.0-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,664 kB
  • ctags: 1,359
  • sloc: sh: 8,342; xml: 6,622; ansic: 4,367; tcl: 2,813; makefile: 99; lisp: 78; sql: 25
file content (29 lines) | stat: -rw-r--r-- 918 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
			  Rivet Installation
			  ==================

For more detailed instructions, see the docs/html/ directory.

The only thing you need to install Rivet is a C compiler, linker, and
of course, Tcl (8.4 or newer).

Rivet is built by means of Tcl based configure and make like scripts
which calculate dependencies and run the C compiler and linker.

To build mod_rivet.so, cd to the src/ directory, run the
./configure.tcl script, then run make.tcl. Make sure to use a tclsh
linked against the libraries you want to use for Rivet.  Then do a
./make.tcl install to install everything.

cd src
tclsh ./configure.tcl
tclsh ./make.tcl shared
tclsh ./make.tcl install

Basic Apache configuration directives that are needed:

# Loads the module.
LoadModule rivet_module	/path/to/your/copy/of/mod_rivet.so

# Let the module handle .rvt and .tcl files.
AddType application/x-httpd-rivet .rvt
AddType application/x-rivet-tcl .tcl