svn commit: r334225 - head/benchmarks/slowloris

Mathieu Arnold mat at FreeBSD.org
Mon Nov 18 16:49:09 UTC 2013


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 <bsd.port.pre.mk>
 
-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
 


More information about the svn-ports-all mailing list