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:16:39 +0100
commit9d6ba37ad472bd97eb8457d9b2682b4f95df4b73 (patch)
tree024d90d94c352794df5bc3cac091a521ebb1a1b4 /contrib/depends/patches
parentMerge pull request #8030 (diff)
downloadmonero-9d6ba37ad472bd97eb8457d9b2682b4f95df4b73.tar.xz
hidapi: 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