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
@@ -0,0 +1,23 @@
1
+ # ltversion.m4 -- version numbers -*- Autoconf -*-
2
+ #
3
+ # Copyright (C) 2004 Free Software Foundation, Inc.
4
+ # Written by Scott James Remnant, 2004
5
+ #
6
+ # This file is free software; the Free Software Foundation gives
7
+ # unlimited permission to copy and/or distribute it, with or without
8
+ # modifications, as long as this notice is preserved.
9
+
10
+ # @configure_input@
11
+
12
+ # serial 3337 ltversion.m4
13
+ # This file is part of GNU Libtool
14
+
15
+ m4_define([LT_PACKAGE_VERSION], [2.4.2])
16
+ m4_define([LT_PACKAGE_REVISION], [1.3337])
17
+
18
+ AC_DEFUN([LTVERSION_VERSION],
19
+ [macro_version='2.4.2'
20
+ macro_revision='1.3337'
21
+ _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
22
+ _LT_DECL(, macro_revision, 0)
23
+ ])
@@ -0,0 +1,98 @@
1
+ # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
2
+ #
3
+ # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
4
+ # Written by Scott James Remnant, 2004.
5
+ #
6
+ # This file is free software; the Free Software Foundation gives
7
+ # unlimited permission to copy and/or distribute it, with or without
8
+ # modifications, as long as this notice is preserved.
9
+
10
+ # serial 5 lt~obsolete.m4
11
+
12
+ # These exist entirely to fool aclocal when bootstrapping libtool.
13
+ #
14
+ # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
15
+ # which have later been changed to m4_define as they aren't part of the
16
+ # exported API, or moved to Autoconf or Automake where they belong.
17
+ #
18
+ # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
19
+ # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
20
+ # using a macro with the same name in our local m4/libtool.m4 it'll
21
+ # pull the old libtool.m4 in (it doesn't see our shiny new m4_define
22
+ # and doesn't know about Autoconf macros at all.)
23
+ #
24
+ # So we provide this file, which has a silly filename so it's always
25
+ # included after everything else. This provides aclocal with the
26
+ # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
27
+ # because those macros already exist, or will be overwritten later.
28
+ # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
29
+ #
30
+ # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
31
+ # Yes, that means every name once taken will need to remain here until
32
+ # we give up compatibility with versions before 1.7, at which point
33
+ # we need to keep only those names which we still refer to.
34
+
35
+ # This is to help aclocal find these macros, as it can't see m4_define.
36
+ AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
37
+
38
+ m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
39
+ m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
40
+ m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
41
+ m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
42
+ m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
43
+ m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
44
+ m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
45
+ m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
46
+ m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
47
+ m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
48
+ m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
49
+ m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
50
+ m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
51
+ m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
52
+ m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
53
+ m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
54
+ m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
55
+ m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
56
+ m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
57
+ m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
58
+ m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
59
+ m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
60
+ m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
61
+ m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
62
+ m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
63
+ m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
64
+ m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
65
+ m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
66
+ m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
67
+ m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
68
+ m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
69
+ m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
70
+ m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
71
+ m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
72
+ m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
73
+ m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
74
+ m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
75
+ m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
76
+ m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
77
+ m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
78
+ m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
79
+ m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
80
+ m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
81
+ m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
82
+ m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
83
+ m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
84
+ m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
85
+ m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
86
+ m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
87
+ m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
88
+ m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
89
+ m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
90
+ m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
91
+ m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
92
+ m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
93
+ m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
94
+ m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
95
+ m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
96
+ m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
97
+ m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
98
+ m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
@@ -0,0 +1,215 @@
1
+ #! /bin/sh
2
+ # Common wrapper for a few potentially missing GNU programs.
3
+
4
+ scriptversion=2012-06-26.16; # UTC
5
+
6
+ # Copyright (C) 1996-2013 Free Software Foundation, Inc.
7
+ # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
8
+
9
+ # This program is free software; you can redistribute it and/or modify
10
+ # it under the terms of the GNU General Public License as published by
11
+ # the Free Software Foundation; either version 2, or (at your option)
12
+ # any later version.
13
+
14
+ # This program is distributed in the hope that it will be useful,
15
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ # GNU General Public License for more details.
18
+
19
+ # You should have received a copy of the GNU General Public License
20
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ # As a special exception to the GNU General Public License, if you
23
+ # distribute this file as part of a program that contains a
24
+ # configuration script generated by Autoconf, you may include it under
25
+ # the same distribution terms that you use for the rest of that program.
26
+
27
+ if test $# -eq 0; then
28
+ echo 1>&2 "Try '$0 --help' for more information"
29
+ exit 1
30
+ fi
31
+
32
+ case $1 in
33
+
34
+ --is-lightweight)
35
+ # Used by our autoconf macros to check whether the available missing
36
+ # script is modern enough.
37
+ exit 0
38
+ ;;
39
+
40
+ --run)
41
+ # Back-compat with the calling convention used by older automake.
42
+ shift
43
+ ;;
44
+
45
+ -h|--h|--he|--hel|--help)
46
+ echo "\
47
+ $0 [OPTION]... PROGRAM [ARGUMENT]...
48
+
49
+ Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
50
+ to PROGRAM being missing or too old.
51
+
52
+ Options:
53
+ -h, --help display this help and exit
54
+ -v, --version output version information and exit
55
+
56
+ Supported PROGRAM values:
57
+ aclocal autoconf autoheader autom4te automake makeinfo
58
+ bison yacc flex lex help2man
59
+
60
+ Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
61
+ 'g' are ignored when checking the name.
62
+
63
+ Send bug reports to <bug-automake@gnu.org>."
64
+ exit $?
65
+ ;;
66
+
67
+ -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
68
+ echo "missing $scriptversion (GNU Automake)"
69
+ exit $?
70
+ ;;
71
+
72
+ -*)
73
+ echo 1>&2 "$0: unknown '$1' option"
74
+ echo 1>&2 "Try '$0 --help' for more information"
75
+ exit 1
76
+ ;;
77
+
78
+ esac
79
+
80
+ # Run the given program, remember its exit status.
81
+ "$@"; st=$?
82
+
83
+ # If it succeeded, we are done.
84
+ test $st -eq 0 && exit 0
85
+
86
+ # Also exit now if we it failed (or wasn't found), and '--version' was
87
+ # passed; such an option is passed most likely to detect whether the
88
+ # program is present and works.
89
+ case $2 in --version|--help) exit $st;; esac
90
+
91
+ # Exit code 63 means version mismatch. This often happens when the user
92
+ # tries to use an ancient version of a tool on a file that requires a
93
+ # minimum version.
94
+ if test $st -eq 63; then
95
+ msg="probably too old"
96
+ elif test $st -eq 127; then
97
+ # Program was missing.
98
+ msg="missing on your system"
99
+ else
100
+ # Program was found and executed, but failed. Give up.
101
+ exit $st
102
+ fi
103
+
104
+ perl_URL=http://www.perl.org/
105
+ flex_URL=http://flex.sourceforge.net/
106
+ gnu_software_URL=http://www.gnu.org/software
107
+
108
+ program_details ()
109
+ {
110
+ case $1 in
111
+ aclocal|automake)
112
+ echo "The '$1' program is part of the GNU Automake package:"
113
+ echo "<$gnu_software_URL/automake>"
114
+ echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
115
+ echo "<$gnu_software_URL/autoconf>"
116
+ echo "<$gnu_software_URL/m4/>"
117
+ echo "<$perl_URL>"
118
+ ;;
119
+ autoconf|autom4te|autoheader)
120
+ echo "The '$1' program is part of the GNU Autoconf package:"
121
+ echo "<$gnu_software_URL/autoconf/>"
122
+ echo "It also requires GNU m4 and Perl in order to run:"
123
+ echo "<$gnu_software_URL/m4/>"
124
+ echo "<$perl_URL>"
125
+ ;;
126
+ esac
127
+ }
128
+
129
+ give_advice ()
130
+ {
131
+ # Normalize program name to check for.
132
+ normalized_program=`echo "$1" | sed '
133
+ s/^gnu-//; t
134
+ s/^gnu//; t
135
+ s/^g//; t'`
136
+
137
+ printf '%s\n' "'$1' is $msg."
138
+
139
+ configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
140
+ case $normalized_program in
141
+ autoconf*)
142
+ echo "You should only need it if you modified 'configure.ac',"
143
+ echo "or m4 files included by it."
144
+ program_details 'autoconf'
145
+ ;;
146
+ autoheader*)
147
+ echo "You should only need it if you modified 'acconfig.h' or"
148
+ echo "$configure_deps."
149
+ program_details 'autoheader'
150
+ ;;
151
+ automake*)
152
+ echo "You should only need it if you modified 'Makefile.am' or"
153
+ echo "$configure_deps."
154
+ program_details 'automake'
155
+ ;;
156
+ aclocal*)
157
+ echo "You should only need it if you modified 'acinclude.m4' or"
158
+ echo "$configure_deps."
159
+ program_details 'aclocal'
160
+ ;;
161
+ autom4te*)
162
+ echo "You might have modified some maintainer files that require"
163
+ echo "the 'automa4te' program to be rebuilt."
164
+ program_details 'autom4te'
165
+ ;;
166
+ bison*|yacc*)
167
+ echo "You should only need it if you modified a '.y' file."
168
+ echo "You may want to install the GNU Bison package:"
169
+ echo "<$gnu_software_URL/bison/>"
170
+ ;;
171
+ lex*|flex*)
172
+ echo "You should only need it if you modified a '.l' file."
173
+ echo "You may want to install the Fast Lexical Analyzer package:"
174
+ echo "<$flex_URL>"
175
+ ;;
176
+ help2man*)
177
+ echo "You should only need it if you modified a dependency" \
178
+ "of a man page."
179
+ echo "You may want to install the GNU Help2man package:"
180
+ echo "<$gnu_software_URL/help2man/>"
181
+ ;;
182
+ makeinfo*)
183
+ echo "You should only need it if you modified a '.texi' file, or"
184
+ echo "any other file indirectly affecting the aspect of the manual."
185
+ echo "You might want to install the Texinfo package:"
186
+ echo "<$gnu_software_URL/texinfo/>"
187
+ echo "The spurious makeinfo call might also be the consequence of"
188
+ echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
189
+ echo "want to install GNU make:"
190
+ echo "<$gnu_software_URL/make/>"
191
+ ;;
192
+ *)
193
+ echo "You might have modified some files without having the proper"
194
+ echo "tools for further handling them. Check the 'README' file, it"
195
+ echo "often tells you about the needed prerequisites for installing"
196
+ echo "this package. You may also peek at any GNU archive site, in"
197
+ echo "case some other package contains this missing '$1' program."
198
+ ;;
199
+ esac
200
+ }
201
+
202
+ give_advice "$1" | sed -e '1s/^/WARNING: /' \
203
+ -e '2,$s/^/ /' >&2
204
+
205
+ # Propagate the correct exit status (expected to be 127 for a program
206
+ # not found, 63 for a program that failed due to version mismatch).
207
+ exit $st
208
+
209
+ # Local variables:
210
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
211
+ # time-stamp-start: "scriptversion="
212
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
213
+ # time-stamp-time-zone: "UTC"
214
+ # time-stamp-end: "; # UTC"
215
+ # End:
@@ -0,0 +1,6 @@
1
+ AM_CPPFLAGS = -I$(top_srcdir)/libusb
2
+ LDADD = ../libusb/libusb-1.0.la
3
+
4
+ noinst_PROGRAMS = stress
5
+
6
+ stress_SOURCES = stress.c libusbx_testlib.h testlib.c
@@ -0,0 +1,583 @@
1
+ # Makefile.in generated by automake 1.13.4 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+ @SET_MAKE@
16
+
17
+ VPATH = @srcdir@
18
+ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+ am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
+ pkgdatadir = $(datadir)/@PACKAGE@
64
+ pkgincludedir = $(includedir)/@PACKAGE@
65
+ pkglibdir = $(libdir)/@PACKAGE@
66
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
67
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
68
+ install_sh_DATA = $(install_sh) -c -m 644
69
+ install_sh_PROGRAM = $(install_sh) -c
70
+ install_sh_SCRIPT = $(install_sh) -c
71
+ INSTALL_HEADER = $(INSTALL_DATA)
72
+ transform = $(program_transform_name)
73
+ NORMAL_INSTALL = :
74
+ PRE_INSTALL = :
75
+ POST_INSTALL = :
76
+ NORMAL_UNINSTALL = :
77
+ PRE_UNINSTALL = :
78
+ POST_UNINSTALL = :
79
+ build_triplet = @build@
80
+ host_triplet = @host@
81
+ noinst_PROGRAMS = stress$(EXEEXT)
82
+ subdir = tests
83
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
84
+ $(top_srcdir)/depcomp
85
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
86
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
87
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
88
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
89
+ $(top_srcdir)/libusb/version.h $(top_srcdir)/configure.ac
90
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
91
+ $(ACLOCAL_M4)
92
+ mkinstalldirs = $(install_sh) -d
93
+ CONFIG_HEADER = $(top_builddir)/config.h
94
+ CONFIG_CLEAN_FILES =
95
+ CONFIG_CLEAN_VPATH_FILES =
96
+ PROGRAMS = $(noinst_PROGRAMS)
97
+ am_stress_OBJECTS = stress.$(OBJEXT) testlib.$(OBJEXT)
98
+ stress_OBJECTS = $(am_stress_OBJECTS)
99
+ stress_LDADD = $(LDADD)
100
+ stress_DEPENDENCIES = ../libusb/libusb-1.0.la
101
+ AM_V_lt = $(am__v_lt_@AM_V@)
102
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
103
+ am__v_lt_0 = --silent
104
+ am__v_lt_1 =
105
+ AM_V_P = $(am__v_P_@AM_V@)
106
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
107
+ am__v_P_0 = false
108
+ am__v_P_1 = :
109
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
110
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
111
+ am__v_GEN_0 = @echo " GEN " $@;
112
+ am__v_GEN_1 =
113
+ AM_V_at = $(am__v_at_@AM_V@)
114
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
115
+ am__v_at_0 = @
116
+ am__v_at_1 =
117
+ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
118
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
119
+ am__depfiles_maybe = depfiles
120
+ am__mv = mv -f
121
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
122
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
123
+ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
124
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
125
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
126
+ $(AM_CFLAGS) $(CFLAGS)
127
+ AM_V_CC = $(am__v_CC_@AM_V@)
128
+ am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
129
+ am__v_CC_0 = @echo " CC " $@;
130
+ am__v_CC_1 =
131
+ CCLD = $(CC)
132
+ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
133
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
134
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
135
+ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
136
+ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
137
+ am__v_CCLD_0 = @echo " CCLD " $@;
138
+ am__v_CCLD_1 =
139
+ SOURCES = $(stress_SOURCES)
140
+ DIST_SOURCES = $(stress_SOURCES)
141
+ am__can_run_installinfo = \
142
+ case $$AM_UPDATE_INFO_DIR in \
143
+ n|no|NO) false;; \
144
+ *) (install-info --version) >/dev/null 2>&1;; \
145
+ esac
146
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
147
+ # Read a list of newline-separated strings from the standard input,
148
+ # and print each of them once, without duplicates. Input order is
149
+ # *not* preserved.
150
+ am__uniquify_input = $(AWK) '\
151
+ BEGIN { nonempty = 0; } \
152
+ { items[$$0] = 1; nonempty = 1; } \
153
+ END { if (nonempty) { for (i in items) print i; }; } \
154
+ '
155
+ # Make sure the list of sources is unique. This is necessary because,
156
+ # e.g., the same source file might be shared among _SOURCES variables
157
+ # for different programs/libraries.
158
+ am__define_uniq_tagged_files = \
159
+ list='$(am__tagged_files)'; \
160
+ unique=`for i in $$list; do \
161
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
162
+ done | $(am__uniquify_input)`
163
+ ETAGS = etags
164
+ CTAGS = ctags
165
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
166
+ ACLOCAL = @ACLOCAL@
167
+ AMTAR = @AMTAR@
168
+ AM_CFLAGS = @AM_CFLAGS@
169
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
170
+ AR = @AR@
171
+ AUTOCONF = @AUTOCONF@
172
+ AUTOHEADER = @AUTOHEADER@
173
+ AUTOMAKE = @AUTOMAKE@
174
+ AWK = @AWK@
175
+ CC = @CC@
176
+ CCDEPMODE = @CCDEPMODE@
177
+ CFLAGS = @CFLAGS@
178
+ CPP = @CPP@
179
+ CPPFLAGS = @CPPFLAGS@
180
+ CYGPATH_W = @CYGPATH_W@
181
+ DEFS = @DEFS@
182
+ DEPDIR = @DEPDIR@
183
+ DLLTOOL = @DLLTOOL@
184
+ DSYMUTIL = @DSYMUTIL@
185
+ DUMPBIN = @DUMPBIN@
186
+ ECHO_C = @ECHO_C@
187
+ ECHO_N = @ECHO_N@
188
+ ECHO_T = @ECHO_T@
189
+ EGREP = @EGREP@
190
+ EXEEXT = @EXEEXT@
191
+ FGREP = @FGREP@
192
+ GREP = @GREP@
193
+ INSTALL = @INSTALL@
194
+ INSTALL_DATA = @INSTALL_DATA@
195
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
196
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
197
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
198
+ LD = @LD@
199
+ LDFLAGS = @LDFLAGS@
200
+ LIBOBJS = @LIBOBJS@
201
+ LIBS = @LIBS@
202
+ LIBTOOL = @LIBTOOL@
203
+ LIPO = @LIPO@
204
+ LN_S = @LN_S@
205
+ LTLDFLAGS = @LTLDFLAGS@
206
+ LTLIBOBJS = @LTLIBOBJS@
207
+ MAINT = @MAINT@
208
+ MAKEINFO = @MAKEINFO@
209
+ MANIFEST_TOOL = @MANIFEST_TOOL@
210
+ MKDIR_P = @MKDIR_P@
211
+ NM = @NM@
212
+ NMEDIT = @NMEDIT@
213
+ OBJDUMP = @OBJDUMP@
214
+ OBJEXT = @OBJEXT@
215
+ OS_DARWIN = @OS_DARWIN@
216
+ OS_LINUX = @OS_LINUX@
217
+ OS_NETBSD = @OS_NETBSD@
218
+ OS_OPENBSD = @OS_OPENBSD@
219
+ OS_WINDOWS = @OS_WINDOWS@
220
+ OTOOL = @OTOOL@
221
+ OTOOL64 = @OTOOL64@
222
+ PACKAGE = @PACKAGE@
223
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
224
+ PACKAGE_NAME = @PACKAGE_NAME@
225
+ PACKAGE_STRING = @PACKAGE_STRING@
226
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
227
+ PACKAGE_URL = @PACKAGE_URL@
228
+ PACKAGE_VERSION = @PACKAGE_VERSION@
229
+ PATH_SEPARATOR = @PATH_SEPARATOR@
230
+ RANLIB = @RANLIB@
231
+ RC = @RC@
232
+ SED = @SED@
233
+ SET_MAKE = @SET_MAKE@
234
+ SHELL = @SHELL@
235
+ STRIP = @STRIP@
236
+ USE_UDEV = @USE_UDEV@
237
+ VERSION = @VERSION@
238
+ abs_builddir = @abs_builddir@
239
+ abs_srcdir = @abs_srcdir@
240
+ abs_top_builddir = @abs_top_builddir@
241
+ abs_top_srcdir = @abs_top_srcdir@
242
+ ac_ct_AR = @ac_ct_AR@
243
+ ac_ct_CC = @ac_ct_CC@
244
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
245
+ am__include = @am__include@
246
+ am__leading_dot = @am__leading_dot@
247
+ am__quote = @am__quote@
248
+ am__tar = @am__tar@
249
+ am__untar = @am__untar@
250
+ bindir = @bindir@
251
+ build = @build@
252
+ build_alias = @build_alias@
253
+ build_cpu = @build_cpu@
254
+ build_os = @build_os@
255
+ build_vendor = @build_vendor@
256
+ builddir = @builddir@
257
+ datadir = @datadir@
258
+ datarootdir = @datarootdir@
259
+ docdir = @docdir@
260
+ dvidir = @dvidir@
261
+ exec_prefix = @exec_prefix@
262
+ host = @host@
263
+ host_alias = @host_alias@
264
+ host_cpu = @host_cpu@
265
+ host_os = @host_os@
266
+ host_vendor = @host_vendor@
267
+ htmldir = @htmldir@
268
+ includedir = @includedir@
269
+ infodir = @infodir@
270
+ install_sh = @install_sh@
271
+ libdir = @libdir@
272
+ libexecdir = @libexecdir@
273
+ localedir = @localedir@
274
+ localstatedir = @localstatedir@
275
+ mandir = @mandir@
276
+ mkdir_p = @mkdir_p@
277
+ oldincludedir = @oldincludedir@
278
+ pdfdir = @pdfdir@
279
+ prefix = @prefix@
280
+ program_transform_name = @program_transform_name@
281
+ psdir = @psdir@
282
+ sbindir = @sbindir@
283
+ sharedstatedir = @sharedstatedir@
284
+ srcdir = @srcdir@
285
+ sysconfdir = @sysconfdir@
286
+ target_alias = @target_alias@
287
+ top_build_prefix = @top_build_prefix@
288
+ top_builddir = @top_builddir@
289
+ top_srcdir = @top_srcdir@
290
+ AM_CPPFLAGS = -I$(top_srcdir)/libusb
291
+ LDADD = ../libusb/libusb-1.0.la
292
+ stress_SOURCES = stress.c libusbx_testlib.h testlib.c
293
+ all: all-am
294
+
295
+ .SUFFIXES:
296
+ .SUFFIXES: .c .lo .o .obj
297
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
298
+ @for dep in $?; do \
299
+ case '$(am__configure_deps)' in \
300
+ *$$dep*) \
301
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
302
+ && { if test -f $@; then exit 0; else break; fi; }; \
303
+ exit 1;; \
304
+ esac; \
305
+ done; \
306
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \
307
+ $(am__cd) $(top_srcdir) && \
308
+ $(AUTOMAKE) --gnu tests/Makefile
309
+ .PRECIOUS: Makefile
310
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
311
+ @case '$?' in \
312
+ *config.status*) \
313
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
314
+ *) \
315
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
316
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
317
+ esac;
318
+
319
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
320
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
321
+
322
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
323
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
324
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
325
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
326
+ $(am__aclocal_m4_deps):
327
+
328
+ clean-noinstPROGRAMS:
329
+ @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
330
+ echo " rm -f" $$list; \
331
+ rm -f $$list || exit $$?; \
332
+ test -n "$(EXEEXT)" || exit 0; \
333
+ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
334
+ echo " rm -f" $$list; \
335
+ rm -f $$list
336
+
337
+ stress$(EXEEXT): $(stress_OBJECTS) $(stress_DEPENDENCIES) $(EXTRA_stress_DEPENDENCIES)
338
+ @rm -f stress$(EXEEXT)
339
+ $(AM_V_CCLD)$(LINK) $(stress_OBJECTS) $(stress_LDADD) $(LIBS)
340
+
341
+ mostlyclean-compile:
342
+ -rm -f *.$(OBJEXT)
343
+
344
+ distclean-compile:
345
+ -rm -f *.tab.c
346
+
347
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stress.Po@am__quote@
348
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testlib.Po@am__quote@
349
+
350
+ .c.o:
351
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
352
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
353
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
354
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
355
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
356
+
357
+ .c.obj:
358
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
359
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
360
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
361
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
362
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
363
+
364
+ .c.lo:
365
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
366
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
367
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
368
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
369
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
370
+
371
+ mostlyclean-libtool:
372
+ -rm -f *.lo
373
+
374
+ clean-libtool:
375
+ -rm -rf .libs _libs
376
+
377
+ ID: $(am__tagged_files)
378
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
379
+ tags: tags-am
380
+ TAGS: tags
381
+
382
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
383
+ set x; \
384
+ here=`pwd`; \
385
+ $(am__define_uniq_tagged_files); \
386
+ shift; \
387
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
388
+ test -n "$$unique" || unique=$$empty_fix; \
389
+ if test $$# -gt 0; then \
390
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
391
+ "$$@" $$unique; \
392
+ else \
393
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
394
+ $$unique; \
395
+ fi; \
396
+ fi
397
+ ctags: ctags-am
398
+
399
+ CTAGS: ctags
400
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
401
+ $(am__define_uniq_tagged_files); \
402
+ test -z "$(CTAGS_ARGS)$$unique" \
403
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
404
+ $$unique
405
+
406
+ GTAGS:
407
+ here=`$(am__cd) $(top_builddir) && pwd` \
408
+ && $(am__cd) $(top_srcdir) \
409
+ && gtags -i $(GTAGS_ARGS) "$$here"
410
+ cscopelist: cscopelist-am
411
+
412
+ cscopelist-am: $(am__tagged_files)
413
+ list='$(am__tagged_files)'; \
414
+ case "$(srcdir)" in \
415
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
416
+ *) sdir=$(subdir)/$(srcdir) ;; \
417
+ esac; \
418
+ for i in $$list; do \
419
+ if test -f "$$i"; then \
420
+ echo "$(subdir)/$$i"; \
421
+ else \
422
+ echo "$$sdir/$$i"; \
423
+ fi; \
424
+ done >> $(top_builddir)/cscope.files
425
+
426
+ distclean-tags:
427
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
428
+
429
+ distdir: $(DISTFILES)
430
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
431
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
432
+ list='$(DISTFILES)'; \
433
+ dist_files=`for file in $$list; do echo $$file; done | \
434
+ sed -e "s|^$$srcdirstrip/||;t" \
435
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
436
+ case $$dist_files in \
437
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
438
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
439
+ sort -u` ;; \
440
+ esac; \
441
+ for file in $$dist_files; do \
442
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
443
+ if test -d $$d/$$file; then \
444
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
445
+ if test -d "$(distdir)/$$file"; then \
446
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
447
+ fi; \
448
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
449
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
450
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
451
+ fi; \
452
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
453
+ else \
454
+ test -f "$(distdir)/$$file" \
455
+ || cp -p $$d/$$file "$(distdir)/$$file" \
456
+ || exit 1; \
457
+ fi; \
458
+ done
459
+ check-am: all-am
460
+ check: check-am
461
+ all-am: Makefile $(PROGRAMS)
462
+ installdirs:
463
+ install: install-am
464
+ install-exec: install-exec-am
465
+ install-data: install-data-am
466
+ uninstall: uninstall-am
467
+
468
+ install-am: all-am
469
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
470
+
471
+ installcheck: installcheck-am
472
+ install-strip:
473
+ if test -z '$(STRIP)'; then \
474
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
475
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
476
+ install; \
477
+ else \
478
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
479
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
480
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
481
+ fi
482
+ mostlyclean-generic:
483
+
484
+ clean-generic:
485
+
486
+ distclean-generic:
487
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
488
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
489
+
490
+ maintainer-clean-generic:
491
+ @echo "This command is intended for maintainers to use"
492
+ @echo "it deletes files that may require special tools to rebuild."
493
+ clean: clean-am
494
+
495
+ clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
496
+ mostlyclean-am
497
+
498
+ distclean: distclean-am
499
+ -rm -rf ./$(DEPDIR)
500
+ -rm -f Makefile
501
+ distclean-am: clean-am distclean-compile distclean-generic \
502
+ distclean-tags
503
+
504
+ dvi: dvi-am
505
+
506
+ dvi-am:
507
+
508
+ html: html-am
509
+
510
+ html-am:
511
+
512
+ info: info-am
513
+
514
+ info-am:
515
+
516
+ install-data-am:
517
+
518
+ install-dvi: install-dvi-am
519
+
520
+ install-dvi-am:
521
+
522
+ install-exec-am:
523
+
524
+ install-html: install-html-am
525
+
526
+ install-html-am:
527
+
528
+ install-info: install-info-am
529
+
530
+ install-info-am:
531
+
532
+ install-man:
533
+
534
+ install-pdf: install-pdf-am
535
+
536
+ install-pdf-am:
537
+
538
+ install-ps: install-ps-am
539
+
540
+ install-ps-am:
541
+
542
+ installcheck-am:
543
+
544
+ maintainer-clean: maintainer-clean-am
545
+ -rm -rf ./$(DEPDIR)
546
+ -rm -f Makefile
547
+ maintainer-clean-am: distclean-am maintainer-clean-generic
548
+
549
+ mostlyclean: mostlyclean-am
550
+
551
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
552
+ mostlyclean-libtool
553
+
554
+ pdf: pdf-am
555
+
556
+ pdf-am:
557
+
558
+ ps: ps-am
559
+
560
+ ps-am:
561
+
562
+ uninstall-am:
563
+
564
+ .MAKE: install-am install-strip
565
+
566
+ .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
567
+ clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \
568
+ ctags-am distclean distclean-compile distclean-generic \
569
+ distclean-libtool distclean-tags distdir dvi dvi-am html \
570
+ html-am info info-am install install-am install-data \
571
+ install-data-am install-dvi install-dvi-am install-exec \
572
+ install-exec-am install-html install-html-am install-info \
573
+ install-info-am install-man install-pdf install-pdf-am \
574
+ install-ps install-ps-am install-strip installcheck \
575
+ installcheck-am installdirs maintainer-clean \
576
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
577
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
578
+ tags tags-am uninstall uninstall-am
579
+
580
+
581
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
582
+ # Otherwise a system limit (for SysV at least) may be exceeded.
583
+ .NOEXPORT: