From owner-freebsd-perl@FreeBSD.ORG Mon Jul 13 21:20:03 2009 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D7DD106566C for ; Mon, 13 Jul 2009 21:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D8E68FC13 for ; Mon, 13 Jul 2009 21:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n6DLK3cZ024978 for ; Mon, 13 Jul 2009 21:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n6DLK3J5024977; Mon, 13 Jul 2009 21:20:03 GMT (envelope-from gnats) Date: Mon, 13 Jul 2009 21:20:03 GMT Message-Id: <200907132120.n6DLK3J5024977@freefall.freebsd.org> To: perl@FreeBSD.org From: Cezary Morga Cc: Subject: Re: ports/129626: lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Cezary Morga List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jul 2009 21:20:03 -0000 The following reply was made to PR ports/129626; it has been noted by GNATS. From: Cezary Morga To: bug-followup@FreeBSD.ORG, bruce@freebsd.zuhause.org Cc: Subject: Re: ports/129626: lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 Date: Mon, 13 Jul 2009 23:16:00 +0200 This is a multi-part message in MIME format. --------------090003060605040908030804 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Although this is a bit late I think it's better late than never :) It seems the problem is known to p5-Tcl developers for quite a time now (http://rt.cpan.org/Public/Bug/Display.html?id=21181) but was left unaddressed. So, I guess, the only solution to keep the port in fairly usable state is to disable stubs. Patch in attachment. -- Cezary Morga --------------090003060605040908030804 Content-Type: text/plain; name="patch-p5-Tcl.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-p5-Tcl.diff" diff -ruN lang/p5-Tcl.orig/Makefile lang/p5-Tcl/Makefile --- lang/p5-Tcl.orig/Makefile 2009-03-05 12:36:12.000000000 +0100 +++ lang/p5-Tcl/Makefile 2009-07-13 23:05:08.000000000 +0200 @@ -22,6 +22,6 @@ .include -CONFIGURE_ARGS= --tclsh ${TCLSH} +CONFIGURE_ARGS= --tclsh ${TCLSH} --nousestubs .include --------------090003060605040908030804--