Commit 4ef8aca3d1 for qemu.org
commit 4ef8aca3d186126153d2f90cc007b656063060ab
Author: Stefan Weil <sw@weilnetz.de>
Date: Wed Mar 18 18:45:22 2026 +0100
Fix include statement for u2f-emu.h
All examples on https://github.com/Agnoctopus/libu2f-emu/ don't
simply include u2f-emu.h without any added directory.
The additional include directory does not exist when libu2f
was built with meson.
It's up to pkgconfig to make sure that u2f-emu.h is found in any case.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
diff --git a/hw/usb/u2f-emulated.c b/hw/usb/u2f-emulated.c
index 196d05a83a..b82a315019 100644
--- a/hw/usb/u2f-emulated.c
+++ b/hw/usb/u2f-emulated.c
@@ -31,7 +31,7 @@
#include "hw/usb/usb.h"
#include "hw/core/qdev-properties.h"
-#include <u2f-emu/u2f-emu.h>
+#include <u2f-emu.h>
#include "u2f.h"