From 36aaaa968a61f880fe83fa2c4af0e0cd2869f139 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 19 Jul 2024 13:12:08 -0400 Subject: [PATCH] meson: move glx subdir after gallium build more dependency hell Reviewed-by: Adam Jackson Part-of: --- src/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/meson.build b/src/meson.build index f3dcac5b4bf..23d32c41a04 100644 --- a/src/meson.build +++ b/src/meson.build @@ -105,9 +105,6 @@ endif if with_gallium subdir('mesa') subdir('gallium') - if with_glx == 'dri' - subdir('glx') - endif # This has to be here since it requires libgallium, and subdir cannot # contain .. if with_tests @@ -117,6 +114,9 @@ if with_gallium subdir('mesa/state_tracker/tests') endif endif +if with_glx == 'dri' + subdir('glx') +endif if with_gbm subdir('gbm') else