git: bd9737e9ee0c - main - math/fftw3: enable OPENMP by default on powerpc64* and riscv64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Jun 2022 13:36:30 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=bd9737e9ee0c14815498c37e5eb98cef46efa3b3
commit bd9737e9ee0c14815498c37e5eb98cef46efa3b3
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-06-21 13:35:35 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-06-21 13:36:28 +0000
math/fftw3: enable OPENMP by default on powerpc64* and riscv64
---
math/fftw3/Makefile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/math/fftw3/Makefile b/math/fftw3/Makefile
index 4ebae3a98657..d1879ddaabe4 100644
--- a/math/fftw3/Makefile
+++ b/math/fftw3/Makefile
@@ -2,6 +2,7 @@
PORTNAME= fftw3
DISTVERSION= 3.3.10
+PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= http://www.fftw.org/ \
ftp://ftp.fftw.org/pub/fftw/
@@ -41,6 +42,9 @@ OPTIONS_DEFINE= G77_WRAPPERS OPENMP OPENMPI OPTIMIZED_CFLAGS SIMD
OPTIONS_DEFAULT= OPTIMIZED_CFLAGS SIMD
OPTIONS_DEFAULT_aarch64= OPENMP
OPTIONS_DEFAULT_amd64= OPENMP
+OPTIONS_DEFAULT_powerpc64= OPENMP
+OPTIONS_DEFAULT_powerpc64le= OPENMP
+OPTIONS_DEFAULT_riscv64= OPENMP
.if ${FFTW3_FLAVOR} == "quad"
OPTIONS_EXCLUDE+= OPENMPI
.endif