diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-02-22 23:40:01 +0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-03-15 11:26:20 +0100 |
commit | 32478cb6ed7459a2572dd1b2485b567ee5860980 (patch) | |
tree | bf47d64caa5214eb9d32f7b859c10e51095b64b6 | |
parent | d312378e59658473aa91aa15c67ec6200d92e5ff (diff) |
meson: fix generic location of vss headers
This is a left-over, despite requesting the change before the merge.
Fixes: commit 8821a389 ("configure, meson: replace VSS SDK checks and options with --enable-vss-sdk")
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20220222194008.610377-2-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 2d6601467f..80c48e43f0 100644 --- a/meson.build +++ b/meson.build @@ -1957,7 +1957,7 @@ have_vss = false if targetos == 'windows' and link_language == 'cpp' have_vss = cxx.compiles(''' #define __MIDL_user_allocate_free_DEFINED__ - #include <inc/win2003/vss.h> + #include <vss.h> int main(void) { return VSS_CTX_BACKUP; }''') endif |