As a workaround for pre-5.6.0 perls, one could fake the existance of
the utf8 pragma:

BEGIN {
    if ($] < 5.006) {
        $INC{"utf8.pm"} = "dummy";
    }
}
use utf8;


Regards,
    Slaven

-- 
Slaven Rezic - slaven <at> rezic <dot> de

Reply via email to