nutcracker 0.2.4.5 → 0.2.4.6

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 (291) hide show
  1. data/ext/nutcracker/ChangeLog +0 -0
  2. data/ext/nutcracker/LICENSE +0 -0
  3. data/ext/nutcracker/Makefile.am +0 -0
  4. data/ext/nutcracker/Makefile.in +190 -82
  5. data/ext/nutcracker/NOTICE +0 -0
  6. data/ext/nutcracker/README.md +0 -0
  7. data/ext/nutcracker/aclocal.m4 +231 -122
  8. data/ext/nutcracker/conf/nutcracker.leaf.yml +0 -0
  9. data/ext/nutcracker/conf/nutcracker.root.yml +0 -0
  10. data/ext/nutcracker/conf/nutcracker.yml +0 -0
  11. data/ext/nutcracker/config.h.in +0 -15
  12. data/ext/nutcracker/config/config.guess +278 -248
  13. data/ext/nutcracker/config/config.sub +234 -77
  14. data/ext/nutcracker/config/depcomp +143 -39
  15. data/ext/nutcracker/config/install-sh +136 -116
  16. data/ext/nutcracker/config/ltmain.sh +1704 -788
  17. data/ext/nutcracker/config/missing +29 -65
  18. data/ext/nutcracker/configure +1998 -1052
  19. data/ext/nutcracker/configure.ac +2 -34
  20. data/ext/nutcracker/contrib/Makefile.am +0 -0
  21. data/ext/nutcracker/contrib/Makefile.in +120 -47
  22. data/ext/nutcracker/contrib/yaml-0.1.4.tar.gz +0 -0
  23. data/ext/nutcracker/extconf.rb +5 -2
  24. data/ext/nutcracker/m4/libtool.m4 +960 -396
  25. data/ext/nutcracker/m4/ltoptions.m4 +17 -2
  26. data/ext/nutcracker/m4/ltversion.m4 +6 -6
  27. data/ext/nutcracker/notes/c-styleguide.txt +0 -0
  28. data/ext/nutcracker/notes/debug.txt +0 -0
  29. data/ext/nutcracker/notes/memcache.txt +0 -0
  30. data/ext/nutcracker/notes/recommendation.md +0 -0
  31. data/ext/nutcracker/notes/redis.md +0 -0
  32. data/ext/nutcracker/notes/socket.txt +0 -0
  33. data/ext/nutcracker/scripts/nutcracker.init +0 -0
  34. data/ext/nutcracker/scripts/nutcracker.spec +0 -0
  35. data/ext/nutcracker/scripts/redis-check.py +0 -0
  36. data/ext/nutcracker/src/Makefile.am +1 -1
  37. data/ext/nutcracker/src/Makefile.in +167 -81
  38. data/ext/nutcracker/src/hashkit/Makefile.am +0 -0
  39. data/ext/nutcracker/src/hashkit/Makefile.in +72 -37
  40. data/ext/nutcracker/src/hashkit/nc_crc16.c +0 -0
  41. data/ext/nutcracker/src/hashkit/nc_crc32.c +0 -0
  42. data/ext/nutcracker/src/hashkit/nc_fnv.c +0 -0
  43. data/ext/nutcracker/src/hashkit/nc_hashkit.h +0 -0
  44. data/ext/nutcracker/src/hashkit/nc_hsieh.c +0 -0
  45. data/ext/nutcracker/src/hashkit/nc_jenkins.c +0 -0
  46. data/ext/nutcracker/src/hashkit/nc_ketama.c +0 -0
  47. data/ext/nutcracker/src/hashkit/nc_md5.c +0 -0
  48. data/ext/nutcracker/src/hashkit/nc_modula.c +0 -0
  49. data/ext/nutcracker/src/hashkit/nc_murmur.c +0 -0
  50. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.c +0 -0
  51. data/ext/nutcracker/src/hashkit/nc_random.c +0 -0
  52. data/ext/nutcracker/src/nc.c +0 -0
  53. data/ext/nutcracker/src/nc_array.c +0 -0
  54. data/ext/nutcracker/src/nc_array.h +0 -0
  55. data/ext/nutcracker/src/nc_client.c +0 -0
  56. data/ext/nutcracker/src/nc_client.h +0 -0
  57. data/ext/nutcracker/src/nc_conf.c +0 -0
  58. data/ext/nutcracker/src/nc_conf.h +0 -0
  59. data/ext/nutcracker/src/nc_connection.c +0 -0
  60. data/ext/nutcracker/src/nc_connection.h +0 -0
  61. data/ext/nutcracker/src/nc_core.c +26 -29
  62. data/ext/nutcracker/src/nc_core.h +5 -13
  63. data/ext/nutcracker/src/{nc_epoll.c → nc_event.c} +30 -94
  64. data/ext/nutcracker/src/nc_event.h +13 -33
  65. data/ext/nutcracker/src/nc_log.c +0 -0
  66. data/ext/nutcracker/src/nc_log.h +0 -0
  67. data/ext/nutcracker/src/nc_mbuf.c +0 -0
  68. data/ext/nutcracker/src/nc_mbuf.h +0 -0
  69. data/ext/nutcracker/src/nc_message.c +0 -0
  70. data/ext/nutcracker/src/nc_message.h +0 -0
  71. data/ext/nutcracker/src/nc_proxy.c +8 -8
  72. data/ext/nutcracker/src/nc_proxy.h +0 -0
  73. data/ext/nutcracker/src/nc_queue.h +0 -0
  74. data/ext/nutcracker/src/nc_rbtree.c +0 -0
  75. data/ext/nutcracker/src/nc_rbtree.h +0 -0
  76. data/ext/nutcracker/src/nc_request.c +3 -3
  77. data/ext/nutcracker/src/nc_response.c +6 -4
  78. data/ext/nutcracker/src/nc_server.c +5 -5
  79. data/ext/nutcracker/src/nc_server.h +0 -0
  80. data/ext/nutcracker/src/nc_signal.c +0 -0
  81. data/ext/nutcracker/src/nc_signal.h +0 -0
  82. data/ext/nutcracker/src/nc_stats.c +21 -16
  83. data/ext/nutcracker/src/nc_stats.h +4 -3
  84. data/ext/nutcracker/src/nc_string.c +0 -0
  85. data/ext/nutcracker/src/nc_string.h +0 -0
  86. data/ext/nutcracker/src/nc_util.c +0 -16
  87. data/ext/nutcracker/src/nc_util.h +0 -1
  88. data/ext/nutcracker/src/proto/Makefile.am +0 -0
  89. data/ext/nutcracker/src/proto/Makefile.in +72 -37
  90. data/ext/nutcracker/src/proto/nc_memcache.c +0 -0
  91. data/ext/nutcracker/src/proto/nc_proto.h +0 -0
  92. data/ext/nutcracker/src/proto/nc_redis.c +0 -0
  93. data/lib/nutcracker/version.rb +1 -1
  94. metadata +3 -200
  95. data/ext/nutcracker/Makefile +0 -643
  96. data/ext/nutcracker/autom4te.cache/output.0 +0 -18664
  97. data/ext/nutcracker/autom4te.cache/output.1 +0 -18664
  98. data/ext/nutcracker/autom4te.cache/output.2 +0 -18664
  99. data/ext/nutcracker/autom4te.cache/requests +0 -494
  100. data/ext/nutcracker/autom4te.cache/traces.0 +0 -2415
  101. data/ext/nutcracker/autom4te.cache/traces.1 +0 -945
  102. data/ext/nutcracker/autom4te.cache/traces.2 +0 -2415
  103. data/ext/nutcracker/config.h +0 -332
  104. data/ext/nutcracker/config.log +0 -2684
  105. data/ext/nutcracker/config.status +0 -2317
  106. data/ext/nutcracker/contrib/Makefile +0 -494
  107. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile +0 -736
  108. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +0 -13102
  109. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +0 -13085
  110. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.2 +0 -13085
  111. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +0 -476
  112. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.0 +0 -2339
  113. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +0 -545
  114. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +0 -2339
  115. data/ext/nutcracker/contrib/yaml-0.1.4/config.h +0 -81
  116. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +0 -80
  117. data/ext/nutcracker/contrib/yaml-0.1.4/config.log +0 -688
  118. data/ext/nutcracker/contrib/yaml-0.1.4/config.status +0 -2032
  119. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/annotated.html +0 -51
  120. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/bc_s.png +0 -0
  121. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/classes.html +0 -41
  122. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/closed.png +0 -0
  123. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.css +0 -656
  124. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.png +0 -0
  125. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/files.html +0 -40
  126. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions.html +0 -91
  127. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x62.html +0 -84
  128. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x63.html +0 -87
  129. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x64.html +0 -83
  130. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x65.html +0 -110
  131. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x66.html +0 -79
  132. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x68.html +0 -80
  133. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x69.html +0 -92
  134. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6b.html +0 -71
  135. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6c.html +0 -88
  136. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6d.html +0 -96
  137. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6e.html +0 -71
  138. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6f.html +0 -80
  139. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x70.html +0 -100
  140. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x71.html +0 -71
  141. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x72.html +0 -87
  142. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x73.html +0 -163
  143. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x74.html +0 -115
  144. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x75.html +0 -71
  145. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x76.html +0 -80
  146. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x77.html +0 -77
  147. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars.html +0 -91
  148. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x62.html +0 -84
  149. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x63.html +0 -87
  150. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x64.html +0 -83
  151. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x65.html +0 -110
  152. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x66.html +0 -79
  153. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x68.html +0 -80
  154. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x69.html +0 -92
  155. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6b.html +0 -71
  156. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6c.html +0 -88
  157. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6d.html +0 -96
  158. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6e.html +0 -71
  159. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6f.html +0 -80
  160. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x70.html +0 -100
  161. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x71.html +0 -71
  162. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x72.html +0 -87
  163. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x73.html +0 -163
  164. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x74.html +0 -115
  165. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x75.html +0 -71
  166. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x76.html +0 -80
  167. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x77.html +0 -77
  168. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals.html +0 -667
  169. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_defs.html +0 -81
  170. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_enum.html +0 -78
  171. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_eval.html +0 -373
  172. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_func.html +0 -196
  173. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_type.html +0 -126
  174. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__basic.html +0 -320
  175. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__emitter.html +0 -819
  176. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__events.html +0 -664
  177. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__export.html +0 -60
  178. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__nodes.html +0 -795
  179. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__parser.html +0 -606
  180. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__styles.html +0 -222
  181. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__tokens.html +0 -246
  182. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__version.html +0 -106
  183. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/index.html +0 -31
  184. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/modules.html +0 -42
  185. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_f.png +0 -0
  186. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_h.png +0 -0
  187. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/open.png +0 -0
  188. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__alias__data__s.html +0 -108
  189. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__document__s.html +0 -235
  190. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__emitter__s.html +0 -1300
  191. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__event__s.html +0 -496
  192. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__mark__s.html +0 -108
  193. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__pair__s.html +0 -91
  194. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__s.html +0 -420
  195. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__parser__s.html +0 -1229
  196. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__simple__key__s.html +0 -97
  197. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__tag__directive__s.html +0 -91
  198. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__token__s.html +0 -413
  199. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__version__directive__s.html +0 -91
  200. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_a.png +0 -0
  201. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_b.png +0 -0
  202. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_h.png +0 -0
  203. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_s.png +0 -0
  204. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tabs.css +0 -59
  205. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/yaml_8h.html +0 -525
  206. data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.am +0 -17
  207. data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.in +0 -470
  208. data/ext/nutcracker/contrib/yaml-0.1.4/libtool +0 -8890
  209. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile +0 -484
  210. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.lo +0 -12
  211. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.o +0 -0
  212. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.lo +0 -12
  213. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.o +0 -0
  214. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.lo +0 -12
  215. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.o +0 -0
  216. data/ext/nutcracker/contrib/yaml-0.1.4/src/libyaml.la +0 -41
  217. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.lo +0 -12
  218. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.o +0 -0
  219. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.lo +0 -12
  220. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.o +0 -0
  221. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.lo +0 -12
  222. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.o +0 -0
  223. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.lo +0 -12
  224. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.o +0 -0
  225. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.lo +0 -12
  226. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.o +0 -0
  227. data/ext/nutcracker/contrib/yaml-0.1.4/stamp-h1 +0 -1
  228. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile +0 -675
  229. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor +0 -0
  230. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt +0 -0
  231. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.o +0 -0
  232. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.o +0 -0
  233. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter +0 -0
  234. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt +0 -0
  235. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.o +0 -0
  236. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.o +0 -0
  237. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper +0 -0
  238. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.o +0 -0
  239. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter +0 -0
  240. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.o +0 -0
  241. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader +0 -0
  242. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.o +0 -0
  243. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser +0 -0
  244. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.o +0 -0
  245. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner +0 -0
  246. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.o +0 -0
  247. data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc +0 -10
  248. data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc.in +0 -10
  249. data/ext/nutcracker/exconf.rb +0 -0
  250. data/ext/nutcracker/libtool +0 -9403
  251. data/ext/nutcracker/src/Makefile +0 -647
  252. data/ext/nutcracker/src/hashkit/Makefile +0 -476
  253. data/ext/nutcracker/src/hashkit/libhashkit.a +0 -0
  254. data/ext/nutcracker/src/hashkit/nc_crc16.o +0 -0
  255. data/ext/nutcracker/src/hashkit/nc_crc32.o +0 -0
  256. data/ext/nutcracker/src/hashkit/nc_fnv.o +0 -0
  257. data/ext/nutcracker/src/hashkit/nc_hsieh.o +0 -0
  258. data/ext/nutcracker/src/hashkit/nc_jenkins.o +0 -0
  259. data/ext/nutcracker/src/hashkit/nc_ketama.o +0 -0
  260. data/ext/nutcracker/src/hashkit/nc_md5.o +0 -0
  261. data/ext/nutcracker/src/hashkit/nc_modula.o +0 -0
  262. data/ext/nutcracker/src/hashkit/nc_murmur.o +0 -0
  263. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.o +0 -0
  264. data/ext/nutcracker/src/hashkit/nc_random.o +0 -0
  265. data/ext/nutcracker/src/nc.o +0 -0
  266. data/ext/nutcracker/src/nc_array.o +0 -0
  267. data/ext/nutcracker/src/nc_client.o +0 -0
  268. data/ext/nutcracker/src/nc_conf.o +0 -0
  269. data/ext/nutcracker/src/nc_connection.o +0 -0
  270. data/ext/nutcracker/src/nc_core.o +0 -0
  271. data/ext/nutcracker/src/nc_epoll.o +0 -0
  272. data/ext/nutcracker/src/nc_kqueue.c +0 -296
  273. data/ext/nutcracker/src/nc_kqueue.o +0 -0
  274. data/ext/nutcracker/src/nc_log.o +0 -0
  275. data/ext/nutcracker/src/nc_mbuf.o +0 -0
  276. data/ext/nutcracker/src/nc_message.o +0 -0
  277. data/ext/nutcracker/src/nc_proxy.o +0 -0
  278. data/ext/nutcracker/src/nc_rbtree.o +0 -0
  279. data/ext/nutcracker/src/nc_request.o +0 -0
  280. data/ext/nutcracker/src/nc_response.o +0 -0
  281. data/ext/nutcracker/src/nc_server.o +0 -0
  282. data/ext/nutcracker/src/nc_signal.o +0 -0
  283. data/ext/nutcracker/src/nc_stats.o +0 -0
  284. data/ext/nutcracker/src/nc_string.o +0 -0
  285. data/ext/nutcracker/src/nc_util.o +0 -0
  286. data/ext/nutcracker/src/nutcracker +0 -0
  287. data/ext/nutcracker/src/proto/Makefile +0 -454
  288. data/ext/nutcracker/src/proto/libproto.a +0 -0
  289. data/ext/nutcracker/src/proto/nc_memcache.o +0 -0
  290. data/ext/nutcracker/src/proto/nc_redis.o +0 -0
  291. data/ext/nutcracker/stamp-h1 +0 -1
