From owner-freebsd-perl@FreeBSD.ORG Fri Nov 1 05:52:45 2013 Return-Path: Delivered-To: perl@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 02306547 for ; Fri, 1 Nov 2013 05:52:45 +0000 (UTC) (envelope-from parv@pair.com) Received: from cdptpa-oedge-vip.email.rr.com (cdptpa-outbound-snat.email.rr.com [107.14.166.225]) by mx1.freebsd.org (Postfix) with ESMTP id BA5912FE6 for ; Fri, 1 Nov 2013 05:52:44 +0000 (UTC) Received: from [204.210.114.114] ([204.210.114.114:37046] helo=localhost.hawaii.res.rr.com) by cdptpa-oedge03 (envelope-from ) (ecelerity 3.5.0.35861 r(Momo-dev:tip)) with ESMTP id 89/EE-19454-4A143725; Fri, 01 Nov 2013 05:52:37 +0000 Received: by localhost.hawaii.res.rr.com (Postfix, from userid 1000) id 782945CB6; Thu, 31 Oct 2013 19:56:30 -1000 (HST) Date: Thu, 31 Oct 2013 19:56:30 -1000 From: Parv To: Mathieu Arnold Subject: Re: =?iso-8859-1?B?W2V4cC1ydW5dwqBbUEFU?= =?iso-8859-1?B?Q0hd?= lang/perl5.1*: Enable THREADS by default. Message-ID: <20131101055630.GA1541@holstein.holy.cow> Mail-Followup-To: Mathieu Arnold , FreeBSD-gnats-submit@freebsd.org, perl@FreeBSD.org References: <20131031153114.400B914269C@aragorn.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20131031153114.400B914269C@aragorn.in.absolight.net> X-RR-Connecting-IP: 107.14.168.142:25 X-Cloudmark-Score: 0 Cc: perl@FreeBSD.org, FreeBSD-gnats-submit@freebsd.org X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 01 Nov 2013 05:52:45 -0000 in message <20131031153114.400B914269C@aragorn.in.absolight.net>, wrote Mathieu Arnold thusly... > > > >Synopsis: [exp-run] [PATCH] lang/perl5.1*: Enable THREADS by default. ... > Let's try and see how things go when all perl are threaded. ... > >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 How about including "-Duselongdouble" also along with already included "-Duse64bitint"? > EXCLUSIVE_DESC= Exclusive OPTIONS > GDBM_DESC= GDBM_File extension > --- threaded_perl.patch ends here --- --