summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Tsoy <alexander@tsoy.me>2018-08-15 23:54:46 +0300
committerAndres Gomez <agomez@igalia.com>2018-08-16 23:23:19 +0300
commitf3fc2d40fe5051834ee4f7678fbf039f7649775c (patch)
tree39f0d003e2da6fe68f29e8b13f673715b36e20d1
parent4477635b6939467727b8e9db19df9e502ad4b0ca (diff)
meson: fix build for egl platform_x11 without dri3 and gbm
Compiling EGL's platform_x11 without dri3 and gbm yields this compile failure: platform_x11 needs inc_loader: ../mesa-18.2.0-rc2/src/egl/drivers/dri2/platform_x11.c:48:10: fatal error: loader.h: No such file or directory #include "loader.h" ^~~~~~~~~~ Fixes: 108d257a1685 ("meson: build libEGL") Bugzilla: https://bugs.gentoo.org/663534 Reviewed-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit 9a96bf0ecd071219cb975fbd64f5c68849fd5697)
-rw-r--r--src/egl/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/meson.build b/src/egl/meson.build
index 89a84fd8908..5c0842daed3 100644
--- a/src/egl/meson.build
+++ b/src/egl/meson.build
@@ -99,10 +99,10 @@ endif
if with_platform_x11
files_egl += files('drivers/dri2/platform_x11.c')
+ incs_for_egl += inc_loader
if with_dri3
files_egl += files('drivers/dri2/platform_x11_dri3.c')
link_for_egl += libloader_dri3_helper
- incs_for_egl += inc_loader
endif
deps_for_egl += [dep_x11_xcb, dep_xcb_dri2, dep_xcb_xfixes]
endif