summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-11-09 10:20:31 -0800
committerEmil Velikov <emil.l.velikov@gmail.com>2016-11-23 13:57:49 +0000
commit0a2c318d9c48bce0d5865be69c008631a5f98e87 (patch)
tree592a2373139cc46ed9a58722e4f97e2c1470ddfa
parent8dab75a2eef2fc4d63416a42df651268c135b34a (diff)
downloadexternal_mesa3d-0a2c318d9c48bce0d5865be69c008631a5f98e87.zip
external_mesa3d-0a2c318d9c48bce0d5865be69c008631a5f98e87.tar.gz
external_mesa3d-0a2c318d9c48bce0d5865be69c008631a5f98e87.tar.bz2
vulkan/wsi/wayland: Include pthread.h
We use pthreads and, for some reason, it wasn't getting included Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Cc: "13.0" <mesa-stable@lists.freedesktop.org> (cherry picked from commit 3b6abfc69ac485006cbedba7bcad234888cad44f)
-rw-r--r--src/vulkan/wsi/wsi_common_wayland.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vulkan/wsi/wsi_common_wayland.c b/src/vulkan/wsi/wsi_common_wayland.c
index 196ee28..79f7e96 100644
--- a/src/vulkan/wsi/wsi_common_wayland.c
+++ b/src/vulkan/wsi/wsi_common_wayland.c
@@ -30,6 +30,7 @@
#include <unistd.h>
#include <errno.h>
#include <string.h>
+#include <pthread.h>
#include "wsi_common_wayland.h"