Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2019 22:43:46 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r513794 - in head/lang: perl5-devel perl5.26 perl5.28 perl5.30
Message-ID:  <201910042243.x94Mhkmv099930@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Fri Oct  4 22:43:46 2019
New Revision: 513794
URL: https://svnweb.freebsd.org/changeset/ports/513794

Log:
  The arch definitions used in the test for DTRACE functionality are
  missing the definition for powerpcspe, as well as some obscure mips*
  definitions.  This patch fixes that.
  
  There should be no need to bump PORTREVISION, because only those
  archs are affected, and we do not build packages for any of them
  in any case.
  
  PR:		239171
  Approved by:	mat

Modified:
  head/lang/perl5-devel/Makefile
  head/lang/perl5.26/Makefile
  head/lang/perl5.28/Makefile
  head/lang/perl5.30/Makefile

Modified: head/lang/perl5-devel/Makefile
==============================================================================
--- head/lang/perl5-devel/Makefile	Fri Oct  4 22:40:28 2019	(r513793)
+++ head/lang/perl5-devel/Makefile	Fri Oct  4 22:43:46 2019	(r513794)
@@ -150,8 +150,10 @@ OPTIONS_DEFAULT=	PERL_64BITINT THREADS MULTIPLICITY DT
 .if !exists(/usr/sbin/dtrace)
 OPTIONS_EXCLUDE=	DTRACE
 .endif
-.for a in aarch64 arm armeb armv6 armv7 mips mips64 mips64el mipsel mipsn32 powerpc \
-	powerpc64 sparc64
+.for a in aarch64 arm armv6 armv7 \
+	mips mips64 mips64el mips64elhf mips64hf mipsel mipselhf mipshf mipsn32 \
+	powerpc powerpc64 powerpcspe \
+	sparc64
 OPTIONS_EXCLUDE_${a}=	DTRACE
 .endfor
 

Modified: head/lang/perl5.26/Makefile
==============================================================================
--- head/lang/perl5.26/Makefile	Fri Oct  4 22:40:28 2019	(r513793)
+++ head/lang/perl5.26/Makefile	Fri Oct  4 22:43:46 2019	(r513794)
@@ -29,8 +29,10 @@ OPTIONS_DEFAULT=	PERL_64BITINT THREADS MULTIPLICITY DT
 .if !exists(/usr/sbin/dtrace)
 OPTIONS_EXCLUDE+=	DTRACE
 .endif
-.for a in aarch64 arm armeb armv6 armv7 mips mips64 mips64el mipsel mipsn32 powerpc \
-	powerpc64 sparc64
+.for a in aarch64 arm armv6 armv7 \
+	mips mips64 mips64el mips64elhf mips64hf mipsel mipselhf mipshf mipsn32 \
+	powerpc powerpc64 powerpcspe \
+	sparc64
 OPTIONS_EXCLUDE_${a}=	DTRACE
 .endfor
 

Modified: head/lang/perl5.28/Makefile
==============================================================================
--- head/lang/perl5.28/Makefile	Fri Oct  4 22:40:28 2019	(r513793)
+++ head/lang/perl5.28/Makefile	Fri Oct  4 22:43:46 2019	(r513794)
@@ -29,8 +29,10 @@ OPTIONS_DEFAULT=	PERL_64BITINT THREADS MULTIPLICITY DT
 .if !exists(/usr/sbin/dtrace)
 OPTIONS_EXCLUDE+=	DTRACE
 .endif
-.for a in aarch64 arm armeb armv6 armv7 mips mips64 mips64el mipsel mipsn32 powerpc \
-	powerpc64 sparc64
+.for a in aarch64 arm armv6 armv7 \
+	mips mips64 mips64el mips64elhf mips64hf mipsel mipselhf mipshf mipsn32 \
+	powerpc powerpc64 powerpcspe \
+	sparc64
 OPTIONS_EXCLUDE_${a}=	DTRACE
 .endfor
 

Modified: head/lang/perl5.30/Makefile
==============================================================================
--- head/lang/perl5.30/Makefile	Fri Oct  4 22:40:28 2019	(r513793)
+++ head/lang/perl5.30/Makefile	Fri Oct  4 22:43:46 2019	(r513794)
@@ -127,8 +127,10 @@ OPTIONS_DEFAULT=	PERL_64BITINT THREADS MULTIPLICITY DT
 .if !exists(/usr/sbin/dtrace)
 OPTIONS_EXCLUDE=	DTRACE
 .endif
-.for a in aarch64 arm armeb armv6 armv7 mips mips64 mips64el mipsel mipsn32 powerpc \
-	powerpc64 sparc64
+.for a in aarch64 arm armv6 armv7 \
+	mips mips64 mips64el mips64elhf mips64hf mipsel mipselhf mipshf mipsn32 \
+	powerpc powerpc64 powerpcspe \
+	sparc64
 OPTIONS_EXCLUDE_${a}=	DTRACE
 .endfor
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910042243.x94Mhkmv099930>