@@ -1,10 +1,10 @@
1
1
  #! /bin/sh
2
2
  # Configuration validation subroutine script.
3
3
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4
- # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
5
- # Inc.
4
+ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
5
+ # 2011, 2012 Free Software Foundation, Inc.
6
6
 
7
- timestamp='2006-09-20'
7
+ timestamp='2012-02-10'
8
8
 
9
9
  # This file is (in principle) common to ALL GNU software.
10
10
  # The presence of a machine in this file suggests that SOME GNU software
@@ -21,9 +21,7 @@ timestamp='2006-09-20'
21
21
  # GNU General Public License for more details.
22
22
  #
23
23
  # You should have received a copy of the GNU General Public License
24
- # along with this program; if not, write to the Free Software
25
- # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
26
- # 02110-1301, USA.
24
+ # along with this program; if not, see <http://www.gnu.org/licenses/>.
27
25
  #
28
26
  # As a special exception to the GNU General Public License, if you
29
27
  # distribute this file as part of a program that contains a
@@ -32,13 +30,16 @@ timestamp='2006-09-20'
32
30
 
33
31
 
34
32
  # Please send patches to <config-patches@gnu.org>. Submit a context
35
- # diff and a properly formatted ChangeLog entry.
33
+ # diff and a properly formatted GNU ChangeLog entry.
36
34
  #
