Subject: | Windows/Perl 5.6.1 & utf8 |
There is a requirement to use utf8::encode within the code, via
t\01_json.t. As a result I get:
Undefined subroutine &utf8::encode called at t\01_json.t line 52.
# Looks like your test died before it could output anything.
Failed 1/2 test scripts, 50.00% okay. 42/43 subtests failed, 2.33% okay.
NMAKE : fatal error U1077: 'C:\WINNT\system32\cmd.exe' : return code '0x2'
Stop.
This also applies to JSON. Is it possible to omit the utf8 testing?
Tested on Windows 2000 Pro + ActivePerl 5.6.1. The function utf8::encode
doesn't exist in Perl 5.6.1, so you may want to add 'use 5.008' in your
Makefile.PL to ensure that only 5.8.x perls can use this.