From: Steffen Mueller Date: Sat, 6 Jun 2009 11:44:18 +0000 (+0200) Subject: Data::Dumper on 5.6.* needs to use old IDs X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ecf5217a6a878bcf597e222b6f82da64ef65ecf1;p=p5sagit%2Fp5-mst-13.2.git Data::Dumper on 5.6.* needs to use old IDs This is the change to Dumper.xs that goes hand-in-hand with change c2231af7a39be4217e07eedae6069566071d1682 in Dumper.pm. --- diff --git a/ext/Data-Dumper/Dumper.xs b/ext/Data-Dumper/Dumper.xs index 4f7eed3..e3867a1 100644 --- a/ext/Data-Dumper/Dumper.xs +++ b/ext/Data-Dumper/Dumper.xs @@ -8,7 +8,7 @@ # include "ppport.h" #endif -#if PERL_VERSION < 6 +#if PERL_VERSION < 8 # define DD_USE_OLD_ID_FORMAT #endif