0.53 release (fixes sfio)
[catagits/fcgi2.git] / perl / README
1 $Id: README,v 1.5 2000/07/10 09:56:49 skimo Exp $
2
3     Copyright (c) 1996 Open Market, Inc.
4     See the file "LICENSE.TERMS" for information on usage and redistribution
5     of this file, and for a DISCLAIMER OF ALL WARRANTIES.
6
7     Copyright (c) 1996-1998 Sven Verdoolaege
8     No additional restrictions/warranties.
9
10 This is a Fast CGI module for perl. It's based on the FCGI module
11 that comes with Open Market's FastCGI Developer's Kit, but does
12 not require you to recompile perl.
13
14 It even no longer requires perl to be compiled with sfio.
15 To compile with sfio you'll need at least perl 5.003_02 and you'll have
16 to have configured it with eg './Configure -Duseperlio -Dusesfio'.
17 (See the INSTALL file that comes with the perl distribution.)
18 To compile without sfio you'll need an even more recent perl version.
19 (perl 5.004 and up should be fine.)
20
21 See http://www.fastcgi.com/ for more information about fastcgi.
22 Lincoln D. Stein's perl CGI module also contains some information
23 about fastcgi programming.
24
25 See echo.fpl for an example on how to use this module.
26
27 To install, do the usual
28
29 perl Makefile.PL
30 make
31 make install
32
33 If Makefile.PL finds an already installed (exported) fcgi library
34 it will use that instead of the included files. Edit Makefile.PL
35 if you don't want that or if it doesn't find them.
36
37 To configure the library Makefile.PL will run ./configure .
38 You may want to run it yourself beforehand because its findings
39 may not always be correct.
40 The configure.readme file describes how to run ./configure (and only that).
41
42 If you're on a solaris system and your installed fcgi library is 2.02b
43 or earlier, you'll probably want to use the included files.
44
45 The old interface of the FCGI module installs die and warn 
46 handlers that merely print the error/warning to STDERR (the 
47 default handlers print directly to stderr, which isn't redirected 
48 in the non sfio case). I'm not very happy with the result. 
49 Suggestions welcome.
50
51 Sven Verdoolaege
52 skimo@kotnet.org