-# $Id: Makefile.PL,v 1.22 2001/09/14 17:14:24 skimo Exp $
+# $Id: Makefile.PL,v 1.23 2001/09/20 12:26:37 skimo Exp $
use ExtUtils::MakeMaker;
use IO::File;
@dist3 = (@h1, qw(fcgi_config.h.in fcgi_config_x86.h));
GetOptions ("pure-perl!" => \$pure);
-$pure =
- (prompt("Do you want to use the pure perl implementation", "no") =~ /^y/)
- ? "1" : "0" unless defined $pure;
+$pure = "0" unless defined $pure;
open(CFG,">FCGI.cfg");
print CFG "\$pure = $pure;1;\n";
close CFG;
-$Id: README,v 1.5 2000/07/10 09:56:49 skimo Exp $
+$Id: README,v 1.6 2001/09/20 12:26:38 skimo Exp $
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
make
make install
+If you want to use the (experimental) pure perl version, that
+doesn't require a compiler and currently only works on Unix,
+you have to pass the --pure-perl option as in
+"perl Makefile.PL --pure-perl".
+
If Makefile.PL finds an already installed (exported) fcgi library
it will use that instead of the included files. Edit Makefile.PL
if you don't want that or if it doesn't find them.