[libvirt PATCH v2 09/56] util: explicitly include windows.h

Daniel P. Berrangé posted 56 patches 6 years ago
There is a newer version of this series
[libvirt PATCH v2 09/56] util: explicitly include windows.h
Posted by Daniel P. Berrangé 6 years ago
The virProcess code relies on windows.h and is getting it
indirectly via some GNULIB header fixes. This dependancy
needs to be made explicit.

Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 src/util/virprocess.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/util/virprocess.c b/src/util/virprocess.c
index d5589daf6a..d8ee3142da 100644
--- a/src/util/virprocess.c
+++ b/src/util/virprocess.c
@@ -50,6 +50,11 @@
 # include <sys/cpuset.h>
 #endif
 
+#ifdef WIN32
+# define WIN32_LEAN_AND_MEAN
+# include <windows.h>
+#endif
+
 #include "viratomic.h"
 #include "virprocess.h"
 #include "virerror.h"
-- 
2.24.1