libusb 0.3.4 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/Gemfile +1 -0
  5. data/History.md +10 -0
  6. data/README.md +19 -6
  7. data/Rakefile +1 -1
  8. data/ext/extconf.rb +17 -1
  9. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/AUTHORS +18 -6
  10. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/COPYING +0 -0
  11. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/ChangeLog +58 -1
  12. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/INSTALL +0 -0
  13. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/Makefile.am +6 -1
  14. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/Makefile.in +248 -174
  15. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/NEWS +2 -2
  16. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/PORTING +0 -0
  17. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/README +2 -1
  18. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/TODO +0 -0
  19. data/ext/libusbx-1.0.17/Xcode/common.xcconfig +40 -0
  20. data/ext/libusbx-1.0.17/Xcode/config.h +28 -0
  21. data/ext/libusbx-1.0.17/Xcode/debug.xcconfig +29 -0
  22. data/ext/libusbx-1.0.17/Xcode/libusbx.xcconfig +21 -0
  23. data/ext/libusbx-1.0.17/Xcode/libusbx.xcodeproj/project.pbxproj +864 -0
  24. data/ext/libusbx-1.0.17/Xcode/libusbx_debug.xcconfig +21 -0
  25. data/ext/libusbx-1.0.17/Xcode/libusbx_release.xcconfig +21 -0
  26. data/ext/libusbx-1.0.17/Xcode/release.xcconfig +29 -0
  27. data/ext/libusbx-1.0.17/aclocal.m4 +1112 -0
  28. data/ext/libusbx-1.0.17/android/README +114 -0
  29. data/ext/libusbx-1.0.17/android/config.h +90 -0
  30. data/ext/libusbx-1.0.17/android/jni/Android.mk +23 -0
  31. data/ext/libusbx-1.0.17/android/jni/Application.mk +19 -0
  32. data/ext/libusbx-1.0.17/android/jni/examples.mk +134 -0
  33. data/ext/libusbx-1.0.17/android/jni/libusb.mk +54 -0
  34. data/ext/libusbx-1.0.17/android/jni/tests.mk +56 -0
  35. data/ext/libusbx-1.0.17/compile +347 -0
  36. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/config.guess +164 -130
  37. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/config.h.in +37 -1
  38. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/config.sub +174 -89
  39. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/configure +723 -302
  40. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/configure.ac +71 -20
  41. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/depcomp +345 -185
  42. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/doc/Makefile.am +0 -0
  43. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/doc/Makefile.in +95 -32
  44. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/doc/doxygen.cfg.in +1 -1
  45. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/Makefile.am +5 -4
  46. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/Makefile.in +208 -104
  47. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/dpfp.c +1 -1
  48. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/dpfp_threaded.c +1 -1
  49. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/ezusb.c +188 -8
  50. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/ezusb.h +18 -5
  51. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/fxload.c +90 -64
  52. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/getopt/getopt.c +0 -0
  53. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/getopt/getopt.h +0 -0
  54. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/getopt/getopt1.c +0 -0
  55. data/ext/libusbx-1.0.17/examples/hotplugtest.c +97 -0
  56. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/listdevs.c +12 -4
  57. data/ext/libusbx-1.0.17/examples/sam3u_benchmark.c +193 -0
  58. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/xusb.c +106 -49
  59. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/install-sh +21 -14
  60. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb-1.0.pc.in +1 -1
  61. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/Makefile.am +29 -10
  62. data/ext/libusbx-1.0.17/libusb/Makefile.in +914 -0
  63. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/core.c +378 -87
  64. data/ext/libusbx-1.0.17/libusb/descriptor.c +1199 -0
  65. data/ext/libusbx-1.0.17/libusb/hotplug.c +322 -0
  66. data/ext/libusbx-1.0.17/libusb/hotplug.h +82 -0
  67. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/io.c +182 -62
  68. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusb-1.0.def +32 -0
  69. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusb-1.0.rc +2 -0
  70. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusb.h +481 -32
  71. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusbi.h +135 -38
  72. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/darwin_usb.c +591 -496
  73. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/darwin_usb.h +39 -46
  74. data/ext/libusbx-1.0.17/libusb/os/linux_netlink.c +345 -0
  75. data/ext/libusbx-1.0.17/libusb/os/linux_udev.c +306 -0
  76. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/linux_usbfs.c +653 -617
  77. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/linux_usbfs.h +32 -0
  78. data/ext/{libusbx-1.0.14/libusb/os/openbsd_usb.c → libusbx-1.0.17/libusb/os/netbsd_usb.c} +70 -63
  79. data/ext/libusbx-1.0.17/libusb/os/openbsd_usb.c +823 -0
  80. data/ext/libusbx-1.0.17/libusb/os/poll_posix.c +51 -0
  81. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/poll_posix.h +2 -1
  82. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/poll_windows.c +85 -106
  83. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/poll_windows.h +14 -3
  84. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_posix.c +3 -1
  85. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_posix.h +0 -0
  86. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_windows.c +6 -5
  87. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_windows.h +0 -0
  88. data/ext/libusbx-1.0.17/libusb/os/wince_usb.c +1026 -0
  89. data/ext/libusbx-1.0.17/libusb/os/wince_usb.h +131 -0
  90. data/ext/libusbx-1.0.17/libusb/os/windows_common.h +108 -0
  91. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/windows_usb.c +92 -57
  92. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/windows_usb.h +2 -63
  93. data/ext/libusbx-1.0.17/libusb/strerror.c +184 -0
  94. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/sync.c +24 -38
  95. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/version.h +1 -1
  96. data/ext/libusbx-1.0.17/libusb/version_nano.h +1 -0
  97. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/ltmain.sh +60 -41
  98. data/ext/{libusbx-1.0.14/aclocal.m4 → libusbx-1.0.17/m4/libtool.m4} +229 -1723
  99. data/ext/libusbx-1.0.17/m4/ltoptions.m4 +384 -0
  100. data/ext/libusbx-1.0.17/m4/ltsugar.m4 +123 -0
  101. data/ext/libusbx-1.0.17/m4/ltversion.m4 +23 -0
  102. data/ext/libusbx-1.0.17/m4/lt~obsolete.m4 +98 -0
  103. data/ext/libusbx-1.0.17/missing +215 -0
  104. data/ext/libusbx-1.0.17/tests/Makefile.am +6 -0
  105. data/ext/libusbx-1.0.17/tests/Makefile.in +583 -0
  106. data/ext/libusbx-1.0.17/tests/libusbx_testlib.h +107 -0
  107. data/ext/libusbx-1.0.17/tests/stress.c +160 -0
  108. data/ext/libusbx-1.0.17/tests/testlib.c +276 -0
  109. data/lib/libusb.rb +4 -0
  110. data/lib/libusb/call.rb +43 -1
  111. data/lib/libusb/constants.rb +5 -0
  112. data/lib/libusb/context.rb +100 -0
  113. data/lib/libusb/dev_handle.rb +27 -0
  114. data/lib/libusb/device.rb +10 -4
  115. data/lib/libusb/version_gem.rb +1 -1
  116. data/test/test_libusb_capability.rb +2 -2
  117. data/test/test_libusb_compat.rb +2 -2
  118. data/test/test_libusb_compat_mass_storage.rb +2 -2
  119. data/test/test_libusb_descriptors.rb +4 -2
  120. data/test/test_libusb_event_machine.rb +2 -2
  121. data/test/test_libusb_gc.rb +2 -2
  122. data/test/test_libusb_hotplug.rb +115 -0
  123. data/test/test_libusb_iso_transfer.rb +3 -3
  124. data/test/test_libusb_mass_storage.rb +6 -16
  125. data/test/test_libusb_mass_storage2.rb +26 -3
  126. data/test/test_libusb_structs.rb +2 -2
  127. data/test/test_libusb_threads.rb +2 -2
  128. data/test/test_libusb_version.rb +2 -2
  129. metadata +127 -68
  130. metadata.gz.sig +0 -0
  131. data/ext/libusbx-1.0.14/THANKS +0 -7
  132. data/ext/libusbx-1.0.14/compile +0 -143
  133. data/ext/libusbx-1.0.14/libusb/Makefile.in +0 -721
  134. data/ext/libusbx-1.0.14/libusb/descriptor.c +0 -731
  135. data/ext/libusbx-1.0.14/libusb/version_nano.h +0 -1
  136. data/ext/libusbx-1.0.14/missing +0 -376
