Minor fixups
skimo [Fri, 21 Apr 2000 18:10:52 +0000 (18:10 +0000)]
perl/ChangeLog
perl/FCGI.PL
perl/FCGI.pm
perl/README

index dd868a7..ad21d30 100644 (file)
@@ -1,3 +1,7 @@
+Version 0.51 -- 12 April 2000  <skimo@kotnet.org> Sven Verdoolaege
+
+Version 0.50 -- 10 April 2000  <skimo@kotnet.org> Sven Verdoolaege
+
 Version 0.49 -- 9 April 2000  <skimo@kotnet.org> Sven Verdoolaege
 
        o General clean-ups
index e88e6e0..1cea371 100644 (file)
@@ -12,7 +12,7 @@ unless ($] >= 5.005) {
 print OUT while <DATA>;
 close OUT;
 __END__
-/* $Id: FCGI.PL,v 1.13 2000/01/31 21:34:24 skimo Exp $ */
+/* $Id: FCGI.PL,v 1.14 2000/04/21 18:10:53 skimo Exp $ */
 
 #include "EXTERN.h"
 #include "perl.h"
@@ -188,14 +188,14 @@ HV *hv;
 static int 
 FCGI_Accept(FCGP_Request* request)
 {
-    dTHX;
-
     static int isCGI = -1; /* -1: not checked; 0: FCGI; 1: FCGI */
 
     int req_isCGI = 
        request->requestPtr->listen_sock == FCGI_LISTENSOCK_FILENO ?
        isCGI : 0;
 
+    dTHX;
+
     if(req_isCGI == -1) {
         /*
          * First call to FCGI_Accept.  Is application running
index 2b73af9..2f82087 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: FCGI.pm,v 1.8 2000/04/09 19:00:12 skimo Exp $
+# $Id: FCGI.pm,v 1.9 2000/04/21 18:10:53 skimo Exp $
 
 package FCGI;
 
@@ -13,7 +13,7 @@ require DynaLoader;
        
 );
 
-$VERSION = '0.49';
+$VERSION = '0.52';
 
 bootstrap FCGI;
 
index 2b4f8eb..b4b885a 100644 (file)
@@ -1,4 +1,4 @@
-$Id: README,v 1.3 2000/04/09 19:00:12 skimo Exp $
+$Id: README,v 1.4 2000/04/21 18:10:53 skimo Exp $
 
     Copyright (c) 1996 Open Market, Inc.
     See the file "LICENSE.TERMS" for information on usage and redistribution
@@ -19,7 +19,7 @@ to have configured it with eg './Configure -Duseperlio -Dusesfio'.
 To compile without sfio you'll need an even more recent perl version.
 (perl 5.004 and up should be fine.)
 
-See http://fastcgi.idle.com/ for more information about fastcgi.
+See http://www.fastcgi.com/ for more information about fastcgi.
 Lincoln D. Stein's perl CGI module also contains some information
 about fastcgi programming.