Ken,
thank you very much for your input. I found the source of my problems:
Name.pl is missing in AIX:
perl@t72:/usr/opt/perl5/lib/5.20.1/unicore $ ls
Blocks.txt Decomposition.pl Name.pm SpecialCas
+ing.txt UCD.pl
CombiningClass.pl Heavy.pl NamedSequences.txt To
+ lib
compare that to my linux distribution:
perl@pod-racer:/usr/share/perl/5.18/unicore $ ls
Blocks.txt Decomposition.pl lib Name.pl Spec
+ialCasing.txt UCD.pl
CombiningClass.pl Heavy.pl NamedSequences.txt Name.pm To
+ version
As Name.pl is generated during the compilation of perl, the necessary program mktables was not to be found on the AIX System, as I does not seem to be delivered with a packaged perl.
Solution to this: Download the perl-Version which is installed from CPAN into a temporary directory. On AIX 7.2 I have perl 5.20, so I download perl 5.20 from cpan (http://www.cpan.org/src/).
Extract it, and cd to lib/unicore. There you can find the mktables program. Then generate the unicode files:
chmod 755 mktables
./mktables
This generates a bunch of files, including Name.pl. I diffed all newly generated files against the ones from my systems perl and found no difference, so I only copied Name.pl to my systems unicore-path. The Errors then vanished.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.