aboutsummaryrefslogtreecommitdiff
path: root/contrib/depends/patches
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2021-11-10 00:40:54 +0100
committerselsta <selsta@sent.at>2021-11-10 03:17:52 +0100
commita30928fe1af4a86f1b1fab278bdd14709e2881ed (patch)
tree2ccd3ecd4487c08eb444cfb5b3f3c7310faf45a5 /contrib/depends/patches
parentMerge pull request #8029 (diff)
downloadmonero-a30928fe1af4a86f1b1fab278bdd14709e2881ed.tar.xz
depends: bump hidapi to 0.11.0
Diffstat (limited to 'contrib/depends/patches')
-rw-r--r--contrib/depends/patches/hidapi/missing_win_include.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/depends/patches/hidapi/missing_win_include.patch b/contrib/depends/patches/hidapi/missing_win_include.patch
new file mode 100644
index 000000000..5bbe82def
--- /dev/null
+++ b/contrib/depends/patches/hidapi/missing_win_include.patch
@@ -0,0 +1,21 @@
+From a77b066311da42ed7654e39c0356a3b951b2e296 Mon Sep 17 00:00:00 2001
+From: selsta <selsta@sent.at>
+Date: Wed, 10 Nov 2021 02:28:54 +0100
+Subject: [PATCH] windows: add missing include for mingw32
+
+---
+ windows/hid.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/windows/hid.c b/windows/hid.c
+index 24756a4..6d8394c 100644
+--- a/windows/hid.c
++++ b/windows/hid.c
+@@ -33,6 +33,7 @@ typedef LONG NTSTATUS;
+ #endif
+
+ #ifdef __MINGW32__
++#include <devpropdef.h>
+ #include <ntdef.h>
+ #include <winbase.h>
+ #endif