This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Silence compile warnings before uni tables built
authorKarl Williamson <public@khwilliamson.com>
Sun, 6 Feb 2011 16:55:58 +0000 (09:55 -0700)
committerKarl Williamson <public@khwilliamson.com>
Sun, 6 Feb 2011 17:02:10 +0000 (10:02 -0700)
commitb443038a145a59ec6de84fc1eeb3034b20299069
treec2c9a8e40dcaa0d62377a9d11b75f919eeb8750d
parentb9d2ea5ba3215af3e27ecf994cfded2599a1d4d2
Silence compile warnings before uni tables built

The recent move of Unicode folding to the compilation phase caused
spurious warnings during the miniperl build phase of Perl itself before
the Unicode tables get built.  Before the tables are built, Perl is
unable to know about the Unicode semantics (it has ASCII/Latin1
hard-coded in), but was still trying to access the tables.  Now, it
checks and if the tables aren't present uses just the hard-coded
ASCII/Latin1 semantics.
regcomp.c
utf8.c