Skip Menu |

This queue is for tickets about the Log-Report CPAN distribution.

Report information
The Basics
Id: 34433
Status: resolved
Priority: 0/
Queue: Log-Report

People
Owner: Nobody in particular
Requestors: adamk [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.15



Subject: Generates a ton of noisy warnings
Installing this during Win32 testing. This module generates a spurious noisy prototype mismatch warning, it should be visible in the CPAN testers results. Please prevent this warning from occuring.
On Wed Mar 26 00:04:43 2008, ADAMK wrote: Show quoted text
> Installing this during Win32 testing. > > This module generates a spurious noisy prototype mismatch warning, it > should be visible in the CPAN testers results. > > Please prevent this warning from occuring.
I do not see any Win32 results in the cpan-testers overview.
Subject: Re: [rt.cpan.org #34433] Generates a ton of noisy warnings
Date: Thu, 27 Mar 2008 03:03:41 +1100
To: bug-Log-Report [...] rt.cpan.org
From: Adam Kennedy <adamkennedybackup [...] gmail.com>
Mark Overmeer via RT wrote: Show quoted text
> <URL: http://rt.cpan.org/Ticket/Display.html?id=34433 > > > On Wed Mar 26 00:04:43 2008, ADAMK wrote: >
>> Installing this during Win32 testing. >> >> This module generates a spurious noisy prototype mismatch warning, it >> should be visible in the CPAN testers results. >> >> Please prevent this warning from occuring. >>
> > I do not see any Win32 results in the cpan-testers overview. >
Ack, sorry. That's probably because nothing before April Strawberry can install the deps properly. I'm seeing it as... "Prototype mismatch: Log::Report::Translator::POT::LC_MESSAGES () vs none at lib/Log/Report/Translator/POT.pm line 24. Adam K
Subject: Re: [rt.cpan.org #34433] Generates a ton of noisy warnings
Date: Wed, 26 Mar 2008 22:34:26 +0100
To: Adam Kennedy via RT <bug-Log-Report [...] rt.cpan.org>
From: Mark Overmeer <mark [...] overmeer.net>
* Adam Kennedy via RT (bug-Log-Report@rt.cpan.org) [080326 16:11]: Show quoted text
> > On Wed Mar 26 00:04:43 2008, ADAMK wrote:
> >> Installing this during Win32 testing.
> > "Prototype mismatch: Log::Report::Translator::POT::LC_MESSAGES () vs > none at lib/Log/Report/Translator/POT.pm line 24.
The crucial part of the code is use POSIX qw/:locale_h/; # Sometimes, Perl is lazy. Work-around for missing LC_MESSAGES eval "&LC_MESSAGES"; if($@ =~ /^Your vendor has not/) { *LC_MESSAGES = sub { 5 }; } Without access to Windows, I have not the slighest idea what is producing the warning in this case. Could you do me a favor? -- Regards, MarkOv ------------------------------------------------------------------------ Mark Overmeer MSc MARKOV Solutions Mark@Overmeer.net solutions@overmeer.net http://Mark.Overmeer.net http://solutions.overmeer.net
Subject: Re: [rt.cpan.org #34433] Generates a ton of noisy warnings
Date: Thu, 27 Mar 2008 10:08:04 +1100
To: bug-Log-Report [...] rt.cpan.org
From: Adam Kennedy <adamkennedybackup [...] gmail.com>
Mark Overmeer via RT wrote: Show quoted text
> <URL: http://rt.cpan.org/Ticket/Display.html?id=34433 > > > * Adam Kennedy via RT (bug-Log-Report@rt.cpan.org) [080326 16:11]: >
>>> On Wed Mar 26 00:04:43 2008, ADAMK wrote: >>>
>>>> Installing this during Win32 testing. >>>>
>> "Prototype mismatch: Log::Report::Translator::POT::LC_MESSAGES () vs >> none at lib/Log/Report/Translator/POT.pm line 24. >>
> > The crucial part of the code is > > use POSIX qw/:locale_h/; > # Sometimes, Perl is lazy. Work-around for missing LC_MESSAGES > eval "&LC_MESSAGES"; > if($@ =~ /^Your vendor has not/) > { *LC_MESSAGES = sub { 5 }; > } > > Without access to Windows, I have not the slighest idea what is > producing the warning in this case. Could you do me a favor? >
Seeing as it is a prototype mismatch, I bet you need to do something like this *LC_MESSAGES = sub () { 5 } Try making that change and roll a dev release, and we'll see what CPAN Testers does with it. Adam K
You're probably right. Let's see how it behaves (we need more Windows people on CPAN-testers) See you in Oslo