Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Jul 2023 22:59:57 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 9e2602394b77 - main - graphics/gegl: fix build on armv7
Message-ID:  <202307302259.36UMxv14001536@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=9e2602394b77661efe58bb191416048e3ca7c7c7

commit 9e2602394b77661efe58bb191416048e3ca7c7c7
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2023-07-28 21:01:02 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2023-07-30 22:59:09 +0000

    graphics/gegl: fix build on armv7
    
    OpenMP is not supported on armv7.  Fix the build by disabling its use.
    
    Approved by:    portmgr (build fix blanket)
    MFH:            2023Q3
---
 graphics/gegl/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/graphics/gegl/Makefile b/graphics/gegl/Makefile
index dab8bea59059..2e67b06036ae 100644
--- a/graphics/gegl/Makefile
+++ b/graphics/gegl/Makefile
@@ -36,7 +36,10 @@ MESON_ARGS=	-Ddocs=false \
 		-Dmaxflow=disabled \
 		-Dmrg=disabled \
 		-Dpygobject=disabled \
-		-Dlua=disabled
+		-Dlua=disabled \
+		${MESON_ARGS_${ARCH}}
+MESON_ARGS_armv6=	-Dopenmp=disabled
+MESON_ARGS_armv7=	-Dopenmp=disabled
 
 GEGL_SHLIB=	0.445.1
 GEGL_VER=	0.4



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