[Mesa-dev] [PATCH v2 06/49] gallium: fix ddebug on windows
Dylan Baker
dylan at pnwbakers.com
Tue Jul 10 23:17:34 UTC 2018
By including the proper headers for getpid and for mkdir.
Signed-off-by: Dylan Baker <dylan.c.baker at intel.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>
---
src/gallium/auxiliary/driver_ddebug/dd_util.h | 6 +++++-
src/gallium/auxiliary/meson.build | 6 ++++++
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/src/gallium/auxiliary/driver_ddebug/dd_util.h b/src/gallium/auxiliary/driver_ddebug/dd_util.h
index 8953e34d588..bcf026f2ef9 100644
--- a/src/gallium/auxiliary/driver_ddebug/dd_util.h
+++ b/src/gallium/auxiliary/driver_ddebug/dd_util.h
@@ -37,9 +37,13 @@
#include "util/u_debug.h"
#include "pipe/p_config.h"
-#ifdef PIPE_OS_UNIX
+#if defined(PIPE_OS_UNIX)
#include <unistd.h>
#include <sys/stat.h>
+#elif defined(PIPE_OS_WINDOWS)
+#include <direct.h>
+#include <process.h>
+#define mkdir(dir, mode) _mkdir(dir)
#endif
diff --git a/src/gallium/auxiliary/meson.build b/src/gallium/auxiliary/meson.build
index 98542d7ef3e..4facaae08d6 100644
--- a/src/gallium/auxiliary/meson.build
+++ b/src/gallium/auxiliary/meson.build
@@ -106,6 +106,12 @@ files_libgallium = files(
'driver_trace/tr_screen.h',
'driver_trace/tr_texture.c',
'driver_trace/tr_texture.h',
+ 'driver_ddebug/dd_context.c',
+ 'driver_ddebug/dd_draw.c',
+ 'driver_ddebug/dd_pipe.h',
+ 'driver_ddebug/dd_public.h',
+ 'driver_ddebug/dd_screen.c',
+ 'driver_ddebug/dd_util.h',
'hud/font.c',
'hud/font.h',
'hud/hud_context.c',
--
2.18.0
More information about the mesa-dev
mailing list