Subject: | encoding pragma is not recognized |
use encoding 'utf-8' pragma in script generates the following output when the packed script is executed.
Can't locate encoding.pm in @INC (@INC contains: CODE(0xe23304) C:.....
PAR 0.87, perl 5.8.6, Windows XP
Workaround:
use encoding 'utf-8';
require encoding;
as advised by A. Stewart
Radek