Skip Menu |

This queue is for tickets about the PDF-Template CPAN distribution.

Report information
The Basics
Id: 7857
Status: resolved
Priority: 0/
Queue: PDF-Template

People
Owner: Nobody in particular
Requestors: michael.kiwala [...] gmail.com
Cc:
AdminCc:

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



Subject: Makfile.PL doesn't use strict
Makfile.PL doesn't use strict. # The assumption is the 5.8.0 and greater doesn't need Unicode::String. if ($] < 5.008) { print "Do you want Unicode support? "; my $answer = <STDIN>; my $need_unicode = $answer =~ /^[Yy]/; my $use_unicode = 0; if ($need_unicode) { $prereqs{'Unicode::String'} = '0.01'; $use_unicode = 1; } } use_unicode($use_unicode); $use_unicode will always be undef