[Mesa-dev] [PATCH 2/2] meson: Guard the gallium dri componenet
Dylan Baker
dylan at pnwbakers.com
Wed Nov 15 01:08:18 UTC 2017
Currently the target has a redundant guard, and the state tracker isn't
properly guarded.
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
src/gallium/meson.build | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/gallium/meson.build b/src/gallium/meson.build
index 7ccf4819079..07a97f72490 100644
--- a/src/gallium/meson.build
+++ b/src/gallium/meson.build
@@ -73,7 +73,9 @@ endif
if with_glx == 'gallium-xlib'
subdir('winsys/sw/xlib')
endif
-subdir('state_trackers/dri')
+if with_dri
+ subdir('state_trackers/dri')
+endif
if with_osmesa == 'gallium'
subdir('state_trackers/osmesa')
endif
@@ -87,7 +89,7 @@ endif
# TODO: SWR
# TODO: virgl
# TODO: clover
-if with_dri and with_gallium
+if with_dri
subdir('targets/dri')
endif
if with_osmesa == 'gallium'
--
2.15.0
More information about the mesa-dev
mailing list