From 99616fe7993df37ee7a678efe60166f3b3cc2bfb Mon Sep 17 00:00:00 2001 From: X512 Date: Mon, 4 Jan 2021 22:13:09 -0600 Subject: [PATCH] meson: fix Haiku EGL build; no dri requirement Reviewed-by: Dylan Baker Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 719da783c32..932eb136681 100644 --- a/meson.build +++ b/meson.build @@ -432,7 +432,7 @@ if _egl == 'auto' with_dri and with_shared_glapi ) elif _egl == 'enabled' - if not with_dri + if not with_dri and not with_platform_haiku error('EGL requires dri') elif not with_shared_glapi error('EGL requires shared-glapi')