>>>>> "SA" == System Administrator <[EMAIL PROTECTED]> writes:
SA> This distribution has been tested as part of the cpan-testers SA> effort to test as many new uploads to CPAN as possible. See SA> http://testers.cpan.org/ SA> Please cc any replies to [EMAIL PROTECTED] to keep other SA> test volunteers informed and to prevent any duplicate effort. SA> -- SA> Huh, I'm not sure why this failed. UTF8? Stock Perl 5.6.0, thanks to 10.2.8. It seems utf8 API have changed in 5.6.1. You can try patch below (after my sig) - with it Dumper passes all tests except two utf8 tests. I'll take a look on it later - probably they should be just skipped as utf8 support in 5.6.x is somewhat borken and incomplete. SA> - R. ([EMAIL PROTECTED]) SA> This is an error report generated automatically by CPANPLUS, SA> version 0.044. SA> [..snip..] -- Ilya Martynov, [EMAIL PROTECTED] CTO IPonWEB (UK) Ltd Quality Perl Programming and Unix Support UK managed @ offshore prices - http://www.iponweb.net Personal website - http://martynov.org diff -ru Data-Dumper-2.121/Dumper.pm Data-Dumper-2.121-5.6.0/Dumper.pm --- Data-Dumper-2.121/Dumper.pm Sun Aug 24 09:12:00 2003 +++ Data-Dumper-2.121-5.6.0/Dumper.pm Mon Sep 29 12:19:08 2003 @@ -13,7 +13,7 @@ #$| = 1; -use 5.006_001; +use 5.006; require Exporter; use XSLoader (); require overload; diff -ru Data-Dumper-2.121/Dumper.xs Data-Dumper-2.121-5.6.0/Dumper.xs --- Data-Dumper-2.121/Dumper.xs Fri Aug 1 14:58:47 2003 +++ Data-Dumper-2.121-5.6.0/Dumper.xs Mon Sep 29 12:17:27 2003 @@ -25,8 +25,12 @@ UV Perl_utf8_to_uvchr(pTHX_ U8 *s, STRLEN *retlen) { +# if PERL_SUBVERSION == 0 + UV uv = utf8_to_uv(s, retlen); +# else UV uv = utf8_to_uv(s, UTF8_MAXLEN, retlen, ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY); +# endif return UNI_TO_NATIVE(uv); }
