From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Oct 31 15:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B875F465 for ; Thu, 31 Oct 2013 15:40:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94BDF283A for ; Thu, 31 Oct 2013 15:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VFe040080322 for ; Thu, 31 Oct 2013 15:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9VFe0Cn080320; Thu, 31 Oct 2013 15:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 31 Oct 2013 15:40:00 GMT Resent-Message-Id: <201310311540.r9VFe0Cn080320@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mathieu Arnold 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 ESMTP id CF04BDCF; Thu, 31 Oct 2013 15:31:18 +0000 (UTC) (envelope-from mat@aragorn.in.absolight.net) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 930912797; Thu, 31 Oct 2013 15:31:17 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id D94E3BDC24; Thu, 31 Oct 2013 16:31:15 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id B75F2BDC1D; Thu, 31 Oct 2013 16:31:15 +0100 (CET) Received: from aragorn.in.absolight.net (aragorn.in.absolight.net [79.143.241.225]) by gw.in.absolight.net (Postfix) with ESMTP id CC5606119; Thu, 31 Oct 2013 16:31:14 +0100 (CET) Received: by aragorn.in.absolight.net (Postfix, from userid 1000) id 400B914269C; Thu, 31 Oct 2013 16:31:14 +0100 (CET) Message-Id: <20131031153114.400B914269C@aragorn.in.absolight.net> Date: Thu, 31 Oct 2013 16:31:14 +0100 (CET) From: Mathieu Arnold To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/183530: [exp-run] [PATCH] lang/perl5.1*: Enable THREADS by default. Cc: perl@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 15:40:00 -0000 >Number: 183530 >Category: ports >Synopsis: [exp-run] [PATCH] lang/perl5.1*: Enable THREADS by default. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Oct 31 15:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 9.2-RELEASE i386 >Organization: Absolight >Environment: System: FreeBSD aragorn.in.absolight.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC >Description: Let's try and see how things go when all perl are threaded. >How-To-Repeat: >Fix: --- threaded_perl.patch begins here --- Index: lang/perl5.12/Makefile =================================================================== --- lang/perl5.12/Makefile (revision 332250) +++ lang/perl5.12/Makefile (working copy) @@ -24,7 +24,7 @@ OPTIONS_DEFINE= DEBUG GDBM PERL_MALLOC PERL_64BITINT THREADS PTHREAD \ MULTIPLICITY SITECUSTOMIZE USE_PERL -OPTIONS_DEFAULT= PERL_64BITINT PTHREAD USE_PERL +OPTIONS_DEFAULT= PERL_64BITINT THREADS PTHREAD USE_PERL OPTIONS_SUB= GDBM_DESC= GDBM_File extension PERL_MALLOC_DESC= Use Perl malloc Index: lang/perl5.14/Makefile =================================================================== --- lang/perl5.14/Makefile (revision 332250) +++ lang/perl5.14/Makefile (working copy) @@ -24,7 +24,7 @@ OPTIONS_DEFINE= DEBUG GDBM PERL_MALLOC PERL_64BITINT THREADS PTHREAD \ MULTIPLICITY SITECUSTOMIZE USE_PERL -OPTIONS_DEFAULT= PERL_64BITINT PTHREAD USE_PERL +OPTIONS_DEFAULT= PERL_64BITINT THREADS PTHREAD USE_PERL OPTIONS_SUB= GDBM_DESC= GDBM_File extension PERL_MALLOC_DESC= Use Perl malloc Index: lang/perl5.16/Makefile =================================================================== --- lang/perl5.16/Makefile (revision 332251) +++ lang/perl5.16/Makefile (working copy) @@ -24,7 +24,7 @@ OPTIONS_DEFINE= DEBUG GDBM PERL_MALLOC PERL_64BITINT THREADS PTHREAD \ MULTIPLICITY SITECUSTOMIZE USE_PERL -OPTIONS_DEFAULT= PERL_64BITINT PTHREAD USE_PERL +OPTIONS_DEFAULT= PERL_64BITINT THREADS PTHREAD USE_PERL OPTIONS_SUB= GDBM_DESC= GDBM_File extension PERL_MALLOC_DESC= Use Perl malloc Index: lang/perl5.18/Makefile =================================================================== --- lang/perl5.18/Makefile (revision 332250) +++ lang/perl5.18/Makefile (working copy) @@ -27,7 +27,7 @@ # it seems perl malloc has problems with threaded perl on FreeBSD OPTIONS_RADIO= EXCLUSIVE OPTIONS_RADIO_EXCLUSIVE= THREADS PERL_MALLOC -OPTIONS_DEFAULT= PERL_64BITINT PTHREAD USE_PERL +OPTIONS_DEFAULT= PERL_64BITINT THREADS PTHREAD USE_PERL EXCLUSIVE_DESC= Exclusive OPTIONS GDBM_DESC= GDBM_File extension --- threaded_perl.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: