From e4387430410c81cf339923b6d041a2e9b076293d Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 2 Dec 2011 15:27:33 +0100 Subject: [PATCH] libwine: Include a couple of extra system headers to fix the compilation on Solaris. --- libs/wine/mmap.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/wine/mmap.c b/libs/wine/mmap.c index 1529a85de47..6ec814ab0ec 100644 --- a/libs/wine/mmap.c +++ b/libs/wine/mmap.c @@ -23,11 +23,15 @@ #include #include +#include #include #include #include #include #include +#ifdef HAVE_SYS_WAIT_H +#include +#endif #ifdef HAVE_SYS_MMAN_H #include #endif