allow pecification of purity on command line
skimo [Fri, 8 Jun 2001 15:09:47 +0000 (15:09 +0000)]
perl/ChangeLog
perl/Makefile.PL

index d5d3b38..3f772aa 100644 (file)
@@ -1,3 +1,8 @@
+Version 0.60 --        8 July 2001   <skimo@kotnet.org> Sven Verdoolaege
+
+       o Allow specification of purity on command line
+           (suggested by Rob Brown <rbrown@about-inc.com>)
+       o Fix bug in pure perl implementation
        o Don't try to compile anything on pure perl build
        o Add BINMODE method
        o Add comment on socket permissions
index 2999b67..0b5650c 100644 (file)
@@ -1,9 +1,10 @@
-# $Id: Makefile.PL,v 1.10 2001/06/05 15:52:42 skimo Exp $
+# $Id: Makefile.PL,v 1.11 2001/06/08 15:09:47 skimo Exp $
 
 use ExtUtils::MakeMaker;
 use IO::File;
 use Config;
 use Cwd 'cwd';
+use Getopt::Long;
 
 @h1 = qw(fastcgi.h fcgiapp.h fcgiappmisc.h fcgimisc.h fcgios.h);
 @h = (@h1, 'fcgi_config.h');
@@ -12,9 +13,10 @@ use Cwd 'cwd';
 @dist2 = qw(fcgiapp.c os_unix.c os_win32.c);
 @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";
+    ? "1" : "0" unless defined $pure;
 open(CFG,">FCGI.cfg");
 print CFG "\$pure = $pure;1;\n";
 close CFG;