matts 2003/07/16 08:16:10
Modified: . Makefile.PL
Log:
Make sure things work if we're on 5.005 - or at least pretend to make things
work...
Revision Changes Path
1.21 +6 -1 xml-axkit/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/xml-axkit/Makefile.PL,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- Makefile.PL 16 Jul 2003 14:31:59 -0000 1.20
+++ Makefile.PL 16 Jul 2003 15:16:10 -0000 1.21
@@ -13,6 +13,11 @@
require 5.005;
+BEGIN {
+ $INC{'bytes.pm'}++ if $] < 5.006;
+ $INC{'warnings.pm'}++ if $] < 5.006;
+}
+
sub wrap ($)
{
my $text = shift;