Skip to content

Commit

Permalink
graphics/gegl: fix build on armv7
Browse files Browse the repository at this point in the history
OpenMP is not supported on armv7.  Fix the build by disabling its use.

Approved by:	portmgr (build fix blanket)
MFH:		2023Q3
  • Loading branch information
clausecker committed Jul 30, 2023
1 parent 931dd7a commit 9e26023
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion graphics/gegl/Makefile
Expand Up @@ -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
Expand Down

0 comments on commit 9e26023

Please sign in to comment.