aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2023-04-02 06:58:06 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2023-04-02 11:50:11 +0000
commit608a2f1ea90470d8e99eeb47090d97404f8d7c2b (patch)
tree0b4b6d86e4e637aff3bd0a19a6fe93b02db10e03
parent22fc57826007d2aae04c257b8adbcc40c154bf5d (diff)
graphics/libglvnd: fix build on powerpc
meson.build:82:4: ERROR: Problem encountered: No ASM available for freebsd (big endian)
-rw-r--r--graphics/libglvnd/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/libglvnd/Makefile b/graphics/libglvnd/Makefile
index 0158ae6f2fdf..ece9248ce38e 100644
--- a/graphics/libglvnd/Makefile
+++ b/graphics/libglvnd/Makefile
@@ -33,6 +33,8 @@ CFLAGS+= -no-integrated-as
.elif ${ARCH} == powerpc64
BUILD_DEPENDS= as:devel/binutils
CFLAGS+= -no-integrated-as -O0
+.elif ${ARCH} == powerpc
+MESON_ARGS+= -Dasm=disabled
.endif
# Lots of software expects gl.pc even when it can build with EGL only