diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2012-11-28 22:25:35 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2013-01-10 15:33:13 +0000 |
commit | a2037d7080ae64ea55f7d76971716346aa3ec6d3 (patch) | |
tree | 526b82afde6d03442c970cec9d5bdfe28bbeb03d | |
parent | f57100bb36eae3b4d75f3c315973405f705b8de6 (diff) |
hw/xwin: Fix MinGW build of winSetAppModelID.c
Add missing #include <pthread.h>
In file included from /jhbuild/checkout/xorg/xserver/hw/xwin/winSetAppUserModelID.c:31:0:
/jhbuild/checkout/xorg/xserver/hw/xwin/winwindow.h:140:11: error: expected declaration specifiers or ‘...’ before ‘pthread_t’
/jhbuild/checkout/xorg/xserver/hw/xwin/winwindow.h:141:11: error: expected declaration specifiers or ‘...’ before ‘pthread_t’
/jhbuild/checkout/xorg/xserver/hw/xwin/winwindow.h:142:11: error: expected declaration specifiers or ‘...’ before ‘pthread_mutex_t’
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
-rw-r--r-- | hw/xwin/winSetAppUserModelID.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/xwin/winSetAppUserModelID.c b/hw/xwin/winSetAppUserModelID.c index ce9da5e7d..41615e19c 100644 --- a/hw/xwin/winSetAppUserModelID.c +++ b/hw/xwin/winSetAppUserModelID.c @@ -28,6 +28,7 @@ #include <X11/Xlib.h> #include <X11/Xproto.h> #include <X11/Xwindows.h> +#include <pthread.h> #include "winwindow.h" #include "os.h" #include "winmsg.h" |