Use "" instead of <> for internal includes
authorSean McBride <sean@rogue-research.com>
Wed, 31 Oct 2012 15:09:31 +0000 (11:09 -0400)
committerLudovic Rousseau <ludovic.rousseau+github@gmail.com>
Fri, 15 Feb 2013 09:37:31 +0000 (10:37 +0100)
some libusbx include files were included with angle brackets, changed to
quotes. Needed to work better in Xcode project

libusb/core.c
libusb/io.c
libusb/libusbi.h
libusb/os/darwin_usb.c
libusb/sync.c
libusb/version_nano.h

index 5bface2..52908af 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <config.h>
+#include "config.h"
 
 #include <errno.h>
 #include <stdarg.h>
index 789bd68..7631bed 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <config.h>
+#include "config.h"
 #include <errno.h>
 #include <stdint.h>
 #include <stdlib.h>
index ac7f71c..e296a2c 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef LIBUSBI_H
 #define LIBUSBI_H
 
-#include <config.h>
+#include "config.h"
 
 #include <stddef.h>
 #include <stdint.h>
@@ -31,7 +31,7 @@
 #include <poll.h>
 #endif
 
-#include <libusb.h>
+#include "libusb.h"
 #include "version.h"
 
 /* Inside the libusbx code, mark all public functions as follows:
index d92a45e..ed4a933 100644 (file)
@@ -18,7 +18,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <config.h>
+#include "config.h"
 #include <ctype.h>
 #include <dirent.h>
 #include <errno.h>
index b9a72e4..55d4376 100644 (file)
@@ -17,7 +17,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <config.h>
+#include "config.h"
 #include <errno.h>
 #include <stdint.h>
 #include <stdlib.h>
index c6aa34d..b5f9988 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 10604
+#define LIBUSB_NANO 10605