Only work on GUI modules when --gui is supplied to Build.PL

This commit is contained in:
Alessandro Ranellucci 2013-07-06 11:37:24 +02:00
parent f455ecb7da
commit 2ecc31c0aa

View File

@ -29,18 +29,15 @@ my %recommends = qw(
XML::SAX::ExpatXS 0 XML::SAX::ExpatXS 0
); );
if ($ARGV[0] eq '--gui') { if ($ARGV[0] eq '--gui') {
%prereqs = (%prereqs, qw( %prereqs = qw(
Wx 0.9901 Wx 0.9901
)); );
%recommends = (%recommends, qw( %recommends = qw(
Wx::GLCanvas 0 Wx::GLCanvas 0
OpenGL 0 OpenGL 0
)); );
} }
# removed:
# Wx 0.9901
my $missing_prereqs = 0; my $missing_prereqs = 0;
if ($ENV{SLIC3R_NO_AUTO}) { if ($ENV{SLIC3R_NO_AUTO}) {
foreach my $module (sort keys %prereqs) { foreach my $module (sort keys %prereqs) {