37
35
  # Configuration subroutine to validate and canonicalize a configuration type.
38
36
  # Supply the specified configuration type as an argument.
39
37
  # If it is invalid, we print an error message on stderr and exit with code 1.
40
38
  # Otherwise, we print the canonical config type on stdout and succeed.
41
39
 
40
+ # You can get the latest version of this script from:
41
+ # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
42
+
42
43
  # This file is supposed to be the same for all GNU packages
43
44
  # and recognize all the CPU types, system types and aliases
44
45
  # that are meaningful with *any* GNU software.
@@ -72,7 +73,8 @@ Report bugs and patches to <config-patches@gnu.org>."
72
73
  version="\
73
74
  GNU config.sub ($timestamp)
74
75
 
75
- Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
76
+ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
77
+ 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
76
78
  Free Software Foundation, Inc.
77
79
 
78
80
  This is free software; see the source for copying conditions. There is NO
@@ -120,12 +122,18 @@ esac
120
122
  # Here we must recognize all the valid KERNEL-OS combinations.
121
123
  maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
122
124
  case $maybe_os in
123
- nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
124
- uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
125
+ nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
126
+ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
127
+ knetbsd*-gnu* | netbsd*-gnu* | \
128
+ kopensolaris*-gnu* | \
125
129
  storm-chaos* | os2-emx* | rtmk-nova*)
