Files
nixpkgs/pkgs/by-name/ki/kinect-audio-setup/libusb-1-import-path.patch
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

24 lines
612 B
Diff

commit 02fd6c4355809e1bff7c66d478e88f30bedde13b
Author: Nicolas Berbiche <nicolas@normie.dev>
Date: Wed May 5 23:14:56 2021 -0400
fix libusb include for Linux
diff --git a/kinect_upload_fw/kinect_upload_fw.c b/kinect_upload_fw/kinect_upload_fw.c
index 1bd4102..351c94f 100644
--- a/kinect_upload_fw/kinect_upload_fw.c
+++ b/kinect_upload_fw/kinect_upload_fw.c
@@ -35,7 +35,12 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
+
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(_WIN32)
#include <libusb.h>
+#else
+#include <libusb-1.0/libusb.h>
+#endif
#include "endian.h"