Subject: | Bleadperl v5.19.2-257-gc30fc27 fixes a bug in perl which DBD::PO relies on |
As per subject. The relevant ticket where this fact was discovered is https://rt.perl.org/rt3//Public/Bug/Display.html?id=119125
The patch to fix the problem for both old and new perls should be:
--- lib/DBD/PO/Locale/PO.pm~ 2009-12-31 09:12:22.000000000 +0100
+++ lib/DBD/PO/Locale/PO.pm 2013-08-15 14:16:38.713963789 +0200
@@ -288,7 +288,7 @@
## use critic (InterpolationOfLiterals)
);
$string =~ s{
- ( [^ !#$%&'()*+,\-.\/0-9:;<=>?@A-Z\[\]\^_`a-z{|}~] )
+ ( [^ !#\$%&'()*+,\-.\/0-9:;<=>?@A-Z\[\]\^_`a-z{|}~] )
}{
ord $1 < 0x80
? (
@@ -995,4 +995,4 @@
you can redistribute it and/or modify it
under the same terms as Perl itself.
-=cut
\ No newline at end of file
+=cut
Unfortunately I haven't tested it because all my smoker currently report FAIL on DBD-PO-2.10.
HTH && Regards,