assume non pure build
skimo [Thu, 20 Sep 2001 12:26:37 +0000 (12:26 +0000)]
perl/Makefile.PL
perl/README

index d92f67a..d46222e 100644 (file)
@@ -1,4 +1,4 @@
-# $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;
@@ -14,9 +14,7 @@ use Getopt::Long;
 @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;
index ea21c1d..a9d3b47 100644 (file)
@@ -1,4 +1,4 @@
-$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
@@ -30,6 +30,11 @@ perl Makefile.PL
 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.