matts 2003/09/04 13:59:48
Modified: lib AxKit.pm Log: Allow use of bytes and utf8 pragma on earlier perls. Revision Changes Path 1.51 +3 -1 xml-axkit/lib/AxKit.pm Index: AxKit.pm =================================================================== RCS file: /home/cvs/xml-axkit/lib/AxKit.pm,v retrieving revision 1.50 retrieving revision 1.51 diff -u -r1.50 -r1.51 --- AxKit.pm 11 Aug 2003 07:38:18 -0000 1.50 +++ AxKit.pm 4 Sep 2003 20:59:48 -0000 1.51 @@ -29,6 +29,8 @@ @AxKit::ISA = qw(DynaLoader); __PACKAGE__->bootstrap($VERSION); } + $INC{'bytes.pm'}++ if $] < 5.006; + $INC{'utf8.pm'}++ if $] < 5.006; } ###############################################################