summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2015-01-26 22:06:04 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2015-01-26 22:06:04 +0000
commitad215f66742e19bfaf3f681cd93c1d8a17f3f916 (patch)
tree1d6ba57e182cb443c6296ae6faeed74ea8c1935f /Makefile
parent18e60ed23627cb035e230f0a31fbd40216b39c5f (diff)
downloadflashrom-ad215f66742e19bfaf3f681cd93c1d8a17f3f916.tar.gz
Properly include current libusb-win32 header.
libusb-win32 is using a different header file name (lusb0_usb.h) for a while. Use that on Windows builds to make clear that this is currently the correct header to include. Hopefully this will change soonish by migrating away from libusb-0. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1877 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 67b3ef3..9eaf8d3 100644
--- a/Makefile
+++ b/Makefile
@@ -843,7 +843,12 @@ endef
export LIBPCI_TEST
define LIBUSB0_TEST
+#include "platform.h"
+#if IS_WINDOWS
+#include <lusb0_usb.h>
+#else
#include <usb.h>
+#endif
int main(int argc, char **argv)
{
(void) argc;