126
130
  os=-$maybe_os
127
131
  basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
128
132
  ;;
133
+ android-linux)
134
+ os=-linux-android
135
+ basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
136
+ ;;
129
137
  *)
130
138
  basic_machine=`echo $1 | sed 's/-[^-]*$//'`
131
139
  if [ $basic_machine != $1 ]
@@ -148,10 +156,13 @@ case $os in
148
156
  -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
149
157
  -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
150
158
  -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
151
- -apple | -axis | -knuth | -cray)
159
+ -apple | -axis | -knuth | -cray | -microblaze)
152
160
  os=
153
161
  basic_machine=$1
154
162
  ;;
163
+ -bluegene*)
164
+ os=-cnk
165
+ ;;
155
166
  -sim | -cisco | -oki | -wec | -winbond)
156
167
  os=
157
168
  basic_machine=$1
@@ -166,10 +177,10 @@ case $os in
166
177
  os=-chorusos
167
178
  basic_machine=$1
168
179
  ;;
169
- -chorusrdb)
170
- os=-chorusrdb
180
+ -chorusrdb)
181
+ os=-chorusrdb
171
182
  basic_machine=$1
172
- ;;
183
+ ;;
173
184
  -hiux*)
174
185
  os=-hiuxwe2
175
186
  ;;
@@ -238,24 +249,32 @@ case $basic_machine in
238
249
  # Some are omitted here because they have special meanings below.
239
250
  1750a | 580 \
240
251
  | a29k \
252
+ | aarch64 | aarch64_be \
241
253
  | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
242
254
  | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
243
255
  | am33_2.0 \
244
256
  | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
257
+ | be32 | be64 \
245
258
  | bfin \
246
259
  | c4x | clipper \
247
260
  | d10v | d30v | dlx | dsp16xx \
248
- | fr30 | frv \
261
+ | epiphany \
262
+ | fido | fr30 | frv \
249
263
  | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
