Revert "testenvironment does not check for correct perl version (#12377)" ... apparently this was either already done or done separately

This reverts commit b009dc7b5a.

Conflicts:
	docs/changelog/8.x.x.txt
This commit is contained in:
Scott Walters 2012-11-11 23:16:05 -05:00
parent 88dbf7b187
commit 0c01db9069
2 changed files with 0 additions and 10 deletions

View file

@ -1,5 +1,4 @@
8.0.1 8.0.1
- #12377 - add verbiage about requiring a post Apollo era perl if such a perl is detected
- #11849 - Use a different image library -- partially implemented; WebGUI::Image still uses Image::Magick - #11849 - Use a different image library -- partially implemented; WebGUI::Image still uses Image::Magick
8.0.0 8.0.0

View file

@ -16,15 +16,6 @@ use File::Spec;
my $webguiRoot; my $webguiRoot;
BEGIN { BEGIN {
if( $] < 5.010 ) {
print <<EOF;
WebGUI8 requires Perl 5.10.1 or later. Please upgrade your system perl,
install a newer perl in /usr/local, or build one with the 'perlbrew'
utility. Perl 5.10.0 has serious Unicode bugs that will corrupt
Unicode data. 5.16.x or 5.14.x should work fine.
EOF
exit 1;
}
$webguiRoot = File::Spec->rel2abs(File::Spec->catdir(File::Basename::dirname(__FILE__), File::Spec->updir)); $webguiRoot = File::Spec->rel2abs(File::Spec->catdir(File::Basename::dirname(__FILE__), File::Spec->updir));
unshift @INC, File::Spec->catdir($webguiRoot, 'lib'); unshift @INC, File::Spec->catdir($webguiRoot, 'lib');
} }