Skip Menu |

This queue is for tickets about the B-Keywords CPAN distribution.

Report information
The Basics
Id: 23583
Status: resolved
Priority: 0/
Queue: B-Keywords

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

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



Subject: [PATCH] B::Keywords does not compile with bleadperl
The addition of the UNITCHECK function causes bleadperl to fail. Since UNITCHECK was added after 5.9.4, the following patch gets the tests to pass again. --- lib/B/Keywords.pm.old 2006-11-23 21:55:38.000000000 -0600 +++ lib/B/Keywords.pm 2006-11-23 21:58:52.000000000 -0600 @@ -325,6 +325,10 @@ -M -A -C ); +if ($] > 5.009004) { + push @Functions, "UNITCHECK"; +} + use vars '@Barewords'; @Barewords = qw( __FILE__
Release 1.05 and added UNITCHECK. Thanks! If you ever want to release a dist, let me know and I'll give you index permission to the namespace.