264
+ | hexagon \
250
265
  | i370 | i860 | i960 | ia64 \
251
266
  | ip2k | iq2000 \
267
+ | le32 | le64 \
268
+ | lm32 \
252
269
  | m32c | m32r | m32rle | m68000 | m68k | m88k \
253
- | maxq | mb | microblaze | mcore \
270
+ | maxq | mb | microblaze | mcore | mep | metag \
254
271
  | mips | mipsbe | mipseb | mipsel | mipsle \
255
272
  | mips16 \
256
273
  | mips64 | mips64el \
257
- | mips64vr | mips64vrel \
274
+ | mips64octeon | mips64octeonel \
258
275
  | mips64orion | mips64orionel \
276
+ | mips64r5900 | mips64r5900el \
277
+ | mips64vr | mips64vrel \
259
278
  | mips64vr4100 | mips64vr4100el \
260
279
  | mips64vr4300 | mips64vr4300el \
261
280
  | mips64vr5000 | mips64vr5000el \
@@ -268,29 +287,42 @@ case $basic_machine in
268
287
  | mipsisa64sr71k | mipsisa64sr71kel \
269
288
  | mipstx39 | mipstx39el \
270
289
  | mn10200 | mn10300 \
290
+ | moxie \
271
291
  | mt \
272
292
  | msp430 \
293
+ | nds32 | nds32le | nds32be \
273
294
  | nios | nios2 \
274
295
  | ns16k | ns32k \
296
+ | open8 \
275
297
  | or32 \
276
298
  | pdp10 | pdp11 | pj | pjl \
277
- | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
299
+ | powerpc | powerpc64 | powerpc64le | powerpcle \
278
300
  | pyramid \
301
+ | rl78 | rx \
279
302
  | score \
280
- | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
303
+ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
281
304
  | sh64 | sh64le \
282
305
  | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
283
306
  | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
284
- | spu | strongarm \
285
- | tahoe | thumb | tic4x | tic80 | tron \
286
- | v850 | v850e \
307
+ | spu \
308
+ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
309
+ | ubicom32 \
310
+ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
287
311
  | we32k \
288
- | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
289
- | z8k)
312
+ | x86 | xc16x | xstormy16 | xtensa \
313
+ | z8k | z80)
290
314
  basic_machine=$basic_machine-unknown
291
315
  ;;
292
- m6811 | m68hc11 | m6812 | m68hc12)
293
- # Motorola 68HC11/12.
316
+ c54x)
317
+ basic_machine=tic54x-unknown
318
+ ;;
319
+ c55x)
320
+ basic_machine=tic55x-unknown
321
+ ;;
322
+ c6x)
323
+ basic_machine=tic6x-unknown
324
+ ;;
325
+ m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
294
326
  basic_machine=$basic_machine-unknown
295
327
  os=-none
296
328
  ;;
@@ -300,6 +332,21 @@ case $basic_machine in
300
332
  basic_machine=mt-unknown
301
333
  ;;
302
334
 
335
+ strongarm | thumb | xscale)
336
+ basic_machine=arm-unknown
337
+ ;;
338
+ xgate)
339
+ basic_machine=$basic_machine-unknown
340
+ os=-none
341
+ ;;
342
+ xscaleeb)
343
+ basic_machine=armeb-unknown
344
+ ;;
345
+
346
+ xscaleel)
347
+ basic_machine=armel-unknown
348
+ ;;
349
+
303
350
  # We use `pc' rather than `unknown'
304
351
  # because (1) that's what they normally are, and
305
352
  # (2) the word "unknown" tends to confuse beginning users.
@@ -314,29 +361,36 @@ case $basic_machine in
314
361
  # Recognize the basic CPU types with company name.
315
362
  580-* \
316
363
  | a29k-* \
364
+ | aarch64-* | aarch64_be-* \
317
365
  | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
318
366
  | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
319
367
  | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
320
368
  | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
321
369
  | avr-* | avr32-* \
370
+ | be32-* | be64-* \
322
371
  | bfin-* | bs2000-* \
323
- | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
372
+ | c[123]* | c30-* | [cjt]90-* | c4x-* \
324
373
  | clipper-* | craynv-* | cydra-* \
325
374
  | d10v-* | d30v-* | dlx-* \
326
375
  | elxsi-* \
327
- | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
376
+ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
328
377
  | h8300-* | h8500-* \
329
378
  | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
379
+ | hexagon-* \
330
380
  | i*86-* | i860-* | i960-* | ia64-* \
331
381
  | ip2k-* | iq2000-* \
382
+ | le32-* | le64-* \
383
+ | lm32-* \
332
384
  | m32c-* | m32r-* | m32rle-* \
333
385
  | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
334
- | m88110-* | m88k-* | maxq-* | mcore-* \
386
+ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
335
387
  | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
336
388
  | mips16-* \
337
389
  | mips64-* | mips64el-* \
338
- | mips64vr-* | mips64vrel-* \
390
+ | mips64octeon-* | mips64octeonel-* \
339
391
  | mips64orion-* | mips64orionel-* \
392
+ | mips64r5900-* | mips64r5900el-* \
393
+ | mips64vr-* | mips64vrel-* \
340
394
  | mips64vr4100-* | mips64vr4100el-* \
341
395
  | mips64vr4300-* | mips64vr4300el-* \
