Fix mingw build issue caused by "interface" preprocessor definition
authorPaul Fertser <fercerpav@gmail.com>
Wed, 7 Aug 2013 10:35:46 +0000 (14:35 +0400)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Fri, 9 Aug 2013 15:08:54 +0000 (17:08 +0200)
Due to a weird odditie of windows, mingw has to redefine "interface" to
"struct" in its headers as described e.g. at
https://bugzilla.redhat.com/show_bug.cgi?id=980270

So if some software includes windows.h before ftdi.h, it'll lead to a
build failure. This snippet, borrowed from libusb, fixes it.

Signed-off-by: Paul Fertser <fercerpav@gmail.com>

src/ftdi.h

index 15067c7..3d97dd9 100644 (file)
 #include <stdint.h>
 #include <sys/time.h>
 
+/* 'interface' might be defined as a macro on Windows, so we need to
+ * undefine it so as not to break the current libftdi API, because
+ * struct ftdi_context has an 'interface' member
+ * As this can be problematic if you include windows.h after ftdi.h
+ * in your sources, we force windows.h to be included first. */
+#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
+#include <windows.h>
+#if defined(interface)
+#undef interface
+#endif
+#endif
+
 /** FTDI chip type */
 enum ftdi_chip_type
 {