git: bdd14a1e85b2 - main - x11/pixman: unbreak build on riscv64 after 4f1440897063

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Mon, 19 May 2025 15:31:52 UTC
The branch main has been updated by jbeich:

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

commit bdd14a1e85b23511178c6f9717def96a5ef213ea
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2025-05-19 15:23:13 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2025-05-19 15:30:04 +0000

    x11/pixman: unbreak build on riscv64 after 4f1440897063
    
    meson.build:395:2: ERROR: Problem encountered: RISC-V Vector Support unavailable, but required
    
    PR:             286904
    Reported by:    Rich Dunkle
---
 x11/pixman/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile
index 1c0f289b7f33..24bcdd9e55aa 100644
--- a/x11/pixman/Makefile
+++ b/x11/pixman/Makefile
@@ -62,7 +62,7 @@ MESON_ARGS+=	-Dvmx=enabled
 .else
 MESON_ARGS+=	-Dvmx=disabled
 .endif
-.if ${ARCH} == riscv64
+.if ${ARCH} == riscv64 && 0 # XXX Convert to elf_aux_info + HWCAP_ISA_V
 MESON_ARGS+=	-Drvv=enabled
 .else
 MESON_ARGS+=	-Drvv=disabled