Further inspection of the problem leads me to the conclusion that this may not be related to encode. I fired up my Debugger and performed some tests. Notice how the Character \N{greek:alpha} was found on Linux, but not on AIX:
AIX 7.2:
DB<1> use charnames qw(greek) DB<2> print "\N{alpha}" Use of uninitialized value $txt in pattern match (m//) at /usr/opt/per +l5/lib/5.20.1/_charnames.pm line 459. [...] Unknown charname 'alpha' at (eval 9)[/usr/opt/perl5/lib/5.20.1/perl5db +.pl:732] line 2, within string DB<3> print "\N{U+03B1}" Wide character in print at (eval 10)[/usr/opt/perl5/lib/5.20.1/perl5db +.pl:732] line 2. [...] &#945; DB<4> print "\N{greek:alpha}" Use of uninitialized value $txt in pattern match (m//) at /usr/opt/per +l5/lib/5.20.1/_charnames.pm line 459. [...] Unknown charname 'greek:alpha' at (eval 11)[/usr/opt/perl5/lib/5.20.1/ +perl5db.pl:732] line 2, within string
Ubuntu 14.04
DB<1> use charnames qw(greek) DB<2> print "\N{alpha}" Unknown charname 'alpha' at (eval 8)[/usr/share/perl/5.18/perl5db.pl: +732] line 2, within string DB<3> print "\N{U+03B1}" Wide character in print at (eval 9)[/usr/share/perl/5.18/perl5db.pl:7 +32] line 2. &#945; DB<4> print "\N{greek:alpha}" Wide character in print at (eval 10)[/usr/share/perl/5.18/perl5db.pl: +732] line 2. &#945;
Guess there is something messed up with the AIX character-table?

In reply to Re^2: Unknown charnames when building Encode by yulivee07
in thread Unknown charnames when building Encode by yulivee07

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.