Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Games-Bingo CPAN distribution.

Report information
The Basics
Id: 5018
Status: resolved
Worked: 5 min
Priority: 0/
Queue: Games-Bingo

People
Owner: jonasbn [...] cpan.org
Requestors: lars [...] thegler.dk
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.10
Fixed in: 0.11



Subject: Broken in perl 5.005_03
Games::Bingo v0.10 broken due to strange bareword handling in perl 5.005_03. Attached patch fixes this, and is also compatible with newer perls.
--- lib/Games/Bingo/Constants.pm.orig Sat Jan 24 12:44:38 2004 +++ lib/Games/Bingo/Constants.pm Sat Jan 24 12:44:50 2004 @@ -23,8 +23,8 @@ use constant NUMBER_OF_ROWS_IN_CARD => 3; use constant NUMBER_OF_COLUMNS_IN_CARD => 9; -use constant NUMBER_OF_NUMBERS_IN_CARD - => (NUMBER_OF_NUMBERS_IN_ROW * NUMBER_OF_ROWS_IN_CARD); +use constant NUMBER_OF_NUMBERS_IN_CARD => + (NUMBER_OF_NUMBERS_IN_ROW * NUMBER_OF_ROWS_IN_CARD); 1; @@ -109,4 +109,4 @@ Games::Bingo is (C) 2003-2004 Jonas B. Nielsen (jonasbn) E<lt>jonasbn@cpan.orgE<gt> -=cut \ No newline at end of file +=cut
Hi Lars, I have applied your patch and released 0.11 containing your patch. Thanks, jonasbn