From owner-svn-ports-all@FreeBSD.ORG Mon Nov 18 16:49:09 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 268693C1; Mon, 18 Nov 2013 16:49:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 1692A2714; Mon, 18 Nov 2013 16:49:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAIGn84f086507; Mon, 18 Nov 2013 16:49:08 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAIGn8tK086506; Mon, 18 Nov 2013 16:49:08 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201311181649.rAIGn8tK086506@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 18 Nov 2013 16:49:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334225 - head/benchmarks/slowloris X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Nov 2013 16:49:09 -0000 Author: mat Date: Mon Nov 18 16:49:08 2013 New Revision: 334225 URL: http://svnweb.freebsd.org/changeset/ports/334225 Log: The default perl threads option changed. Approved by: with perl@ hat. Modified: head/benchmarks/slowloris/Makefile Modified: head/benchmarks/slowloris/Makefile ============================================================================== --- head/benchmarks/slowloris/Makefile Mon Nov 18 16:46:54 2013 (r334224) +++ head/benchmarks/slowloris/Makefile Mon Nov 18 16:49:08 2013 (r334225) @@ -20,13 +20,15 @@ PLIST_FILES= bin/slowloris NO_STAGE= yes .include -PERL_THREADS= no +PERL_THREADS= yes .if exists(${PERL}) PERL_THREADS!= ${PERL} -V::usethreads .if ${PERL_THREADS} == "'define';" RUN_DEPENDS+= p5-threads-shared>=0:${PORTSDIR}/devel/p5-threads-shared PERL_THREADS= yes +.else +PERL_THREADS= no .endif .endif