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

Daniel P. Berrangé berrange at redhat.com
Tue Jan 28 13:10:50 UTC 2020


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 at redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange at 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




More information about the libvir-list mailing list