>>>>> "WC" == Will Coleda <[EMAIL PROTECTED]> writes:

  WC> The README doesn't mention Configure.pl (minor doc patch follows), and
  WC> Parrot::Opcode is requiring perl5.6, which makes my 5.5.3 quite unhappy. 

i noticed both of those problems.

i found Opcode.pm has a use 5.6.0 and it uses our. i don't see a need
for our there when my will do. dan replied to me and said parrot should
work from 5.004_04.

  WC> Are folks intentially using 5.6 constructs? I'll consider
  WC> generating a patch to make things work with 5.5.3 if this was an
  WC> act of convenience rather than benevolent despotism. =-)

here is a patch for that. (my first one!)

uri


Index: Parrot/Opcode.pm
===================================================================
RCS file: /home/perlcvs/parrot/Parrot/Opcode.pm,v
retrieving revision 1.3
diff -u -r1.3 Opcode.pm
--- Parrot/Opcode.pm    2001/09/15 00:57:42     1.3
+++ Parrot/Opcode.pm    2001/09/15 13:47:26
@@ -1,12 +1,12 @@
 package Parrot::Opcode;
 
-use 5.6.0;
+use 5.004 ;
 use strict;
 use Symbol;
 use Digest::MD5 qw(&md5_hex);
 
-our %opcode;
-our $fingerprint;
+my %opcode;
+my $fingerprint;
 
 sub _load {
     my $file = @_ ? shift : "opcode_table";




-- 
Uri Guttman  ---------  [EMAIL PROTECTED]  ----------  http://www.sysarch.com
SYStems ARCHitecture and Stem Development ------ http://www.stemsystems.com
Search or Offer Perl Jobs  --------------------------  http://jobs.perl.org

Reply via email to