svn commit: r513794 - in head/lang: perl5-devel perl5.26 perl5.28 perl5.30
Mark Linimon
linimon at FreeBSD.org
Fri Oct 4 22:43:47 UTC 2019
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
More information about the svn-ports-all
mailing list