@@ -1,2 +1,2 @@
1
- For the latest libusbx news, please refer to the ChangeLog file, or visit:
2
- http://libusbx.org
1
+ For the latest libusbx news, please refer to the ChangeLog file, or visit:
2
+ http://libusbx.org
File without changes
@@ -25,4 +25,5 @@ http://mailing-list.libusbx.org
25
25
  - Hans de Goede <hdegoede@redhat.com>
26
26
  - Xiaofan Chen <xiaofanc@gmail.com>
27
27
  - Ludovic Rousseau <ludovic.rousseau@gmail.com>
28
- (use the mailing list rather than mailing developers directly)
28
+ - Nathan Hjelm <hjelmn@users.sourceforge.net>
29
+ (Please use the mailing list rather than mailing developers directly)
File without changes
@@ -0,0 +1,40 @@
1
+ //
2
+ // libusbx Xcode configuration file
3
+ // Copyright © 2012 Pete Batard <pete@akeo.ie>
4
+ // For more information, please visit: <http://libusbx.org>
5
+ //
6
+ // This library is free software; you can redistribute it and/or
7
+ // modify it under the terms of the GNU Lesser General Public
8
+ // License as published by the Free Software Foundation; either
9
+ // version 2.1 of the License, or (at your option) any later version.
10
+ //
11
+ // This library is distributed in the hope that it will be useful,
12
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
+ // Lesser General Public License for more details.
15
+ //
16
+ // You should have received a copy of the GNU Lesser General Public
17
+ // License along with this library; if not, write to the Free Software
18
+ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
+
20
+ // libusbx does not follow C99 strict aliasing rules, so disable it.
21
+ GCC_STRICT_ALIASING = NO
22
+
23
+ // Use C99 dialect.
24
+ GCC_C_LANGUAGE_STANDARD = c99
25
+
26
+ // Compiler warnings.
27
+ CLANG_WARN_EMPTY_BODY = YES
28
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES
29
+ GCC_WARN_ABOUT_RETURN_TYPE = YES
30
+ GCC_WARN_UNINITIALIZED_AUTOS = YES
31
+ GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES
32
+ GCC_WARN_SHADOW = YES
33
+ GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES
34
+ GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES
35
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES
36
+ GCC_WARN_ABOUT_MISSING_NEWLINE = YES
37
+ GCC_WARN_UNKNOWN_PRAGMAS = YES
38
+ GCC_WARN_UNUSED_FUNCTION = YES
39
+ GCC_WARN_UNUSED_LABEL = YES
40
+ GCC_WARN_UNUSED_VARIABLE = YES
@@ -0,0 +1,28 @@
1
+ /* config.h. Manually generated for Xcode. */
2
+
3
+ /* Default visibility */
4
+ #define DEFAULT_VISIBILITY /**/
5
+
6
+ /* Message logging */
7
+ #define ENABLE_LOGGING 1
8
+
9
+ /* Define to 1 if you have the `gettimeofday' function. */
10
+ #define HAVE_GETTIMEOFDAY 1
11
+
12
+ /* Define to 1 if you have the <poll.h> header file. */
13
+ #define HAVE_POLL_H 1
14
+
15
+ /* Define to 1 if you have the <sys/time.h> header file. */
16
+ #define HAVE_SYS_TIME_H 1
17
+
18
+ /* Darwin backend */
19
+ #define OS_DARWIN 1
20
+
21
+ /* type of second poll() argument */
22
+ #define POLL_NFDS_TYPE nfds_t
23
+
24
+ /* Use POSIX Threads */
25
+ #define THREADS_POSIX 1
26
+
27
+ /* Use GNU extensions */
28
+ #define _GNU_SOURCE 1
@@ -0,0 +1,29 @@
1
+ //
2
+ // libusbx Xcode configuration file
3
+ // Copyright © 2012 Pete Batard <pete@akeo.ie>
4
+ // For more information, please visit: <http://libusbx.org>
5
+ //
6
+ // This library is free software; you can redistribute it and/or
7
+ // modify it under the terms of the GNU Lesser General Public
8
+ // License as published by the Free Software Foundation; either
9
+ // version 2.1 of the License, or (at your option) any later version.
10
+ //
11
+ // This library is distributed in the hope that it will be useful,
12
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
+ // Lesser General Public License for more details.
15
+ //
16
+ // You should have received a copy of the GNU Lesser General Public
17
+ // License along with this library; if not, write to the Free Software
18
+ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
+
20
+ #include "common.xcconfig"
21
+
22
+ // Embed debug symbols in binary itself.
23
+ DEBUG_INFORMATION_FORMAT = dwarf
24
+
25
+ // No optimizations in debug.
26
+ GCC_OPTIMIZATION_LEVEL = 0
27
+
28
+ //
29
+ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) DEBUG=1
@@ -0,0 +1,21 @@
1
+ //
2
+ // libusbx Xcode configuration file
3
+ // Copyright © 2012 Pete Batard <pete@akeo.ie>
4
+ // For more information, please visit: <http://libusbx.org>
5
+ //
6
+ // This library is free software; you can redistribute it and/or
7
+ // modify it under the terms of the GNU Lesser General Public
8
+ // License as published by the Free Software Foundation; either
9
+ // version 2.1 of the License, or (at your option) any later version.
10
+ //
11
+ // This library is distributed in the hope that it will be useful,
12
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
+ // Lesser General Public License for more details.
15
+ //
16
+ // You should have received a copy of the GNU Lesser General Public
17
+ // License along with this library; if not, write to the Free Software
18
+ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
+
20
+ // For backwards compatibility with libusb, use the same filename.
21
+ PRODUCT_NAME = libusb-1.0.0
@@ -0,0 +1,864 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 45;
7
+ objects = {
8
+
9
+ /* Begin PBXAggregateTarget section */
10
+ 008FC0321628BC9400BC5BE2 /* all */ = {
11
+ isa = PBXAggregateTarget;
12
+ buildConfigurationList = 008FC0331628BC9400BC5BE2 /* Build configuration list for PBXAggregateTarget "all" */;
13
+ buildPhases = (
14
+ );
15
+ dependencies = (
16
+ 008FC0371628BC9A00BC5BE2 /* PBXTargetDependency */,
17
+ 008FC0391628BC9A00BC5BE2 /* PBXTargetDependency */,
18
+ 008FC03B1628BC9A00BC5BE2 /* PBXTargetDependency */,
19
+ 008FC03D1628BC9A00BC5BE2 /* PBXTargetDependency */,
20
+ 008FC03F1628BC9A00BC5BE2 /* PBXTargetDependency */,
21
+ 008FC0411628BC9A00BC5BE2 /* PBXTargetDependency */,
22
+ );
23
+ name = all;
24
+ productName = all;
25
+ };
26
+ /* End PBXAggregateTarget section */
27
+
28
+ /* Begin PBXBuildFile section */
29
+ 008FBF861628B7E800BC5BE2 /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF541628B7E800BC5BE2 /* core.c */; };
30
+ 008FBF871628B7E800BC5BE2 /* descriptor.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF551628B7E800BC5BE2 /* descriptor.c */; };
31
+ 008FBF881628B7E800BC5BE2 /* io.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF561628B7E800BC5BE2 /* io.c */; };
32
+ 008FBF891628B7E800BC5BE2 /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7E800BC5BE2 /* libusb.h */; };
33
+ 008FBF901628B7E800BC5BE2 /* libusbi.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF671628B7E800BC5BE2 /* libusbi.h */; };
34
+ 008FBF921628B7E800BC5BE2 /* darwin_usb.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF6C1628B7E800BC5BE2 /* darwin_usb.c */; };
35
+ 008FBF931628B7E800BC5BE2 /* darwin_usb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF6D1628B7E800BC5BE2 /* darwin_usb.h */; };
36
+ 008FBF971628B7E800BC5BE2 /* poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF711628B7E800BC5BE2 /* poll_posix.h */; };
37
+ 008FBF9A1628B7E800BC5BE2 /* threads_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF741628B7E800BC5BE2 /* threads_posix.c */; };
38
+ 008FBF9B1628B7E800BC5BE2 /* threads_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF751628B7E800BC5BE2 /* threads_posix.h */; };
39
+ 008FBFA01628B7E800BC5BE2 /* sync.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBF7A1628B7E800BC5BE2 /* sync.c */; };
40
+ 008FBFA11628B7E800BC5BE2 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF7B1628B7E800BC5BE2 /* version.h */; };
41
+ 008FBFA21628B7E800BC5BE2 /* version_nano.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF7C1628B7E800BC5BE2 /* version_nano.h */; };
42
+ 008FBFA51628B84200BC5BE2 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBFA41628B84200BC5BE2 /* config.h */; };
43
+ 008FBFA71628B87000BC5BE2 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBFA61628B87000BC5BE2 /* CoreFoundation.framework */; };
44
+ 008FBFA91628B88000BC5BE2 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBFA81628B88000BC5BE2 /* IOKit.framework */; };
45
+ 008FBFAB1628B8CB00BC5BE2 /* libobjc.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBFAA1628B8CB00BC5BE2 /* libobjc.dylib */; };
46
+ 008FBFEF1628BA3500BC5BE2 /* xusb.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFED1628BA0E00BC5BE2 /* xusb.c */; };
47
+ 008FBFF01628BA3A00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
48
+ 008FBFFF1628BB9600BC5BE2 /* dpfp.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFD71628BA0E00BC5BE2 /* dpfp.c */; };
49
+ 008FC0001628BBCD00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
50
+ 008FC00F1628BBE400BC5BE2 /* dpfp_threaded.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFDB1628BA0E00BC5BE2 /* dpfp_threaded.c */; };
51
+ 008FC0101628BBE900BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
52
+ 008FC01F1628BC1500BC5BE2 /* fxload.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFE11628BA0E00BC5BE2 /* fxload.c */; };
53
+ 008FC0201628BC1B00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
54
+ 008FC0211628BC5200BC5BE2 /* ezusb.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFDC1628BA0E00BC5BE2 /* ezusb.c */; };
55
+ 008FC0301628BC7400BC5BE2 /* listdevs.c in Sources */ = {isa = PBXBuildFile; fileRef = 008FBFE71628BA0E00BC5BE2 /* listdevs.c */; };
56
+ 008FC0311628BC7800BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */; };
57
+ 1438D77A17A2ED9F00166101 /* hotplug.c in Sources */ = {isa = PBXBuildFile; fileRef = 1438D77817A2ED9F00166101 /* hotplug.c */; };
58
+ 1438D77B17A2ED9F00166101 /* hotplug.h in Headers */ = {isa = PBXBuildFile; fileRef = 1438D77917A2ED9F00166101 /* hotplug.h */; };
59
+ 1438D77D17A2EDCD00166101 /* poll_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 1438D77C17A2EDCD00166101 /* poll_posix.c */; };
60
+ 1438D77F17A2F0EA00166101 /* strerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1438D77E17A2F0EA00166101 /* strerror.c */; };
61
+ /* End PBXBuildFile section */
62
+
63
+ /* Begin PBXContainerItemProxy section */
64
+ 008FC0361628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
65
+ isa = PBXContainerItemProxy;
66
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
67
+ proxyType = 1;
68
+ remoteGlobalIDString = 008FBF301628B79300BC5BE2;
69
+ remoteInfo = libusbx;
70
+ };
71
+ 008FC0381628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
72
+ isa = PBXContainerItemProxy;
73
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
74
+ proxyType = 1;
75
+ remoteGlobalIDString = 008FBFBC1628B9FE00BC5BE2;
76
+ remoteInfo = xusb;
77
+ };
78
+ 008FC03A1628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
79
+ isa = PBXContainerItemProxy;
80
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
81
+ proxyType = 1;
82
+ remoteGlobalIDString = 008FBFF41628BB8B00BC5BE2;
83
+ remoteInfo = dpfp;
84
+ };
85
+ 008FC03C1628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
86
+ isa = PBXContainerItemProxy;
87
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
88
+ proxyType = 1;
89
+ remoteGlobalIDString = 008FC0041628BBDB00BC5BE2;
90
+ remoteInfo = dpfp_threaded;
91
+ };
92
+ 008FC03E1628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
93
+ isa = PBXContainerItemProxy;
94
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
95
+ proxyType = 1;
96
+ remoteGlobalIDString = 008FC0141628BC0300BC5BE2;
97
+ remoteInfo = fxload;
98
+ };
99
+ 008FC0401628BC9A00BC5BE2 /* PBXContainerItemProxy */ = {
100
+ isa = PBXContainerItemProxy;
101
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
102
+ proxyType = 1;
103
+ remoteGlobalIDString = 008FC0251628BC6B00BC5BE2;
104
+ remoteInfo = listdevs;
105
+ };
106
+ 1443EE8B1641926D007E0579 /* PBXContainerItemProxy */ = {
107
+ isa = PBXContainerItemProxy;
108
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
109
+ proxyType = 1;
110
+ remoteGlobalIDString = 008FBF301628B79300BC5BE2;
111
+ remoteInfo = libusbx;
112
+ };
113
+ 1443EE8D16419273007E0579 /* PBXContainerItemProxy */ = {
114
+ isa = PBXContainerItemProxy;
115
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
116
+ proxyType = 1;
117
+ remoteGlobalIDString = 008FBF301628B79300BC5BE2;
118
+ remoteInfo = libusbx;
119
+ };
120
+ 1443EE8F16419276007E0579 /* PBXContainerItemProxy */ = {
121
+ isa = PBXContainerItemProxy;
122
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
123
+ proxyType = 1;
124
+ remoteGlobalIDString = 008FBF301628B79300BC5BE2;
125
+ remoteInfo = libusbx;
126
+ };
127
+ 1443EE911641927A007E0579 /* PBXContainerItemProxy */ = {
128
+ isa = PBXContainerItemProxy;
129
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
130
+ proxyType = 1;
131
+ remoteGlobalIDString = 008FBF301628B79300BC5BE2;
132
+ remoteInfo = libusbx;
133
+ };
134
+ 1443EE931641927D007E0579 /* PBXContainerItemProxy */ = {
135
+ isa = PBXContainerItemProxy;
136
+ containerPortal = 008FBF281628B79300BC5BE2 /* Project object */;
137
+ proxyType = 1;
138
+ remoteGlobalIDString = 008FBF301628B79300BC5BE2;
139
+ remoteInfo = libusbx;
140
+ };
141
+ /* End PBXContainerItemProxy section */
142
+
143
+ /* Begin PBXCopyFilesBuildPhase section */
144
+ 008FBFBB1628B9FE00BC5BE2 /* CopyFiles */ = {
145
+ isa = PBXCopyFilesBuildPhase;
146
+ buildActionMask = 2147483647;
147
+ dstPath = /usr/share/man/man1/;
148
+ dstSubfolderSpec = 0;
149
+ files = (
150
+ );
151
+ runOnlyForDeploymentPostprocessing = 1;
152
+ };
153
+ 008FBFF31628BB8B00BC5BE2 /* CopyFiles */ = {
154
+ isa = PBXCopyFilesBuildPhase;
155
+ buildActionMask = 2147483647;
156
+ dstPath = /usr/share/man/man1/;
157
+ dstSubfolderSpec = 0;
158
+ files = (
159
+ );
160
+ runOnlyForDeploymentPostprocessing = 1;
161
+ };
162
+ 008FC0031628BBDB00BC5BE2 /* CopyFiles */ = {
163
+ isa = PBXCopyFilesBuildPhase;
164
+ buildActionMask = 2147483647;
165
+ dstPath = /usr/share/man/man1/;
166
+ dstSubfolderSpec = 0;
167
+ files = (
168
+ );
169
+ runOnlyForDeploymentPostprocessing = 1;
170
+ };
171
+ 008FC0131628BC0300BC5BE2 /* CopyFiles */ = {
172
+ isa = PBXCopyFilesBuildPhase;
173
+ buildActionMask = 2147483647;
174
+ dstPath = /usr/share/man/man1/;
175
+ dstSubfolderSpec = 0;
176
+ files = (
177
+ );
178
+ runOnlyForDeploymentPostprocessing = 1;
179
+ };
180
+ 008FC0241628BC6B00BC5BE2 /* CopyFiles */ = {
181
+ isa = PBXCopyFilesBuildPhase;
182
+ buildActionMask = 2147483647;
183
+ dstPath = /usr/share/man/man1/;
184
+ dstSubfolderSpec = 0;
185
+ files = (
186
+ );
187
+ runOnlyForDeploymentPostprocessing = 1;
188
+ };
189
+ /* End PBXCopyFilesBuildPhase section */
190
+
191
+ /* Begin PBXFileReference section */
192
+ 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = "libusb-1.0.0.dylib"; sourceTree = BUILT_PRODUCTS_DIR; };
193
+ 008FBF541628B7E800BC5BE2 /* core.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = core.c; sourceTree = "<group>"; };
194
+ 008FBF551628B7E800BC5BE2 /* descriptor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = descriptor.c; sourceTree = "<group>"; };
195
+ 008FBF561628B7E800BC5BE2 /* io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = io.c; sourceTree = "<group>"; };
196
+ 008FBF5A1628B7E800BC5BE2 /* libusb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libusb.h; sourceTree = "<group>"; };
197
+ 008FBF671628B7E800BC5BE2 /* libusbi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libusbi.h; sourceTree = "<group>"; };
198
+ 008FBF6C1628B7E800BC5BE2 /* darwin_usb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = darwin_usb.c; sourceTree = "<group>"; };
199
+ 008FBF6D1628B7E800BC5BE2 /* darwin_usb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = darwin_usb.h; sourceTree = "<group>"; };
200
+ 008FBF711628B7E800BC5BE2 /* poll_posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = poll_posix.h; sourceTree = "<group>"; };
201
+ 008FBF741628B7E800BC5BE2 /* threads_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = threads_posix.c; sourceTree = "<group>"; };
202
+ 008FBF751628B7E800BC5BE2 /* threads_posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = threads_posix.h; sourceTree = "<group>"; };
203
+ 008FBF7A1628B7E800BC5BE2 /* sync.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sync.c; sourceTree = "<group>"; };
204
+ 008FBF7B1628B7E800BC5BE2 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
205
+ 008FBF7C1628B7E800BC5BE2 /* version_nano.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version_nano.h; sourceTree = "<group>"; };
206
+ 008FBFA41628B84200BC5BE2 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
207
+ 008FBFA61628B87000BC5BE2 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
208
+ 008FBFA81628B88000BC5BE2 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
209
+ 008FBFAA1628B8CB00BC5BE2 /* libobjc.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libobjc.dylib; path = usr/lib/libobjc.dylib; sourceTree = SDKROOT; };
210
+ 008FBFBD1628B9FE00BC5BE2 /* xusb */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xusb; sourceTree = BUILT_PRODUCTS_DIR; };
211
+ 008FBFD71628BA0E00BC5BE2 /* dpfp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dpfp.c; sourceTree = "<group>"; };
212
+ 008FBFDB1628BA0E00BC5BE2 /* dpfp_threaded.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dpfp_threaded.c; sourceTree = "<group>"; };
213
+ 008FBFDC1628BA0E00BC5BE2 /* ezusb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ezusb.c; sourceTree = "<group>"; };
214
+ 008FBFDD1628BA0E00BC5BE2 /* ezusb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ezusb.h; sourceTree = "<group>"; };
215
+ 008FBFE11628BA0E00BC5BE2 /* fxload.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fxload.c; sourceTree = "<group>"; };
216
+ 008FBFE71628BA0E00BC5BE2 /* listdevs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = listdevs.c; sourceTree = "<group>"; };
217
+ 008FBFED1628BA0E00BC5BE2 /* xusb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = xusb.c; sourceTree = "<group>"; };
218
+ 008FBFF51628BB8B00BC5BE2 /* dpfp */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dpfp; sourceTree = BUILT_PRODUCTS_DIR; };
219
+ 008FC0051628BBDB00BC5BE2 /* dpfp_threaded */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dpfp_threaded; sourceTree = BUILT_PRODUCTS_DIR; };
220
+ 008FC0151628BC0300BC5BE2 /* fxload */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = fxload; sourceTree = BUILT_PRODUCTS_DIR; };
221
+ 008FC0261628BC6B00BC5BE2 /* listdevs */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = listdevs; sourceTree = BUILT_PRODUCTS_DIR; };
222
+ 1438D77817A2ED9F00166101 /* hotplug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hotplug.c; sourceTree = "<group>"; };
223
+ 1438D77917A2ED9F00166101 /* hotplug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hotplug.h; sourceTree = "<group>"; };
224
+ 1438D77C17A2EDCD00166101 /* poll_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poll_posix.c; sourceTree = "<group>"; };
225
+ 1438D77E17A2F0EA00166101 /* strerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strerror.c; sourceTree = "<group>"; };
226
+ 1443EE8416417E63007E0579 /* common.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = SOURCE_ROOT; };
227
+ 1443EE8516417E63007E0579 /* debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = SOURCE_ROOT; };
228
+ 1443EE8616417E63007E0579 /* libusbx_debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = libusbx_debug.xcconfig; sourceTree = SOURCE_ROOT; };
229
+ 1443EE8716417E63007E0579 /* libusbx.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = libusbx.xcconfig; sourceTree = SOURCE_ROOT; };
230
+ 1443EE8816417E63007E0579 /* release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = SOURCE_ROOT; };
231
+ 1443EE8916417EA6007E0579 /* libusbx_release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = libusbx_release.xcconfig; sourceTree = SOURCE_ROOT; };
232
+ /* End PBXFileReference section */
233
+
234
+ /* Begin PBXFrameworksBuildPhase section */
235
+ 008FBF2E1628B79300BC5BE2 /* Frameworks */ = {
236
+ isa = PBXFrameworksBuildPhase;
237
+ buildActionMask = 2147483647;
238
+ files = (
239
+ 008FBFAB1628B8CB00BC5BE2 /* libobjc.dylib in Frameworks */,
240
+ 008FBFA91628B88000BC5BE2 /* IOKit.framework in Frameworks */,
241
+ 008FBFA71628B87000BC5BE2 /* CoreFoundation.framework in Frameworks */,
242
+ );
243
+ runOnlyForDeploymentPostprocessing = 0;
244
+ };
245
+ 008FBFBA1628B9FE00BC5BE2 /* Frameworks */ = {
246
+ isa = PBXFrameworksBuildPhase;
247
+ buildActionMask = 2147483647;
248
+ files = (
249
+ 008FBFF01628BA3A00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */,
250
+ );
251
+ runOnlyForDeploymentPostprocessing = 0;
252
+ };
253
+ 008FBFF21628BB8B00BC5BE2 /* Frameworks */ = {
254
+ isa = PBXFrameworksBuildPhase;
255
+ buildActionMask = 2147483647;
256
+ files = (
257
+ 008FC0001628BBCD00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */,
258
+ );
259
+ runOnlyForDeploymentPostprocessing = 0;
260
+ };
261
+ 008FC0021628BBDB00BC5BE2 /* Frameworks */ = {
262
+ isa = PBXFrameworksBuildPhase;
263
+ buildActionMask = 2147483647;
264
+ files = (
265
+ 008FC0101628BBE900BC5BE2 /* libusb-1.0.0.dylib in Frameworks */,
266
+ );
267
+ runOnlyForDeploymentPostprocessing = 0;
268
+ };
269
+ 008FC0121628BC0300BC5BE2 /* Frameworks */ = {
270
+ isa = PBXFrameworksBuildPhase;
271
+ buildActionMask = 2147483647;
272
+ files = (
273
+ 008FC0201628BC1B00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */,
274
+ );
275
+ runOnlyForDeploymentPostprocessing = 0;
276
+ };
277
+ 008FC0231628BC6B00BC5BE2 /* Frameworks */ = {
278
+ isa = PBXFrameworksBuildPhase;
279
+ buildActionMask = 2147483647;
280
+ files = (
281
+ 008FC0311628BC7800BC5BE2 /* libusb-1.0.0.dylib in Frameworks */,
282
+ );
283
+ runOnlyForDeploymentPostprocessing = 0;
284
+ };
285
+ /* End PBXFrameworksBuildPhase section */
286
+
287
+ /* Begin PBXGroup section */
288
+ 008FBF261628B79300BC5BE2 = {
289
+ isa = PBXGroup;
290
+ children = (
291
+ 1443EE8316417DE3007E0579 /* xcconfig */,
292
+ 008FBFA41628B84200BC5BE2 /* config.h */,
293
+ 008FBF3B1628B7E800BC5BE2 /* libusb */,
294
+ 008FBFC81628BA0E00BC5BE2 /* examples */,
295
+ 1443EE8A16419057007E0579 /* Apple */,
296
+ 008FBF321628B79300BC5BE2 /* Products */,
297
+ );
298
+ sourceTree = "<group>";
299
+ };
300
+ 008FBF321628B79300BC5BE2 /* Products */ = {
301
+ isa = PBXGroup;
302
+ children = (
303
+ 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */,
304
+ 008FBFBD1628B9FE00BC5BE2 /* xusb */,
305
+ 008FBFF51628BB8B00BC5BE2 /* dpfp */,
306
+ 008FC0051628BBDB00BC5BE2 /* dpfp_threaded */,
307
+ 008FC0151628BC0300BC5BE2 /* fxload */,
308
+ 008FC0261628BC6B00BC5BE2 /* listdevs */,
309
+ );
310
+ name = Products;
311
+ sourceTree = "<group>";
312
+ };
313
+ 008FBF3B1628B7E800BC5BE2 /* libusb */ = {
314
+ isa = PBXGroup;
315
+ children = (
316
+ 008FBF541628B7E800BC5BE2 /* core.c */,
317
+ 008FBF551628B7E800BC5BE2 /* descriptor.c */,
318
+ 1438D77817A2ED9F00166101 /* hotplug.c */,
319
+ 1438D77917A2ED9F00166101 /* hotplug.h */,
320
+ 008FBF561628B7E800BC5BE2 /* io.c */,
321
+ 008FBF5A1628B7E800BC5BE2 /* libusb.h */,
322
+ 008FBF671628B7E800BC5BE2 /* libusbi.h */,
323
+ 008FBF6B1628B7E800BC5BE2 /* os */,
324
+ 1438D77E17A2F0EA00166101 /* strerror.c */,
325
+ 008FBF7A1628B7E800BC5BE2 /* sync.c */,
326
+ 008FBF7B1628B7E800BC5BE2 /* version.h */,
327
+ 008FBF7C1628B7E800BC5BE2 /* version_nano.h */,
328
+ );
329
+ name = libusb;
330
+ path = ../libusb;
331
+ sourceTree = "<group>";
332
+ };
333
+ 008FBF6B1628B7E800BC5BE2 /* os */ = {
334
+ isa = PBXGroup;
335
+ children = (
336
+ 008FBF6C1628B7E800BC5BE2 /* darwin_usb.c */,
337
+ 008FBF6D1628B7E800BC5BE2 /* darwin_usb.h */,
338
+ 1438D77C17A2EDCD00166101 /* poll_posix.c */,
339
+ 008FBF711628B7E800BC5BE2 /* poll_posix.h */,
340
+ 008FBF741628B7E800BC5BE2 /* threads_posix.c */,
341
+ 008FBF751628B7E800BC5BE2 /* threads_posix.h */,
342
+ );
343
+ path = os;
344
+ sourceTree = "<group>";
345
+ };
346
+ 008FBFC81628BA0E00BC5BE2 /* examples */ = {
347
+ isa = PBXGroup;
348
+ children = (
349
+ 008FBFD71628BA0E00BC5BE2 /* dpfp.c */,
350
+ 008FBFDB1628BA0E00BC5BE2 /* dpfp_threaded.c */,
351
+ 008FBFDC1628BA0E00BC5BE2 /* ezusb.c */,
352
+ 008FBFE11628BA0E00BC5BE2 /* fxload.c */,
353
+ 008FBFE71628BA0E00BC5BE2 /* listdevs.c */,
354
+ 008FBFED1628BA0E00BC5BE2 /* xusb.c */,
355
+ 008FBFDD1628BA0E00BC5BE2 /* ezusb.h */,
356
+ );
357
+ name = examples;
358
+ path = ../examples;
359
+ sourceTree = "<group>";
360
+ };
361
+ 1443EE8316417DE3007E0579 /* xcconfig */ = {
362
+ isa = PBXGroup;
363
+ children = (
364
+ 1443EE8416417E63007E0579 /* common.xcconfig */,
365
+ 1443EE8516417E63007E0579 /* debug.xcconfig */,
366
+ 1443EE8816417E63007E0579 /* release.xcconfig */,
367
+ 1443EE8716417E63007E0579 /* libusbx.xcconfig */,
368
+ 1443EE8616417E63007E0579 /* libusbx_debug.xcconfig */,
369
+ 1443EE8916417EA6007E0579 /* libusbx_release.xcconfig */,
370
+ );
371
+ name = xcconfig;
372
+ path = ../libusb;
373
+ sourceTree = "<group>";
374
+ };
375
+ 1443EE8A16419057007E0579 /* Apple */ = {
376
+ isa = PBXGroup;
377
+ children = (
378
+ 008FBFAA1628B8CB00BC5BE2 /* libobjc.dylib */,
379
+ 008FBFA81628B88000BC5BE2 /* IOKit.framework */,
380
+ 008FBFA61628B87000BC5BE2 /* CoreFoundation.framework */,
381
+ );
382
+ name = Apple;
383
+ path = ../libusb;
384
+ sourceTree = "<group>";
385
+ };
386
+ /* End PBXGroup section */
387
+
388
+ /* Begin PBXHeadersBuildPhase section */
389
+ 008FBF2F1628B79300BC5BE2 /* Headers */ = {
390
+ isa = PBXHeadersBuildPhase;
391
+ buildActionMask = 2147483647;
392
+ files = (
393
+ 008FBF891628B7E800BC5BE2 /* libusb.h in Headers */,
394
+ 008FBF901628B7E800BC5BE2 /* libusbi.h in Headers */,
395
+ 008FBF931628B7E800BC5BE2 /* darwin_usb.h in Headers */,
396
+ 008FBF971628B7E800BC5BE2 /* poll_posix.h in Headers */,
397
+ 008FBF9B1628B7E800BC5BE2 /* threads_posix.h in Headers */,
398
+ 008FBFA11628B7E800BC5BE2 /* version.h in Headers */,
399
+ 008FBFA21628B7E800BC5BE2 /* version_nano.h in Headers */,
400
+ 008FBFA51628B84200BC5BE2 /* config.h in Headers */,
401
+ 1438D77B17A2ED9F00166101 /* hotplug.h in Headers */,
402
+ );
403
+ runOnlyForDeploymentPostprocessing = 0;
404
+ };
405
+ /* End PBXHeadersBuildPhase section */
406
+
407
+ /* Begin PBXNativeTarget section */
408
+ 008FBF301628B79300BC5BE2 /* libusbx */ = {
409
+ isa = PBXNativeTarget;
410
+ buildConfigurationList = 008FBF351628B79300BC5BE2 /* Build configuration list for PBXNativeTarget "libusbx" */;
411
+ buildPhases = (
412
+ 008FBF2D1628B79300BC5BE2 /* Sources */,
413
+ 008FBF2E1628B79300BC5BE2 /* Frameworks */,
414
+ 008FBF2F1628B79300BC5BE2 /* Headers */,
415
+ );
416
+ buildRules = (
417
+ );
418
+ dependencies = (
419
+ );
420
+ name = libusbx;
421
+ productName = libusbx;
422
+ productReference = 008FBF311628B79300BC5BE2 /* libusb-1.0.0.dylib */;
423
+ productType = "com.apple.product-type.library.dynamic";
424
+ };
425
+ 008FBFBC1628B9FE00BC5BE2 /* xusb */ = {
426
+ isa = PBXNativeTarget;
427
+ buildConfigurationList = 008FBFC61628B9FE00BC5BE2 /* Build configuration list for PBXNativeTarget "xusb" */;
428
+ buildPhases = (
429
+ 008FBFB91628B9FE00BC5BE2 /* Sources */,
430
+ 008FBFBA1628B9FE00BC5BE2 /* Frameworks */,
431
+ 008FBFBB1628B9FE00BC5BE2 /* CopyFiles */,
432
+ );
433
+ buildRules = (
434
+ );
435
+ dependencies = (
436
+ 1443EE941641927D007E0579 /* PBXTargetDependency */,
437
+ );
438
+ name = xusb;
439
+ productName = xusb;
440
+ productReference = 008FBFBD1628B9FE00BC5BE2 /* xusb */;
441
+ productType = "com.apple.product-type.tool";
442
+ };
443
+ 008FBFF41628BB8B00BC5BE2 /* dpfp */ = {
444
+ isa = PBXNativeTarget;
445
+ buildConfigurationList = 008FBFFC1628BB8C00BC5BE2 /* Build configuration list for PBXNativeTarget "dpfp" */;
446
+ buildPhases = (
447
+ 008FBFF11628BB8B00BC5BE2 /* Sources */,
448
+ 008FBFF21628BB8B00BC5BE2 /* Frameworks */,
449
+ 008FBFF31628BB8B00BC5BE2 /* CopyFiles */,
450
+ );
451
+ buildRules = (
452
+ );
453
+ dependencies = (
454
+ 1443EE921641927A007E0579 /* PBXTargetDependency */,
455
+ );
456
+ name = dpfp;
457
+ productName = dpfp;
458
+ productReference = 008FBFF51628BB8B00BC5BE2 /* dpfp */;
459
+ productType = "com.apple.product-type.tool";
460
+ };
461
+ 008FC0041628BBDB00BC5BE2 /* dpfp_threaded */ = {
462
+ isa = PBXNativeTarget;
463
+ buildConfigurationList = 008FC00C1628BBDB00BC5BE2 /* Build configuration list for PBXNativeTarget "dpfp_threaded" */;
464
+ buildPhases = (
465
+ 008FC0011628BBDB00BC5BE2 /* Sources */,
466
+ 008FC0021628BBDB00BC5BE2 /* Frameworks */,
467
+ 008FC0031628BBDB00BC5BE2 /* CopyFiles */,
468
+ );
469
+ buildRules = (
470
+ );
471
+ dependencies = (
472
+ 1443EE9016419276007E0579 /* PBXTargetDependency */,
473
+ );
474
+ name = dpfp_threaded;
475
+ productName = dpfp_threaded;
476
+ productReference = 008FC0051628BBDB00BC5BE2 /* dpfp_threaded */;
477
+ productType = "com.apple.product-type.tool";
478
+ };
479
+ 008FC0141628BC0300BC5BE2 /* fxload */ = {
480
+ isa = PBXNativeTarget;
481
+ buildConfigurationList = 008FC01C1628BC0300BC5BE2 /* Build configuration list for PBXNativeTarget "fxload" */;
482
+ buildPhases = (
483
+ 008FC0111628BC0300BC5BE2 /* Sources */,
484
+ 008FC0121628BC0300BC5BE2 /* Frameworks */,
485
+ 008FC0131628BC0300BC5BE2 /* CopyFiles */,
486
+ );
487
+ buildRules = (
488
+ );
489
+ dependencies = (
490
+ 1443EE8E16419273007E0579 /* PBXTargetDependency */,
491
+ );
492
+ name = fxload;
493
+ productName = fxload;
494
+ productReference = 008FC0151628BC0300BC5BE2 /* fxload */;
495
+ productType = "com.apple.product-type.tool";
496
+ };
497
+ 008FC0251628BC6B00BC5BE2 /* listdevs */ = {
498
+ isa = PBXNativeTarget;
499
+ buildConfigurationList = 008FC02D1628BC6B00BC5BE2 /* Build configuration list for PBXNativeTarget "listdevs" */;
500
+ buildPhases = (
501
+ 008FC0221628BC6B00BC5BE2 /* Sources */,
502
+ 008FC0231628BC6B00BC5BE2 /* Frameworks */,
503
+ 008FC0241628BC6B00BC5BE2 /* CopyFiles */,
504
+ );
505
+ buildRules = (
506
+ );
507
+ dependencies = (
508
+ 1443EE8C1641926D007E0579 /* PBXTargetDependency */,
509
+ );
510
+ name = listdevs;
511
+ productName = listdevs;
512
+ productReference = 008FC0261628BC6B00BC5BE2 /* listdevs */;
513
+ productType = "com.apple.product-type.tool";
514
+ };
515
+ /* End PBXNativeTarget section */
516
+
517
+ /* Begin PBXProject section */
518
+ 008FBF281628B79300BC5BE2 /* Project object */ = {
519
+ isa = PBXProject;
520
+ attributes = {
521
+ LastUpgradeCheck = 0450;
522
+ ORGANIZATIONNAME = libusbx;
523
+ };
524
+ buildConfigurationList = 008FBF2B1628B79300BC5BE2 /* Build configuration list for PBXProject "libusbx" */;
525
+ compatibilityVersion = "Xcode 3.1";
526
+ developmentRegion = English;
527
+ hasScannedForEncodings = 0;
528
+ knownRegions = (
529
+ en,
530
+ );
531
+ mainGroup = 008FBF261628B79300BC5BE2;
532
+ productRefGroup = 008FBF321628B79300BC5BE2 /* Products */;
533
+ projectDirPath = "";
534
+ projectRoot = "";
535
+ targets = (
536
+ 008FBF301628B79300BC5BE2 /* libusbx */,
537
+ 008FBFBC1628B9FE00BC5BE2 /* xusb */,
538
+ 008FBFF41628BB8B00BC5BE2 /* dpfp */,
539
+ 008FC0041628BBDB00BC5BE2 /* dpfp_threaded */,
540
+ 008FC0141628BC0300BC5BE2 /* fxload */,
541
+ 008FC0251628BC6B00BC5BE2 /* listdevs */,
542
+ 008FC0321628BC9400BC5BE2 /* all */,
543
+ );
544
+ };
545
+ /* End PBXProject section */
546
+
547
+ /* Begin PBXSourcesBuildPhase section */
548
+ 008FBF2D1628B79300BC5BE2 /* Sources */ = {
549
+ isa = PBXSourcesBuildPhase;
550
+ buildActionMask = 2147483647;
551
+ files = (
552
+ 008FBF861628B7E800BC5BE2 /* core.c in Sources */,
553
+ 008FBF871628B7E800BC5BE2 /* descriptor.c in Sources */,
554
+ 008FBF881628B7E800BC5BE2 /* io.c in Sources */,
555
+ 008FBF921628B7E800BC5BE2 /* darwin_usb.c in Sources */,
556
+ 008FBF9A1628B7E800BC5BE2 /* threads_posix.c in Sources */,
557
+ 008FBFA01628B7E800BC5BE2 /* sync.c in Sources */,
558
+ 1438D77A17A2ED9F00166101 /* hotplug.c in Sources */,
559
+ 1438D77D17A2EDCD00166101 /* poll_posix.c in Sources */,
560
+ 1438D77F17A2F0EA00166101 /* strerror.c in Sources */,
561
+ );
562
+ runOnlyForDeploymentPostprocessing = 0;
563
+ };
564
+ 008FBFB91628B9FE00BC5BE2 /* Sources */ = {
565
+ isa = PBXSourcesBuildPhase;
566
+ buildActionMask = 2147483647;
567
+ files = (
568
+ 008FBFEF1628BA3500BC5BE2 /* xusb.c in Sources */,
569
+ );
570
+ runOnlyForDeploymentPostprocessing = 0;
571
+ };
572
+ 008FBFF11628BB8B00BC5BE2 /* Sources */ = {
573
+ isa = PBXSourcesBuildPhase;
574
+ buildActionMask = 2147483647;
575
+ files = (
576
+ 008FBFFF1628BB9600BC5BE2 /* dpfp.c in Sources */,
577
+ );
578
+ runOnlyForDeploymentPostprocessing = 0;
579
+ };
580
+ 008FC0011628BBDB00BC5BE2 /* Sources */ = {
581
+ isa = PBXSourcesBuildPhase;
582
+ buildActionMask = 2147483647;
583
+ files = (
584
+ 008FC00F1628BBE400BC5BE2 /* dpfp_threaded.c in Sources */,
585
+ );
586
+ runOnlyForDeploymentPostprocessing = 0;
587
+ };
588
+ 008FC0111628BC0300BC5BE2 /* Sources */ = {
589
+ isa = PBXSourcesBuildPhase;
590
+ buildActionMask = 2147483647;
591
+ files = (
592
+ 008FC0211628BC5200BC5BE2 /* ezusb.c in Sources */,
593
+ 008FC01F1628BC1500BC5BE2 /* fxload.c in Sources */,
594
+ );
595
+ runOnlyForDeploymentPostprocessing = 0;
596
+ };
597
+ 008FC0221628BC6B00BC5BE2 /* Sources */ = {
598
+ isa = PBXSourcesBuildPhase;
599
+ buildActionMask = 2147483647;
600
+ files = (
601
+ 008FC0301628BC7400BC5BE2 /* listdevs.c in Sources */,
602
+ );
603
+ runOnlyForDeploymentPostprocessing = 0;
604
+ };
605
+ /* End PBXSourcesBuildPhase section */
606
+
607
+ /* Begin PBXTargetDependency section */
608
+ 008FC0371628BC9A00BC5BE2 /* PBXTargetDependency */ = {
609
+ isa = PBXTargetDependency;
610
+ target = 008FBF301628B79300BC5BE2 /* libusbx */;
611
+ targetProxy = 008FC0361628BC9A00BC5BE2 /* PBXContainerItemProxy */;
612
+ };
613
+ 008FC0391628BC9A00BC5BE2 /* PBXTargetDependency */ = {
614
+ isa = PBXTargetDependency;
615
+ target = 008FBFBC1628B9FE00BC5BE2 /* xusb */;
616
+ targetProxy = 008FC0381628BC9A00BC5BE2 /* PBXContainerItemProxy */;
617
+ };
618
+ 008FC03B1628BC9A00BC5BE2 /* PBXTargetDependency */ = {
619
+ isa = PBXTargetDependency;
620
+ target = 008FBFF41628BB8B00BC5BE2 /* dpfp */;
621
+ targetProxy = 008FC03A1628BC9A00BC5BE2 /* PBXContainerItemProxy */;
622
+ };
623
+ 008FC03D1628BC9A00BC5BE2 /* PBXTargetDependency */ = {
624
+ isa = PBXTargetDependency;
625
+ target = 008FC0041628BBDB00BC5BE2 /* dpfp_threaded */;
626
+ targetProxy = 008FC03C1628BC9A00BC5BE2 /* PBXContainerItemProxy */;
627
+ };
628
+ 008FC03F1628BC9A00BC5BE2 /* PBXTargetDependency */ = {
629
+ isa = PBXTargetDependency;
630
+ target = 008FC0141628BC0300BC5BE2 /* fxload */;
631
+ targetProxy = 008FC03E1628BC9A00BC5BE2 /* PBXContainerItemProxy */;
632
+ };
633
+ 008FC0411628BC9A00BC5BE2 /* PBXTargetDependency */ = {
634
+ isa = PBXTargetDependency;
635
+ target = 008FC0251628BC6B00BC5BE2 /* listdevs */;
636
+ targetProxy = 008FC0401628BC9A00BC5BE2 /* PBXContainerItemProxy */;
637
+ };
638
+ 1443EE8C1641926D007E0579 /* PBXTargetDependency */ = {
639
+ isa = PBXTargetDependency;
640
+ target = 008FBF301628B79300BC5BE2 /* libusbx */;
641
+ targetProxy = 1443EE8B1641926D007E0579 /* PBXContainerItemProxy */;
642
+ };
643
+ 1443EE8E16419273007E0579 /* PBXTargetDependency */ = {
644
+ isa = PBXTargetDependency;
645
+ target = 008FBF301628B79300BC5BE2 /* libusbx */;
646
+ targetProxy = 1443EE8D16419273007E0579 /* PBXContainerItemProxy */;
647
+ };
648
+ 1443EE9016419276007E0579 /* PBXTargetDependency */ = {
649
+ isa = PBXTargetDependency;
650
+ target = 008FBF301628B79300BC5BE2 /* libusbx */;
651
+ targetProxy = 1443EE8F16419276007E0579 /* PBXContainerItemProxy */;
652
+ };
653
+ 1443EE921641927A007E0579 /* PBXTargetDependency */ = {
654
+ isa = PBXTargetDependency;
655
+ target = 008FBF301628B79300BC5BE2 /* libusbx */;
656
+ targetProxy = 1443EE911641927A007E0579 /* PBXContainerItemProxy */;
657
+ };
658
+ 1443EE941641927D007E0579 /* PBXTargetDependency */ = {
659
+ isa = PBXTargetDependency;
660
+ target = 008FBF301628B79300BC5BE2 /* libusbx */;
661
+ targetProxy = 1443EE931641927D007E0579 /* PBXContainerItemProxy */;
662
+ };
663
+ /* End PBXTargetDependency section */
664
+
665
+ /* Begin XCBuildConfiguration section */
666
+ 008FBF331628B79300BC5BE2 /* Debug */ = {
667
+ isa = XCBuildConfiguration;
668
+ buildSettings = {
669
+ };
670
+ name = Debug;
671
+ };
672
+ 008FBF341628B79300BC5BE2 /* Release */ = {
673
+ isa = XCBuildConfiguration;
674
+ buildSettings = {
675
+ };
676
+ name = Release;
677
+ };
678
+ 008FBF361628B79300BC5BE2 /* Debug */ = {
679
+ isa = XCBuildConfiguration;
680
+ baseConfigurationReference = 1443EE8616417E63007E0579 /* libusbx_debug.xcconfig */;
681
+ buildSettings = {
682
+ };
683
+ name = Debug;
684
+ };
685
+ 008FBF371628B79300BC5BE2 /* Release */ = {
686
+ isa = XCBuildConfiguration;
687
+ baseConfigurationReference = 1443EE8916417EA6007E0579 /* libusbx_release.xcconfig */;
688
+ buildSettings = {
689
+ };
690
+ name = Release;
691
+ };
692
+ 008FBFC41628B9FE00BC5BE2 /* Debug */ = {
693
+ isa = XCBuildConfiguration;
694
+ baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
695
+ buildSettings = {
696
+ PRODUCT_NAME = "$(TARGET_NAME)";
697
+ };
698
+ name = Debug;
699
+ };
700
+ 008FBFC51628B9FE00BC5BE2 /* Release */ = {
701
+ isa = XCBuildConfiguration;
702
+ baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
703
+ buildSettings = {
704
+ PRODUCT_NAME = "$(TARGET_NAME)";
705
+ };
706
+ name = Release;
707
+ };
708
+ 008FBFFD1628BB8C00BC5BE2 /* Debug */ = {
709
+ isa = XCBuildConfiguration;
710
+ baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
711
+ buildSettings = {
712
+ PRODUCT_NAME = "$(TARGET_NAME)";
713
+ };
714
+ name = Debug;
715
+ };
716
+ 008FBFFE1628BB8C00BC5BE2 /* Release */ = {
717
+ isa = XCBuildConfiguration;
718
+ baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
719
+ buildSettings = {
720
+ PRODUCT_NAME = "$(TARGET_NAME)";
721
+ };
722
+ name = Release;
723
+ };
724
+ 008FC00D1628BBDB00BC5BE2 /* Debug */ = {
725
+ isa = XCBuildConfiguration;
726
+ baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
727
+ buildSettings = {
728
+ PRODUCT_NAME = "$(TARGET_NAME)";
729
+ };
730
+ name = Debug;
731
+ };
732
+ 008FC00E1628BBDB00BC5BE2 /* Release */ = {
733
+ isa = XCBuildConfiguration;
734
+ baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
735
+ buildSettings = {
736
+ PRODUCT_NAME = "$(TARGET_NAME)";
737
+ };
738
+ name = Release;
739
+ };
740
+ 008FC01D1628BC0300BC5BE2 /* Debug */ = {
741
+ isa = XCBuildConfiguration;
742
+ baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
743
+ buildSettings = {
744
+ PRODUCT_NAME = "$(TARGET_NAME)";
745
+ };
746
+ name = Debug;
747
+ };
748
+ 008FC01E1628BC0300BC5BE2 /* Release */ = {
749
+ isa = XCBuildConfiguration;
750
+ baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
751
+ buildSettings = {
752
+ PRODUCT_NAME = "$(TARGET_NAME)";
753
+ };
754
+ name = Release;
755
+ };
756
+ 008FC02E1628BC6B00BC5BE2 /* Debug */ = {
757
+ isa = XCBuildConfiguration;
758
+ baseConfigurationReference = 1443EE8516417E63007E0579 /* debug.xcconfig */;
759
+ buildSettings = {
760
+ PRODUCT_NAME = "$(TARGET_NAME)";
761
+ };
762
+ name = Debug;
763
+ };
764
+ 008FC02F1628BC6B00BC5BE2 /* Release */ = {
765
+ isa = XCBuildConfiguration;
766
+ baseConfigurationReference = 1443EE8816417E63007E0579 /* release.xcconfig */;
767
+ buildSettings = {
768
+ PRODUCT_NAME = "$(TARGET_NAME)";
769
+ };
770
+ name = Release;
771
+ };
772
+ 008FC0341628BC9400BC5BE2 /* Debug */ = {
773
+ isa = XCBuildConfiguration;
774
+ buildSettings = {
775
+ PRODUCT_NAME = "$(TARGET_NAME)";
776
+ };
777
+ name = Debug;
778
+ };
779
+ 008FC0351628BC9400BC5BE2 /* Release */ = {
780
+ isa = XCBuildConfiguration;
781
+ buildSettings = {
782
+ PRODUCT_NAME = "$(TARGET_NAME)";
783
+ };
784
+ name = Release;
785
+ };
786
+ /* End XCBuildConfiguration section */
787
+
788
+ /* Begin XCConfigurationList section */
789
+ 008FBF2B1628B79300BC5BE2 /* Build configuration list for PBXProject "libusbx" */ = {
790
+ isa = XCConfigurationList;
791
+ buildConfigurations = (
792
+ 008FBF331628B79300BC5BE2 /* Debug */,
793
+ 008FBF341628B79300BC5BE2 /* Release */,
794
+ );
795
+ defaultConfigurationIsVisible = 0;
796
+ defaultConfigurationName = Release;
797
+ };
798
+ 008FBF351628B79300BC5BE2 /* Build configuration list for PBXNativeTarget "libusbx" */ = {
799
+ isa = XCConfigurationList;
800
+ buildConfigurations = (
801
+ 008FBF361628B79300BC5BE2 /* Debug */,
802
+ 008FBF371628B79300BC5BE2 /* Release */,
803
+ );
804
+ defaultConfigurationIsVisible = 0;
805
+ defaultConfigurationName = Release;
806
+ };
807
+ 008FBFC61628B9FE00BC5BE2 /* Build configuration list for PBXNativeTarget "xusb" */ = {
808
+ isa = XCConfigurationList;
809
+ buildConfigurations = (
810
+ 008FBFC41628B9FE00BC5BE2 /* Debug */,
811
+ 008FBFC51628B9FE00BC5BE2 /* Release */,
812
+ );
813
+ defaultConfigurationIsVisible = 0;
814
+ defaultConfigurationName = Release;
815
+ };
816
+ 008FBFFC1628BB8C00BC5BE2 /* Build configuration list for PBXNativeTarget "dpfp" */ = {
817
+ isa = XCConfigurationList;
818
+ buildConfigurations = (
819
+ 008FBFFD1628BB8C00BC5BE2 /* Debug */,
820
+ 008FBFFE1628BB8C00BC5BE2 /* Release */,
821
+ );
822
+ defaultConfigurationIsVisible = 0;
823
+ defaultConfigurationName = Release;
824
+ };
825
+ 008FC00C1628BBDB00BC5BE2 /* Build configuration list for PBXNativeTarget "dpfp_threaded" */ = {
826
+ isa = XCConfigurationList;
827
+ buildConfigurations = (
828
+ 008FC00D1628BBDB00BC5BE2 /* Debug */,
829
+ 008FC00E1628BBDB00BC5BE2 /* Release */,
830
+ );
831
+ defaultConfigurationIsVisible = 0;
832
+ defaultConfigurationName = Release;
833
+ };
834
+ 008FC01C1628BC0300BC5BE2 /* Build configuration list for PBXNativeTarget "fxload" */ = {
835
+ isa = XCConfigurationList;
836
+ buildConfigurations = (
837
+ 008FC01D1628BC0300BC5BE2 /* Debug */,
838
+ 008FC01E1628BC0300BC5BE2 /* Release */,
839
+ );
840
+ defaultConfigurationIsVisible = 0;
841
+ defaultConfigurationName = Release;
842
+ };
843
+ 008FC02D1628BC6B00BC5BE2 /* Build configuration list for PBXNativeTarget "listdevs" */ = {
844
+ isa = XCConfigurationList;
845
+ buildConfigurations = (
846
+ 008FC02E1628BC6B00BC5BE2 /* Debug */,
847
+ 008FC02F1628BC6B00BC5BE2 /* Release */,
848
+ );
849
+ defaultConfigurationIsVisible = 0;
850
+ defaultConfigurationName = Release;
851
+ };
852
+ 008FC0331628BC9400BC5BE2 /* Build configuration list for PBXAggregateTarget "all" */ = {
853
+ isa = XCConfigurationList;
854
+ buildConfigurations = (
855
+ 008FC0341628BC9400BC5BE2 /* Debug */,
856
+ 008FC0351628BC9400BC5BE2 /* Release */,
857
+ );
858
+ defaultConfigurationIsVisible = 0;
859
+ defaultConfigurationName = Release;
860
+ };
861
+ /* End XCConfigurationList section */
862
+ };
863
+ rootObject = 008FBF281628B79300BC5BE2 /* Project object */;
864
+ }