diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-01-31 23:47:37 +0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-02-21 10:35:53 +0100 |
commit | 61fb0bd1f6eaec5f9715031df79c7bbba72acbd9 (patch) | |
tree | cf27930726d6aa53643a0021f9ed7e8cebfb31aa /qga/vss-win32/provider.cpp | |
parent | 1dbb74e86f15116a72996bf9614baf29a0a43b57 (diff) | |
download | qemu-61fb0bd1f6eaec5f9715031df79c7bbba72acbd9.zip qemu-61fb0bd1f6eaec5f9715031df79c7bbba72acbd9.tar.gz qemu-61fb0bd1f6eaec5f9715031df79c7bbba72acbd9.tar.bz2 |
qga/vss: use standard windows headers location
Stop using special paths with outdated headers from an old SDK.
Instead, use standard include paths.
You can still build against the old SDK by running configure with
--extra-cxxflags="-isystem /path/to/inc/win2003/"
(this also allows to build against MinGW headers, which are currently
broken as in 9.0)
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qga/vss-win32/provider.cpp')
-rw-r--r-- | qga/vss-win32/provider.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qga/vss-win32/provider.cpp b/qga/vss-win32/provider.cpp index 72d8b0e..fd187fb 100644 --- a/qga/vss-win32/provider.cpp +++ b/qga/vss-win32/provider.cpp @@ -12,8 +12,8 @@ #include "qemu/osdep.h" #include "vss-common.h" -#include <inc/win2003/vscoordint.h> -#include <inc/win2003/vsprov.h> +#include <vscoordint.h> +#include <vsprov.h> #define VSS_TIMEOUT_MSEC (60*1000) |