aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2023-11-22 10:44:05 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2023-11-22 11:15:57 +0000
commit6a1b0c432c8ce215896a31c4dfcb09b62a2cac1f (patch)
treeb03fe90dd754bb65f660106d2e80a41fa57c7022
parent818c20c1aa833f8f648f80c77f4eb3aafdb00299 (diff)
downloadports-6a1b0c432c8ce215896a31c4dfcb09b62a2cac1f.tar.gz
ports-6a1b0c432c8ce215896a31c4dfcb09b62a2cac1f.zip
graphics/mesa-gallium-{va,vdpau}: Fix when X11 option is off
PR: 260703 Sponsored by: Beckhoff Automation GmbH & Co. KG
-rw-r--r--graphics/mesa-gallium-va/Makefile5
-rw-r--r--graphics/mesa-gallium-vdpau/Makefile4
2 files changed, 7 insertions, 2 deletions
diff --git a/graphics/mesa-gallium-va/Makefile b/graphics/mesa-gallium-va/Makefile
index 250d943c2f56..91a565557ce9 100644
--- a/graphics/mesa-gallium-va/Makefile
+++ b/graphics/mesa-gallium-va/Makefile
@@ -1,5 +1,6 @@
PORTNAME= mesa-gallium-va
PORTVERSION= ${MESAVERSION}
+PORTREVISION= 1
CATEGORIES= graphics
COMMENT= Mesa Gallium VAAPI drivers
@@ -54,7 +55,9 @@ MESON_ARGS+= -Dplatforms="x11"
MESON_ARGS+= -Dglx=disabled \
-Degl=disabled \
-Dopengl=false \
- -Dshared-glapi=disabled
+ -Dshared-glapi=disabled \
+ -Dxlib-lease=disabled \
+ -Dplatforms=""
.endif
.include "${MASTERDIR}/Makefile.targets"
diff --git a/graphics/mesa-gallium-vdpau/Makefile b/graphics/mesa-gallium-vdpau/Makefile
index 067bf93d3fd6..43cf846da711 100644
--- a/graphics/mesa-gallium-vdpau/Makefile
+++ b/graphics/mesa-gallium-vdpau/Makefile
@@ -1,5 +1,6 @@
PORTNAME= mesa-gallium-vdpau
PORTVERSION= ${MESAVERSION}
+PORTREVISION= 1
CATEGORIES= graphics
COMMENT= Mesa Gallium VDPAU drivers
@@ -53,7 +54,8 @@ MESON_ARGS+= -Dplatforms="x11"
MESON_ARGS+= -Dglx=disabled \
-Degl=disabled \
-Dopengl=false \
- -Dshared-glapi=disabled
+ -Dshared-glapi=disabled \
+ -Dplatforms=""
.endif
.include "${MASTERDIR}/Makefile.targets"