From 19b3f790b9c3cf7f62090b4f14c53640048d1dde Mon Sep 17 00:00:00 2001 From: Andres Gomez Date: Sat, 3 Jun 2017 02:30:32 +0200 Subject: [PATCH] Build fix for x11_egl target builds The combination of recent refactor on release branch and merge to master resulted in a compilation error for the XInitThreads symbol when using the x11_egl built target. Components: Framework VK-GL-CTS Issue: 467 Change-Id: Iba0803e8b73462bd66ab7803a6c90bfd40d9164c --- framework/platform/lnx/tcuLnxPlatform.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/framework/platform/lnx/tcuLnxPlatform.cpp b/framework/platform/lnx/tcuLnxPlatform.cpp index 1b27702..0c7bc94 100644 --- a/framework/platform/lnx/tcuLnxPlatform.cpp +++ b/framework/platform/lnx/tcuLnxPlatform.cpp @@ -30,6 +30,10 @@ #include "gluPlatform.hpp" #include "vkPlatform.hpp" +#if defined (DEQP_SUPPORT_X11) +# include +#endif // DEQP_SUPPORT_X11 + #if defined (DEQP_SUPPORT_GLX) # include "tcuLnxX11GlxPlatform.hpp" #endif // DEQP_SUPPORT_GLX -- 2.7.4