cvsuser     02/04/29 09:21:18

  Modified:    .        Configure.pl
  Log:
  version checks should happen at compile time, so use 'use' instead of 'require'
  
  Revision  Changes    Path
  1.105     +3 -3      parrot/Configure.pl
  
  Index: Configure.pl
  ===================================================================
  RCS file: /cvs/public/parrot/Configure.pl,v
  retrieving revision 1.104
  retrieving revision 1.105
  diff -u -w -r1.104 -r1.105
  --- Configure.pl      29 Apr 2002 02:28:25 -0000      1.104
  +++ Configure.pl      29 Apr 2002 16:21:18 -0000      1.105
  @@ -2,12 +2,12 @@
   #
   # Configure.pl
   #
  -# $Id: Configure.pl,v 1.104 2002/04/29 02:28:25 robert Exp $
  +# $Id: Configure.pl,v 1.105 2002/04/29 16:21:18 robert Exp $
   #
   # Author: Brent Dax
   #
   
  -require 5.005_02;
  +use 5.005_02;
   
   use strict;
   use lib 'lib';
  @@ -77,7 +77,7 @@
   
   if($opt_version) {
       print "Parrot Version $parrot_version Configure\n";
  -    print '$Id: Configure.pl,v 1.104 2002/04/29 02:28:25 robert Exp $' . "\n";
  +    print '$Id: Configure.pl,v 1.105 2002/04/29 16:21:18 robert Exp $' . "\n";
       exit;
   }
   
  
  
  


Reply via email to