342
396
  | mips64vr5000-* | mips64vr5000el-* \
@@ -351,27 +405,36 @@ case $basic_machine in
351
405
  | mmix-* \
352
406
  | mt-* \
353
407
  | msp430-* \
408
+ | nds32-* | nds32le-* | nds32be-* \
354
409
  | nios-* | nios2-* \
355
410
  | none-* | np1-* | ns16k-* | ns32k-* \
411
+ | open8-* \
356
412
  | orion-* \
357
413
  | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
358
- | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
414
+ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
359
415
  | pyramid-* \
360
- | romp-* | rs6000-* \
361
- | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
416
+ | rl78-* | romp-* | rs6000-* | rx-* \
417
+ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
362
418
  | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
363
419
  | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
364
420
  | sparclite-* \
365
- | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
366
- | tahoe-* | thumb-* \
421
+ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
422
+ | tahoe-* \
367
423
  | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
424
+ | tile*-* \
368
425
  | tron-* \
369
- | v850-* | v850e-* | vax-* \
426
+ | ubicom32-* \
427
+ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
428
+ | vax-* \
370
429
  | we32k-* \
371
- | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
372
- | xstormy16-* | xtensa-* \
430
+ | x86-* | x86_64-* | xc16x-* | xps100-* \
431
+ | xstormy16-* | xtensa*-* \
373
432
  | ymp-* \
374
- | z8k-*)
433
+ | z8k-* | z80-*)
434
+ ;;
435
+ # Recognize the basic CPU types without company name, with glob match.
436
+ xtensa*)
437
+ basic_machine=$basic_machine-unknown
375
438
  ;;
376
439
  # Recognize the various machine names and aliases which stand
377
440
  # for a CPU type and a company and sometimes even an OS.
@@ -389,7 +452,7 @@ case $basic_machine in
389
452
  basic_machine=a29k-amd
390
453
  os=-udi
391
454
  ;;
392
- abacus)
455
+ abacus)
393
456
  basic_machine=abacus-unknown
394
457
  ;;
395
458
  adobe68k)
@@ -435,6 +498,10 @@ case $basic_machine in
435
498
  basic_machine=m68k-apollo
436
499
  os=-bsd
437
500
  ;;
501
+ aros)
502
+ basic_machine=i386-pc
503
+ os=-aros
504
+ ;;
438
505
  aux)
439
506
  basic_machine=m68k-apple
440
507
  os=-aux
@@ -443,10 +510,35 @@ case $basic_machine in
443
510
  basic_machine=ns32k-sequent
444
511
  os=-dynix
445
512
  ;;
513
+ blackfin)
514
+ basic_machine=bfin-unknown
515
+ os=-linux
516
+ ;;
517
+ blackfin-*)
518
+ basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
519
+ os=-linux
520
+ ;;
521
+ bluegene*)
522
+ basic_machine=powerpc-ibm
523
+ os=-cnk
524
+ ;;
525
+ c54x-*)
526
+ basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
527
+ ;;
528
+ c55x-*)
529
+ basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
530
+ ;;
531
+ c6x-*)
532
+ basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
533
+ ;;
446
534
  c90)
447
535
  basic_machine=c90-cray
448
536
  os=-unicos
449
537
  ;;
538
+ cegcc)
539
+ basic_machine=arm-unknown
540
+ os=-cegcc
541
+ ;;
450
542
  convex-c1)
451
543
  basic_machine=c1-convex
452
544
  os=-bsd
@@ -475,8 +567,8 @@ case $basic_machine in
475
567
  basic_machine=craynv-cray
476
568
  os=-unicosmp
477
569
  ;;
478
- cr16c)
479
- basic_machine=cr16c-unknown
570
+ cr16 | cr16-*)
571
+ basic_machine=cr16-unknown
480
572
  os=-elf
481
573
  ;;
482
574
  crds | unos)
@@ -514,6 +606,10 @@ case $basic_machine in
514
606
  basic_machine=m88k-motorola
515
607
  os=-sysv3
516
608
  ;;
609
+ dicos)
610
+ basic_machine=i686-pc
611
+ os=-dicos
612
+ ;;
517
613
  djgpp)
518
614
  basic_machine=i586-pc
519
615
  os=-msdosdjgpp
@@ -629,7 +725,6 @@ case $basic_machine in
629
725
  i370-ibm* | ibm*)
630
726
  basic_machine=i370-ibm
631
727
  ;;
632
- # I'm not sure what "Sysv32" means. Should this be sysv3.2?
633
728
  i*86v32)
634
729
  basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
635
730
  os=-sysv32
@@ -668,6 +763,14 @@ case $basic_machine in
668
763
  basic_machine=m68k-isi
669
764
  os=-sysv
670
765
  ;;
766
+ m68knommu)
767
+ basic_machine=m68k-unknown
768
+ os=-linux
769
+ ;;
770
+ m68knommu-*)
771
+ basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
772
+ os=-linux
773
+ ;;
671
774
  m88k-omron*)
672
775
  basic_machine=m88k-omron
673
776
  ;;
@@ -679,10 +782,17 @@ case $basic_machine in
679
782
  basic_machine=ns32k-utek
680
783
  os=-sysv
681
784
  ;;
