From owner-freebsd-perl@FreeBSD.ORG Wed Feb 19 17:01:27 2014 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B02533F for ; Wed, 19 Feb 2014 17:01:27 +0000 (UTC) Received: from ns1.ogris.net (ns1.ogris.net [IPv6:2a00:1348::17:0:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id 52E111C51 for ; Wed, 19 Feb 2014 17:01:27 +0000 (UTC) Received: from fjo-mbp.dts-systeme.intra (fjo-mbp.dts.de [81.89.251.80]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by ns1.ogris.net (Postfix) with ESMTPSA id A05D12B6FF3 for ; Wed, 19 Feb 2014 18:01:16 +0100 (CET) From: "Felix J. Ogris" Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: FreeBSD Port: graphics/p5-GD - VERSION_33 Message-Id: Date: Wed, 19 Feb 2014 18:01:13 +0100 To: perl@FreeBSD.org Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) X-Mailer: Apple Mail (2.1827) X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:01:27 -0000 Hi, Makefile.PL of p5-GD-2.51 won't set VERSION_33 even if libgd-2.1.0_1 is = installed. Thus, copyRotated() won't work. I think lines 299+300 of Makefile.PL of p5-GD-2.51 are not correct: my ($minor) =3D $version =3D~ /^2\.\d+\.(\d+)$/; $$options .=3D " GD_UNCLOSEDPOLY GD_ANIMGIF GD_FTCIRCLE = VERSION_33" if defined($minor) && $minor >=3D 33; That doesn't work for any version of libgd where minor number is < 33, = even though its major number is > 2.0 --Felix