Limit the Perl version warning to 5.16, as 5.18 seems to work fine

This commit is contained in:
Alessandro Ranellucci 2014-12-24 00:19:20 +01:00
parent 91bc4d8157
commit 9cb6dc768f

View File

@ -26,8 +26,8 @@ BEGIN {
$have_threads = 0 if $Moo::VERSION == 1.003000;
}
warn "Running Slic3r under Perl >= 5.16 is not supported nor recommended\n"
if $^V >= v5.16;
warn "Running Slic3r under Perl 5.16 is not supported nor recommended\n"
if $^V == v5.16;
use FindBin;
our $var = "$FindBin::Bin/var";