785
+ microblaze)
786
+ basic_machine=microblaze-xilinx
787
+ ;;
682
788
  mingw32)
683
789
  basic_machine=i386-pc
684
790
  os=-mingw32
685
791
  ;;
792
+ mingw32ce)
793
+ basic_machine=arm-unknown
794
+ os=-mingw32ce
795
+ ;;
686
796
  miniframe)
687
797
  basic_machine=m68000-convergent
688
798
  ;;
@@ -711,10 +821,18 @@ case $basic_machine in
711
821
  ms1-*)
712
822
  basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
713
823
  ;;
824
+ msys)
825
+ basic_machine=i386-pc
826
+ os=-msys
827
+ ;;
714
828
  mvs)
715
829
  basic_machine=i370-ibm
716
830
  os=-mvs
717
831
  ;;
832
+ nacl)
833
+ basic_machine=le32-unknown
834
+ os=-nacl
835
+ ;;
718
836
  ncr3000)
719
837
  basic_machine=i486-ncr
720
838
  os=-sysv4
@@ -779,6 +897,12 @@ case $basic_machine in
779
897
  np1)
780
898
  basic_machine=np1-gould
781
899
  ;;
900
+ neo-tandem)
901
+ basic_machine=neo-tandem
902
+ ;;
903
+ nse-tandem)
904
+ basic_machine=nse-tandem
905
+ ;;
782
906
  nsr-tandem)
783
907
  basic_machine=nsr-tandem
784
908
  ;;
@@ -809,6 +933,14 @@ case $basic_machine in
809
933
  basic_machine=i860-intel
810
934
  os=-osf
811
935
  ;;
936
+ parisc)
937
+ basic_machine=hppa-unknown
938
+ os=-linux
939
+ ;;
940
+ parisc-*)
941
+ basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
942
+ os=-linux
943
+ ;;
812
944
  pbd)
813
945
  basic_machine=sparc-tti
814
946
  ;;
@@ -853,9 +985,10 @@ case $basic_machine in
853
985
  ;;
854
986
  power) basic_machine=power-ibm
855
987
  ;;
856
- ppc) basic_machine=powerpc-unknown
988
+ ppc | ppcbe) basic_machine=powerpc-unknown
857
989
  ;;
858
- ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
990
+ ppc-* | ppcbe-*)
991
+ basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
859
992
  ;;
860
993
  ppcle | powerpclittle | ppc-le | powerpc-little)
861
994
  basic_machine=powerpcle-unknown
@@ -925,6 +1058,9 @@ case $basic_machine in
925
1058
  basic_machine=sh-hitachi
926
1059
  os=-hms
927
1060
  ;;
1061
+ sh5el)
1062
+ basic_machine=sh5le-unknown
1063
+ ;;
928
1064
  sh64)
929
1065
  basic_machine=sh64-unknown
930
1066
  ;;
@@ -946,6 +1082,9 @@ case $basic_machine in
946
1082
  basic_machine=i860-stratus
947
1083
  os=-sysv4
948
1084
  ;;
1085
+ strongarm-* | thumb-*)
1086
+ basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
1087
+ ;;
949
1088
  sun2)
950
1089
  basic_machine=m68000-sun
951
1090
  ;;
@@ -1002,17 +1141,9 @@ case $basic_machine in
1002
1141
  basic_machine=t90-cray
1003
1142
  os=-unicos
1004
1143
  ;;
1005
- tic54x | c54x*)
1006
- basic_machine=tic54x-unknown
1007
- os=-coff
1008
- ;;
1009
- tic55x | c55x*)
1010
- basic_machine=tic55x-unknown
1011
- os=-coff
1012
- ;;
1013
- tic6x | c6x*)
1014
- basic_machine=tic6x-unknown
1015
- os=-coff
1144
+ tile*)
1145
+ basic_machine=$basic_machine-unknown
1146
+ os=-linux-gnu
1016
1147
  ;;
1017
1148
  tx39)
1018
1149
  basic_machine=mipstx39-unknown
@@ -1081,6 +1212,9 @@ case $basic_machine in
1081
1212
  xps | xps100)
1082
1213
  basic_machine=xps100-honeywell
1083
1214
  ;;
1215
+ xscale-* | xscalee[bl]-*)
1216
+ basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
1217
+ ;;
1084
1218
  ymp)
1085
1219
  basic_machine=ymp-cray
1086
1220
  os=-unicos
@@ -1089,6 +1223,10 @@ case $basic_machine in
1089
1223
  basic_machine=z8k-unknown
1090
1224
  os=-sim
1091
1225
  ;;
1226
+ z80-*-coff)
1227
+ basic_machine=z80-unknown
1228
+ os=-sim
1229
+ ;;
1092
1230
  none)
1093
1231
  basic_machine=none-none
1094
1232
  os=-none
@@ -1127,7 +1265,7 @@ case $basic_machine in
1127
1265
  we32k)
1128
1266
  basic_machine=we32k-att
1129
1267
  ;;
1130
- sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
1268
+ sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
1131
1269
  basic_machine=sh-unknown
1132
1270
  ;;
1133
1271
  sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
@@ -1174,9 +1312,12 @@ esac
1174
1312
  if [ x"$os" != x"" ]
1175
1313
  then
1176
1314
  case $os in
