From a65befe08cb4d2706ad80184359a25125c1b37c4 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 11 Oct 2011 17:56:56 +0200 Subject: [PATCH] Require Math::Clipper 1.02 otherwise fail with a hard error This is to force people to upgrade their dependencies in order to avoid their previous bugs --- lib/Slic3r/Geometry/Clipper.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Geometry/Clipper.pm b/lib/Slic3r/Geometry/Clipper.pm index 93cd42b5c..374b64d83 100644 --- a/lib/Slic3r/Geometry/Clipper.pm +++ b/lib/Slic3r/Geometry/Clipper.pm @@ -6,7 +6,7 @@ require Exporter; our @ISA = qw(Exporter); our @EXPORT_OK = qw(diff_ex diff union_ex); -use Math::Clipper ':all'; +use Math::Clipper 1.02 ':all'; our $clipper = Math::Clipper->new; sub diff_ex {