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;
That's horrible. I love it!
Unless anyone objects, I'm going to see about using that approach
-- Sean M. Burke http://search.cpan.org/~sburke/