1177
- # First match some system type aliases
1178
- # that might get confused with valid system types.
1315
+ # First match some system type aliases
1316
+ # that might get confused with valid system types.
1179
1317
  # -solaris* is a basic system type, with this one exception.
1318
+ -auroraux)
1319
+ os=-auroraux
1320
+ ;;
1180
1321
  -solaris1 | -solaris1.*)
1181
1322
  os=`echo $os | sed -e 's|solaris1|sunos4|'`
1182
1323
  ;;
@@ -1197,10 +1338,11 @@ case $os in
1197
1338
  # Each alternative MUST END IN A *, to match a version number.
1198
1339
  # -sysv* is not here because it comes later, after sysvr4.
1199
1340
  -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1200
- | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
1201
- | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
1341
+ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
1342
+ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
1343
+ | -sym* | -kopensolaris* \
1202
1344
  | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1203
- | -aos* \
1345
+ | -aos* | -aros* \
1204
1346
  | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1205
1347
  | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1206
1348
  | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
@@ -1209,9 +1351,10 @@ case $os in
1209
1351
  | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1210
1352
  | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1211
1353
  | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1212
- | -chorusos* | -chorusrdb* \
1213
- | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1214
- | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1354
+ | -chorusos* | -chorusrdb* | -cegcc* \
1355
+ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1356
+ | -mingw32* | -linux-gnu* | -linux-android* \
1357
+ | -linux-newlib* | -linux-uclibc* \
1215
1358
  | -uxpv* | -beos* | -mpeix* | -udk* \
1216
1359
  | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1217
1360
  | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
@@ -1219,7 +1362,7 @@ case $os in
1219
1362
  | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1220
1363
  | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1221
1364
  | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1222
- | -skyos* | -haiku* | -rdos* | -toppers*)
1365
+ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
1223
1366
  # Remember, each alternative MUST END IN *, to match a version number.
1224
1367
  ;;
1225
1368
  -qnx*)
@@ -1258,7 +1401,7 @@ case $os in
1258
1401
  -opened*)
1259
1402
  os=-openedition
1260
1403
  ;;
1261
- -os400*)
1404
+ -os400*)
1262
1405
  os=-os400
1263
1406
  ;;
1264
1407
  -wince*)
@@ -1307,7 +1450,7 @@ case $os in
1307
1450
  -sinix*)
1308
1451
  os=-sysv4
1309
1452
  ;;
1310
- -tpf*)
1453
+ -tpf*)
1311
1454
  os=-tpf
1312
1455
  ;;
1313
1456
  -triton*)
@@ -1349,6 +1492,11 @@ case $os in
1349
1492
  -zvmoe)
1350
1493
  os=-zvmoe
1351
1494
  ;;
1495
+ -dicos*)
1496
+ os=-dicos
1497
+ ;;
1498
+ -nacl*)
1499
+ ;;
1352
1500
  -none)
1353
1501
  ;;
1354
1502
  *)
@@ -1371,10 +1519,10 @@ else
1371
1519
  # system, and we'll never get to this point.
1372
1520
 
1373
1521
  case $basic_machine in
1374
- score-*)
1522
+ score-*)
1375
1523
  os=-elf
1376
1524
  ;;
1377
- spu-*)
1525
+ spu-*)
1378
1526
  os=-elf
1379
1527
  ;;
1380
1528
  *-acorn)
@@ -1386,8 +1534,17 @@ case $basic_machine in
1386
1534
  arm*-semi)
1387
1535
  os=-aout
1388
1536
  ;;
1389
- c4x-* | tic4x-*)
1390
- os=-coff
1537
+ c4x-* | tic4x-*)
1538
+ os=-coff
1539
+ ;;
1540
+ tic54x-*)
1541
+ os=-coff
1542
+ ;;
1543
+ tic55x-*)
1544
+ os=-coff
1545
+ ;;
1546
+ tic6x-*)
1547
+ os=-coff
1391
1548
  ;;
1392
1549
  # This must come before the *-dec entry.
1393
1550
  pdp10-*)
@@ -1407,13 +1564,13 @@ case $basic_machine in
1407
1564
  ;;
1408
1565
  m68000-sun)
1409
1566
  os=-sunos3
1410
- # This also exists in the configure program, but was not the
1411
- # default.
1412
- # os=-sunos4
1413
1567
  ;;
1414
1568
  m68*-cisco)
1415
1569
  os=-aout
1416
1570
  ;;
1571
+ mep-*)
1572
+ os=-elf
1573
+ ;;
1417
1574
  mips*-cisco)
1418
1575
  os=-elf
1419
1576
  ;;
@@ -1438,7 +1595,7 @@ case $basic_machine in
1438
1595
  *-ibm)
1439
1596
  os=-aix
1440
1597
  ;;
1441
- *-knuth)
1598
+ *-knuth)
1442
1599
  os=-mmixware
1443
1600
  ;;
1444
1601
  *-wec)
@@ -1543,7 +1700,7 @@ case $basic_machine in
1543
1700
  -sunos*)
1544
1701
  vendor=sun
1545
1702
  ;;
1546
- -aix*)
1703
+ -cnk*|-aix*)
1547
1704
  vendor=ibm
1548
1705
  ;;
1549
1706
  -beos*)