Subject: | Encode-2.84 breaks win32 in CORE |
PERL_CORE=1 runs with miniperl, but you added to enc2xs
# Win32 does not expand globs on command line
eval "\@ARGV = map(glob(\$_),\@ARGV)" if ($^O eq 'MSWin32');
which cleans @ARGV, hence the args and opts are gone, and enc2xs does on win32, msvc.
patch:
# Win32 does not expand globs on command line
if ($^O eq 'MSWin32' and !$ENV{PERL_CORE}) {
eval "\@ARGV = map(glob(\$_),\@ARGV)";
@ARGV = @orig_ARGV unless @ARGV;
}
--
Reini Urban