nutcracker 0.2.4.5 → 0.2.4.6

Sign up to get free protection for your applications and to get access to all the features.
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,81 +0,0 @@
1
- /* config.h. Generated from config.h.in by configure. */
2
- /* config.h.in. Generated from configure.ac by autoheader. */
3
-
4
- /* Define to 1 if you have the <dlfcn.h> header file. */
5
- #define HAVE_DLFCN_H 1
6
-
7
- /* Define to 1 if you have the <inttypes.h> header file. */
8
- #define HAVE_INTTYPES_H 1
9
-
10
- /* Define to 1 if you have the <memory.h> header file. */
11
- #define HAVE_MEMORY_H 1
12
-
13
- /* Define to 1 if you have the <stdint.h> header file. */
14
- #define HAVE_STDINT_H 1
15
-
16
- /* Define to 1 if you have the <stdlib.h> header file. */
17
- #define HAVE_STDLIB_H 1
18
-
19
- /* Define to 1 if you have the <strings.h> header file. */
20
- #define HAVE_STRINGS_H 1
21
-
22
- /* Define to 1 if you have the <string.h> header file. */
23
- #define HAVE_STRING_H 1
24
-
25
- /* Define to 1 if you have the <sys/stat.h> header file. */
26
- #define HAVE_SYS_STAT_H 1
27
-
28
- /* Define to 1 if you have the <sys/types.h> header file. */
29
- #define HAVE_SYS_TYPES_H 1
30
-
31
- /* Define to 1 if you have the <unistd.h> header file. */
32
- #define HAVE_UNISTD_H 1
33
-
34
- /* Define to the sub-directory in which libtool stores uninstalled libraries.
35
- */
36
- #define LT_OBJDIR ".libs/"
37
-
38
- /* Name of package */
39
- #define PACKAGE "yaml"
40
-
41
- /* Define to the address where bug reports for this package should be sent. */
42
- #define PACKAGE_BUGREPORT "http://pyyaml.org/newticket?component=libyaml"
43
-
44
- /* Define to the full name of this package. */
45
- #define PACKAGE_NAME "yaml"
46
-
47
- /* Define to the full name and version of this package. */
48
- #define PACKAGE_STRING "yaml 0.1.4"
49
-
50
- /* Define to the one symbol short name of this package. */
51
- #define PACKAGE_TARNAME "yaml"
52
-
53
- /* Define to the home page for this package. */
54
- #define PACKAGE_URL ""
55
-
56
- /* Define to the version of this package. */
57
- #define PACKAGE_VERSION "0.1.4"
58
-
59
- /* Define to 1 if you have the ANSI C header files. */
60
- #define STDC_HEADERS 1
61
-
62
- /* Version number of package */
63
- #define VERSION "0.1.4"
64
-
65
- /* Define the major version number. */
66
- #define YAML_VERSION_MAJOR 0
67
-
68
- /* Define the minor version number. */
69
- #define YAML_VERSION_MINOR 1
70
-
71
- /* Define the patch version number. */
72
- #define YAML_VERSION_PATCH 4
73
-
74
- /* Define the version string. */
75
- #define YAML_VERSION_STRING "0.1.4"
76
-
77
- /* Define to empty if `const' does not conform to ANSI C. */
78
- /* #undef const */
79
-
80
- /* Define to `unsigned int' if <sys/types.h> does not define. */
81
- /* #undef size_t */
@@ -1,80 +0,0 @@
1
- /* config.h.in. Generated from configure.ac by autoheader. */
2
-
3
- /* Define to 1 if you have the <dlfcn.h> header file. */
4
- #undef HAVE_DLFCN_H
5
-
6
- /* Define to 1 if you have the <inttypes.h> header file. */
7
- #undef HAVE_INTTYPES_H
8
-
9
- /* Define to 1 if you have the <memory.h> header file. */
10
- #undef HAVE_MEMORY_H
11
-
12
- /* Define to 1 if you have the <stdint.h> header file. */
13
- #undef HAVE_STDINT_H
14
-
15
- /* Define to 1 if you have the <stdlib.h> header file. */
16
- #undef HAVE_STDLIB_H
17
-
18
- /* Define to 1 if you have the <strings.h> header file. */
19
- #undef HAVE_STRINGS_H
20
-
21
- /* Define to 1 if you have the <string.h> header file. */
22
- #undef HAVE_STRING_H
23
-
24
- /* Define to 1 if you have the <sys/stat.h> header file. */
25
- #undef HAVE_SYS_STAT_H
26
-
27
- /* Define to 1 if you have the <sys/types.h> header file. */
28
- #undef HAVE_SYS_TYPES_H
29
-
30
- /* Define to 1 if you have the <unistd.h> header file. */
31
- #undef HAVE_UNISTD_H
32
-
33
- /* Define to the sub-directory in which libtool stores uninstalled libraries.
34
- */
35
- #undef LT_OBJDIR
36
-
37
- /* Name of package */
38
- #undef PACKAGE
39
-
40
- /* Define to the address where bug reports for this package should be sent. */
41
- #undef PACKAGE_BUGREPORT
42
-
43
- /* Define to the full name of this package. */
44
- #undef PACKAGE_NAME
45
-
46
- /* Define to the full name and version of this package. */
47
- #undef PACKAGE_STRING
48
-
49
- /* Define to the one symbol short name of this package. */
50
- #undef PACKAGE_TARNAME
51
-
52
- /* Define to the home page for this package. */
53
- #undef PACKAGE_URL
54
-
55
- /* Define to the version of this package. */
56
- #undef PACKAGE_VERSION
57
-
58
- /* Define to 1 if you have the ANSI C header files. */
59
- #undef STDC_HEADERS
60
-
61
- /* Version number of package */
62
- #undef VERSION
63
-
64
- /* Define the major version number. */
65
- #undef YAML_VERSION_MAJOR
66
-
67
- /* Define the minor version number. */
68
- #undef YAML_VERSION_MINOR
69
-
70
- /* Define the patch version number. */
71
- #undef YAML_VERSION_PATCH
72
-
73
- /* Define the version string. */
74
- #undef YAML_VERSION_STRING
75
-
76
- /* Define to empty if `const' does not conform to ANSI C. */
77
- #undef const
78
-
79
- /* Define to `unsigned int' if <sys/types.h> does not define. */
80
- #undef size_t
@@ -1,688 +0,0 @@
1
- This file contains any messages produced by compilers while
2
- running configure, to aid debugging if configure makes a mistake.
3
-
4
- It was created by yaml configure 0.1.4, which was
5
- generated by GNU Autoconf 2.64. Invocation command line was
6
-
7
- $ ./configure --disable-option-checking --prefix=/usr/local --cache-file=/dev/null --srcdir=.
8
-
9
- ## --------- ##
10
- ## Platform. ##
11
- ## --------- ##
12
-
13
- hostname = Eran-Levis-MacBook-Pro.local
14
- uname -m = x86_64
15
- uname -r = 11.4.2
16
- uname -s = Darwin
17
- uname -v = Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
18
-
19
- /usr/bin/uname -p = i386
20
- /bin/uname -X = unknown
21
-
22
- /bin/arch = unknown
23
- /usr/bin/arch -k = unknown
24
- /usr/convex/getsysinfo = unknown
25
- /usr/bin/hostinfo = Mach kernel version:
26
- Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
27
- Kernel configured for up to 2 processors.
28
- 2 processors are physically available.
29
- 2 processors are logically available.
30
- Processor type: i486 (Intel 80486)
31
- Processors active: 0 1
32
- Primary memory available: 4.00 gigabytes
33
- Default processor set: 121 tasks, 637 threads, 2 processors
34
- Load average: 3.96, Mach factor: 0.58
35
- /bin/machine = unknown
36
- /usr/bin/oslevel = unknown
37
- /bin/universe = unknown
38
-
39
- PATH: /Users/eran/.rvm/gems/ruby-1.9.3-p392@nutcracker/bin
40
- PATH: /Users/eran/.rvm/gems/ruby-1.9.3-p392@global/bin
41
- PATH: /Users/eran/.rvm/rubies/ruby-1.9.3-p392/bin
42
- PATH: /Users/eran/.rvm/bin
43
- PATH: /usr/local/bin
44
- PATH: /usr/local/mysql/bin
45
- PATH: /usr/bin
46
- PATH: /bin
47
- PATH: /usr/sbin
48
- PATH: /sbin
49
- PATH: /usr/X11/bin
50
- PATH: /usr/local/smlnj-110.75/bin
51
-
52
-
53
- ## ----------- ##
54
- ## Core tests. ##
55
- ## ----------- ##
56
-
57
- configure:2402: checking for a BSD-compatible install
58
- configure:2470: result: /usr/bin/install -c
59
- configure:2481: checking whether build environment is sane
60
- configure:2531: result: yes
61
- configure:2672: checking for a thread-safe mkdir -p
62
- configure:2711: result: config/install-sh -c -d
63
- configure:2724: checking for gawk
64
- configure:2754: result: no
65
- configure:2724: checking for mawk
66
- configure:2754: result: no
67
- configure:2724: checking for nawk
68
- configure:2754: result: no
69
- configure:2724: checking for awk
70
- configure:2740: found /usr/bin/awk
71
- configure:2751: result: awk
72
- configure:2762: checking whether make sets $(MAKE)
73
- configure:2784: result: yes
74
- configure:2940: checking for gcc
75
- configure:2956: found /usr/bin/gcc
76
- configure:2967: result: gcc
77
- configure:3196: checking for C compiler version
78
- configure:3205: gcc --version >&5
79
- i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
80
- Copyright (C) 2007 Free Software Foundation, Inc.
81
- This is free software; see the source for copying conditions. There is NO
82
- warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
83
-
84
- configure:3216: $? = 0
85
- configure:3205: gcc -v >&5
86
- Using built-in specs.
87
- Target: i686-apple-darwin11
88
- Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
89
- Thread model: posix
90
- gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
91
- configure:3216: $? = 0
92
- configure:3205: gcc -V >&5
93
- llvm-gcc-4.2: argument to `-V' is missing
94
- configure:3216: $? = 1
95
- configure:3205: gcc -qversion >&5
96
- i686-apple-darwin11-llvm-gcc-4.2: no input files
97
- configure:3216: $? = 1
98
- configure:3238: checking for C compiler default output file name
99
- configure:3260: gcc conftest.c >&5
100
- configure:3264: $? = 0
101
- configure:3301: result: a.out
102
- configure:3317: checking whether the C compiler works
103
- configure:3326: ./a.out
104
- configure:3330: $? = 0
105
- configure:3345: result: yes
106
- configure:3352: checking whether we are cross compiling
107
- configure:3354: result: no
108
- configure:3357: checking for suffix of executables
109
- configure:3364: gcc -o conftest conftest.c >&5
110
- configure:3368: $? = 0
111
- configure:3390: result:
112
- configure:3396: checking for suffix of object files
113
- configure:3418: gcc -c conftest.c >&5
114
- configure:3422: $? = 0
115
- configure:3443: result: o
116
- configure:3447: checking whether we are using the GNU C compiler
117
- configure:3466: gcc -c conftest.c >&5
118
- configure:3466: $? = 0
119
- configure:3475: result: yes
120
- configure:3484: checking whether gcc accepts -g
121
- configure:3504: gcc -c -g conftest.c >&5
122
- configure:3504: $? = 0
123
- configure:3545: result: yes
124
- configure:3562: checking for gcc option to accept ISO C89
125
- configure:3626: gcc -c -g -O2 conftest.c >&5
126
- configure:3626: $? = 0
127
- configure:3639: result: none needed
128
- configure:3670: checking for style of include used by make
129
- configure:3698: result: GNU
130
- configure:3723: checking dependency style of gcc
131
- configure:3833: result: gcc3
132
- configure:3853: checking how to run the C preprocessor
133
- configure:3884: gcc -E conftest.c
134
- configure:3884: $? = 0
135
- configure:3898: gcc -E conftest.c
136
- conftest.c:15:28: error: ac_nonexistent.h: No such file or directory
137
- configure:3898: $? = 1
138
- configure: failed program was:
139
- | /* confdefs.h */
140
- | #define PACKAGE_NAME "yaml"
141
- | #define PACKAGE_TARNAME "yaml"
142
- | #define PACKAGE_VERSION "0.1.4"
143
- | #define PACKAGE_STRING "yaml 0.1.4"
144
- | #define PACKAGE_BUGREPORT "http://pyyaml.org/newticket?component=libyaml"
145
- | #define PACKAGE_URL ""
146
- | #define PACKAGE "yaml"
147
- | #define VERSION "0.1.4"
148
- | #define YAML_VERSION_MAJOR 0
149
- | #define YAML_VERSION_MINOR 1
150
- | #define YAML_VERSION_PATCH 4
151
- | #define YAML_VERSION_STRING "0.1.4"
152
- | /* end confdefs.h. */
153
- | #include <ac_nonexistent.h>
154
- configure:3923: result: gcc -E
155
- configure:3943: gcc -E conftest.c
156
- configure:3943: $? = 0
157
- configure:3957: gcc -E conftest.c
158
- conftest.c:15:28: error: ac_nonexistent.h: No such file or directory
159
- configure:3957: $? = 1
160
- configure: failed program was:
161
- | /* confdefs.h */
162
- | #define PACKAGE_NAME "yaml"
163
- | #define PACKAGE_TARNAME "yaml"
164
- | #define PACKAGE_VERSION "0.1.4"
165
- | #define PACKAGE_STRING "yaml 0.1.4"
166
- | #define PACKAGE_BUGREPORT "http://pyyaml.org/newticket?component=libyaml"
167
- | #define PACKAGE_URL ""
168
- | #define PACKAGE "yaml"
169
- | #define VERSION "0.1.4"
170
- | #define YAML_VERSION_MAJOR 0
171
- | #define YAML_VERSION_MINOR 1
172
- | #define YAML_VERSION_PATCH 4
173
- | #define YAML_VERSION_STRING "0.1.4"
174
- | /* end confdefs.h. */
175
- | #include <ac_nonexistent.h>
176
- configure:3986: checking whether ln -s works
177
- configure:3990: result: yes
178
- configure:3997: checking whether make sets $(MAKE)
179
- configure:4019: result: yes
180
- configure:4057: checking build system type
181
- configure:4071: result: i386-apple-darwin11.4.2
182
- configure:4091: checking host system type
183
- configure:4104: result: i386-apple-darwin11.4.2
184
- configure:4124: checking for a sed that does not truncate output
185
- configure:4188: result: /usr/bin/sed
186
- configure:4206: checking for grep that handles long lines and -e
187
- configure:4264: result: /usr/bin/grep
188
- configure:4269: checking for egrep
189
- configure:4331: result: /usr/bin/grep -E
190
- configure:4336: checking for fgrep
191
- configure:4398: result: /usr/bin/grep -F
192
- configure:4433: checking for ld used by gcc
193
- configure:4500: result: /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
194
- configure:4507: checking if the linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
195
- configure:4522: result: no
196
- configure:4534: checking for BSD- or MS-compatible name lister (nm)
197
- configure:4583: result: /usr/bin/nm
198
- configure:4701: checking the name lister (/usr/bin/nm) interface
199
- configure:4708: gcc -c -g -O2 conftest.c >&5
200
- configure:4711: /usr/bin/nm "conftest.o"
201
- configure:4714: output
202
- 00000000000001dc S _some_variable
203
- configure:4721: result: BSD nm
204
- configure:4725: checking the maximum length of command line arguments
205
- configure:4845: result: 196608
206
- configure:4862: checking whether the shell understands some XSI constructs
207
- configure:4872: result: yes
208
- configure:4876: checking whether the shell understands "+="
209
- configure:4882: result: yes
210
- configure:4917: checking for /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld option to reload object files
211
- configure:4924: result: -r
212
- configure:4993: checking for objdump
213
- configure:5023: result: no
214
- configure:5052: checking how to recognize dependent libraries
215
- configure:5248: result: pass_all
216
- configure:5308: checking for ar
217
- configure:5324: found /usr/bin/ar
218
- configure:5335: result: ar
219
- configure:5413: checking for strip
220
- configure:5429: found /usr/bin/strip
221
- configure:5440: result: strip
222
- configure:5512: checking for ranlib
223
- configure:5528: found /usr/bin/ranlib
224
- configure:5539: result: ranlib
225
- configure:5629: checking command to parse /usr/bin/nm output from gcc object
226
- configure:5747: gcc -c -g -O2 conftest.c >&5
227
- configure:5750: $? = 0
228
- configure:5754: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
229
- configure:5757: $? = 0
230
- cannot find nm_test_var in conftest.nm
231
- configure:5747: gcc -c -g -O2 conftest.c >&5
232
- configure:5750: $? = 0
233
- configure:5754: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm
234
- configure:5757: $? = 0
235
- configure:5811: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
236
- configure:5814: $? = 0
237
- configure:5852: result: ok
238
- configure:6117: checking for dsymutil
239
- configure:6133: found /usr/bin/dsymutil
240
- configure:6144: result: dsymutil
241
- configure:6209: checking for nmedit
242
- configure:6225: found /usr/bin/nmedit
243
- configure:6236: result: nmedit
244
- configure:6301: checking for lipo
245
- configure:6317: found /usr/bin/lipo
246
- configure:6328: result: lipo
247
- configure:6393: checking for otool
248
- configure:6409: found /usr/bin/otool
249
- configure:6420: result: otool
250
- configure:6485: checking for otool64
251
- configure:6515: result: no
252
- configure:6560: checking for -single_module linker flag
253
- gcc -g -O2 -o libconftest.dylib -dynamiclib -Wl,-single_module conftest.c
254
- configure:6587: result: yes
255
- configure:6589: checking for -exported_symbols_list linker flag
256
- configure:6609: gcc -o conftest -g -O2 -Wl,-exported_symbols_list,conftest.sym conftest.c >&5
257
- configure:6609: $? = 0
258
- configure:6619: result: yes
259
- configure:6657: checking for ANSI C header files
260
- configure:6677: gcc -c -g -O2 conftest.c >&5
261
- configure:6677: $? = 0
262
- configure:6750: gcc -o conftest -g -O2 conftest.c >&5
263
- configure:6750: $? = 0
264
- configure:6750: ./conftest
265
- configure:6750: $? = 0
266
- configure:6761: result: yes
267
- configure:6774: checking for sys/types.h
268
- configure:6774: gcc -c -g -O2 conftest.c >&5
269
- configure:6774: $? = 0
270
- configure:6774: result: yes
271
- configure:6774: checking for sys/stat.h
272
- configure:6774: gcc -c -g -O2 conftest.c >&5
273
- configure:6774: $? = 0
274
- configure:6774: result: yes
275
- configure:6774: checking for stdlib.h
276
- configure:6774: gcc -c -g -O2 conftest.c >&5
277
- configure:6774: $? = 0
278
- configure:6774: result: yes
279
- configure:6774: checking for string.h
280
- configure:6774: gcc -c -g -O2 conftest.c >&5
281
- configure:6774: $? = 0
282
- configure:6774: result: yes
283
- configure:6774: checking for memory.h
284
- configure:6774: gcc -c -g -O2 conftest.c >&5
285
- configure:6774: $? = 0
286
- configure:6774: result: yes
287
- configure:6774: checking for strings.h
288
- configure:6774: gcc -c -g -O2 conftest.c >&5
289
- configure:6774: $? = 0
290
- configure:6774: result: yes
291
- configure:6774: checking for inttypes.h
292
- configure:6774: gcc -c -g -O2 conftest.c >&5
293
- configure:6774: $? = 0
294
- configure:6774: result: yes
295
- configure:6774: checking for stdint.h
296
- configure:6774: gcc -c -g -O2 conftest.c >&5
297
- configure:6774: $? = 0
298
- configure:6774: result: yes
299
- configure:6774: checking for unistd.h
300
- configure:6774: gcc -c -g -O2 conftest.c >&5
301
- configure:6774: $? = 0
302
- configure:6774: result: yes
303
- configure:6789: checking for dlfcn.h
304
- configure:6789: gcc -c -g -O2 conftest.c >&5
305
- configure:6789: $? = 0
306
- configure:6789: result: yes
307
- configure:6973: checking for objdir
308
- configure:6988: result: .libs
309
- configure:7284: checking if gcc supports -fno-rtti -fno-exceptions
310
- configure:7302: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
311
- cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
312
- configure:7306: $? = 0
313
- configure:7319: result: no
314
- configure:7339: checking for gcc option to produce PIC
315
- configure:7611: result: -fno-common -DPIC
316
- configure:7623: checking if gcc PIC flag -fno-common -DPIC works
317
- configure:7641: gcc -c -g -O2 -fno-common -DPIC -DPIC conftest.c >&5
318
- configure:7645: $? = 0
319
- configure:7658: result: yes
320
- configure:7682: checking if gcc static flag -static works
321
- configure:7710: result: no
322
- configure:7725: checking if gcc supports -c -o file.o
323
- configure:7746: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
324
- configure:7750: $? = 0
325
- configure:7772: result: yes
326
- configure:7780: checking if gcc supports -c -o file.o
327
- configure:7827: result: yes
328
- configure:7860: checking whether the gcc linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
329
- configure:8846: result: yes
330
- configure:9085: checking dynamic linker characteristics
331
- configure:9736: result: darwin11.4.2 dyld
332
- configure:9838: checking how to hardcode library paths into programs
333
- configure:9863: result: immediate
334
- configure:10383: checking whether stripping libraries is possible
335
- configure:10397: result: yes
336
- configure:10423: checking if libtool supports shared libraries
337
- configure:10425: result: yes
338
- configure:10428: checking whether to build shared libraries
339
- configure:10449: result: yes
340
- configure:10452: checking whether to build static libraries
341
- configure:10456: result: yes
342
- configure:10494: checking for doxygen
343
- configure:10522: result: false
344
- configure:10540: checking for ANSI C header files
345
- configure:10644: result: yes
346
- configure:10654: checking for stdlib.h
347
- configure:10654: result: yes
348
- configure:10666: checking for an ANSI C-conforming const
349
- configure:10731: gcc -c -g -O2 conftest.c >&5
350
- configure:10731: $? = 0
351
- configure:10738: result: yes
352
- configure:10746: checking for size_t
353
- configure:10746: gcc -c -g -O2 conftest.c >&5
354
- configure:10746: $? = 0
355
- configure:10746: gcc -c -g -O2 conftest.c >&5
356
- conftest.c: In function 'main':
357
- conftest.c:65: error: expected expression before ')' token
358
- configure:10746: $? = 1
359
- configure: failed program was:
360
- | /* confdefs.h */
361
- | #define PACKAGE_NAME "yaml"
362
- | #define PACKAGE_TARNAME "yaml"
363
- | #define PACKAGE_VERSION "0.1.4"
364
- | #define PACKAGE_STRING "yaml 0.1.4"
365
- | #define PACKAGE_BUGREPORT "http://pyyaml.org/newticket?component=libyaml"
366
- | #define PACKAGE_URL ""
367
- | #define PACKAGE "yaml"
368
- | #define VERSION "0.1.4"
369
- | #define YAML_VERSION_MAJOR 0
370
- | #define YAML_VERSION_MINOR 1
371
- | #define YAML_VERSION_PATCH 4
372
- | #define YAML_VERSION_STRING "0.1.4"
373
- | #define STDC_HEADERS 1
374
- | #define HAVE_SYS_TYPES_H 1
375
- | #define HAVE_SYS_STAT_H 1
376
- | #define HAVE_STDLIB_H 1
377
- | #define HAVE_STRING_H 1
378
- | #define HAVE_MEMORY_H 1
379
- | #define HAVE_STRINGS_H 1
380
- | #define HAVE_INTTYPES_H 1
381
- | #define HAVE_STDINT_H 1
382
- | #define HAVE_UNISTD_H 1
383
- | #define HAVE_DLFCN_H 1
384
- | #define LT_OBJDIR ".libs/"
385
- | #define STDC_HEADERS 1
386
- | #define HAVE_STDLIB_H 1
387
- | /* end confdefs.h. */
388
- | #include <stdio.h>
389
- | #ifdef HAVE_SYS_TYPES_H
390
- | # include <sys/types.h>
391
- | #endif
392
- | #ifdef HAVE_SYS_STAT_H
393
- | # include <sys/stat.h>
394
- | #endif
395
- | #ifdef STDC_HEADERS
396
- | # include <stdlib.h>
397
- | # include <stddef.h>
398
- | #else
399
- | # ifdef HAVE_STDLIB_H
400
- | # include <stdlib.h>
401
- | # endif
402
- | #endif
403
- | #ifdef HAVE_STRING_H
404
- | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
405
- | # include <memory.h>
406
- | # endif
407
- | # include <string.h>
408
- | #endif
409
- | #ifdef HAVE_STRINGS_H
410
- | # include <strings.h>
411
- | #endif
412
- | #ifdef HAVE_INTTYPES_H
413
- | # include <inttypes.h>
414
- | #endif
415
- | #ifdef HAVE_STDINT_H
416
- | # include <stdint.h>
417
- | #endif
418
- | #ifdef HAVE_UNISTD_H
419
- | # include <unistd.h>
420
- | #endif
421
- | int
422
- | main ()
423
- | {
424
- | if (sizeof ((size_t)))
425
- | return 0;
426
- | ;
427
- | return 0;
428
- | }
429
- configure:10746: result: yes
430
- configure:10885: creating ./config.status
431
-
432
- ## ---------------------- ##
433
- ## Running config.status. ##
434
- ## ---------------------- ##
435
-
436
- This file was extended by yaml config.status 0.1.4, which was
437
- generated by GNU Autoconf 2.64. Invocation command line was
438
-
439
- CONFIG_FILES =
440
- CONFIG_HEADERS =
441
- CONFIG_LINKS =
442
- CONFIG_COMMANDS =
443
- $ ./config.status
444
-
445
- on Eran-Levis-MacBook-Pro.local
446
-
447
- config.status:1070: creating src/Makefile
448
- config.status:1070: creating Makefile
449
- config.status:1070: creating tests/Makefile
450
- config.status:1070: creating config.h
451
- config.status:1242: config.h is unchanged
452
- config.status:1290: executing depfiles commands
453
- config.status:1290: executing libtool commands
454
-
455
- ## ---------------- ##
456
- ## Cache variables. ##
457
- ## ---------------- ##
458
-
459
- ac_cv_build=i386-apple-darwin11.4.2
460
- ac_cv_c_compiler_gnu=yes
461
- ac_cv_c_const=yes
462
- ac_cv_env_CC_set=
463
- ac_cv_env_CC_value=
464
- ac_cv_env_CFLAGS_set=
465
- ac_cv_env_CFLAGS_value=
466
- ac_cv_env_CPPFLAGS_set=
467
- ac_cv_env_CPPFLAGS_value=
468
- ac_cv_env_CPP_set=
469
- ac_cv_env_CPP_value=
470
- ac_cv_env_LDFLAGS_set=
471
- ac_cv_env_LDFLAGS_value=
472
- ac_cv_env_LIBS_set=
473
- ac_cv_env_LIBS_value=
474
- ac_cv_env_build_alias_set=
475
- ac_cv_env_build_alias_value=
476
- ac_cv_env_host_alias_set=
477
- ac_cv_env_host_alias_value=
478
- ac_cv_env_target_alias_set=
479
- ac_cv_env_target_alias_value=
480
- ac_cv_header_dlfcn_h=yes
481
- ac_cv_header_inttypes_h=yes
482
- ac_cv_header_memory_h=yes
483
- ac_cv_header_stdc=yes
484
- ac_cv_header_stdint_h=yes
485
- ac_cv_header_stdlib_h=yes
486
- ac_cv_header_string_h=yes
487
- ac_cv_header_strings_h=yes
488
- ac_cv_header_sys_stat_h=yes
489
- ac_cv_header_sys_types_h=yes
490
- ac_cv_header_unistd_h=yes
491
- ac_cv_host=i386-apple-darwin11.4.2
492
- ac_cv_objext=o
493
- ac_cv_path_EGREP='/usr/bin/grep -E'
494
- ac_cv_path_FGREP='/usr/bin/grep -F'
495
- ac_cv_path_GREP=/usr/bin/grep
496
- ac_cv_path_SED=/usr/bin/sed
497
- ac_cv_path_install='/usr/bin/install -c'
498
- ac_cv_prog_AWK=awk
499
- ac_cv_prog_CPP='gcc -E'
500
- ac_cv_prog_DOXYGEN=false
501
- ac_cv_prog_ac_ct_AR=ar
502
- ac_cv_prog_ac_ct_CC=gcc
503
- ac_cv_prog_ac_ct_DSYMUTIL=dsymutil
504
- ac_cv_prog_ac_ct_LIPO=lipo
505
- ac_cv_prog_ac_ct_NMEDIT=nmedit
506
- ac_cv_prog_ac_ct_OTOOL=otool
507
- ac_cv_prog_ac_ct_RANLIB=ranlib
508
- ac_cv_prog_ac_ct_STRIP=strip
509
- ac_cv_prog_cc_c89=
510
- ac_cv_prog_cc_g=yes
511
- ac_cv_prog_make_make_set=yes
512
- ac_cv_type_size_t=yes
513
- am_cv_CC_dependencies_compiler_type=gcc3
514
- lt_cv_apple_cc_single_mod=yes
515
- lt_cv_deplibs_check_method=pass_all
516
- lt_cv_file_magic_cmd='$MAGIC_CMD'
517
- lt_cv_file_magic_test_file=
518
- lt_cv_ld_exported_symbols_list=yes
519
- lt_cv_ld_reload_flag=-r
520
- lt_cv_nm_interface='BSD nm'
521
- lt_cv_objdir=.libs
522
- lt_cv_path_LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
523
- lt_cv_path_NM=/usr/bin/nm
524
- lt_cv_prog_compiler_c_o=yes
525
- lt_cv_prog_compiler_pic_works=yes
526
- lt_cv_prog_compiler_rtti_exceptions=no
527
- lt_cv_prog_compiler_static_works=no
528
- lt_cv_prog_gnu_ld=no
529
- lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'\'''
530
- lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
531
- lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
532
- lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\'''
533
- lt_cv_sys_max_cmd_len=196608
534
-
535
- ## ----------------- ##
536
- ## Output variables. ##
537
- ## ----------------- ##
538
-
539
- ACLOCAL='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run aclocal-1.11'
540
- AMDEPBACKSLASH='\'
541
- AMDEP_FALSE='#'
542
- AMDEP_TRUE=''
543
- AMTAR='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run tar'
544
- AR='ar'
545
- AUTOCONF='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run autoconf'
546
- AUTOHEADER='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run autoheader'
547
- AUTOMAKE='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run automake-1.11'
548
- AWK='awk'
549
- CC='gcc'
550
- CCDEPMODE='depmode=gcc3'
551
- CFLAGS='-g -O2'
552
- CPP='gcc -E'
553
- CPPFLAGS=''
554
- CYGPATH_W='echo'
555
- DEFS='-DHAVE_CONFIG_H'
556
- DEPDIR='.deps'
557
- DOXYGEN='false'
558
- DOXYGEN_FALSE=''
559
- DOXYGEN_TRUE='#'
560
- DSYMUTIL='dsymutil'
561
- DUMPBIN=''
562
- ECHO_C='\c'
563
- ECHO_N=''
564
- ECHO_T=''
565
- EGREP='/usr/bin/grep -E'
566
- EXEEXT=''
567
- FGREP='/usr/bin/grep -F'
568
- GREP='/usr/bin/grep'
569
- INSTALL_DATA='${INSTALL} -m 644'
570
- INSTALL_PROGRAM='${INSTALL}'
571
- INSTALL_SCRIPT='${INSTALL}'
572
- INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
573
- LD='/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld'
574
- LDFLAGS=''
575
- LIBOBJS=''
576
- LIBS=''
577
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
578
- LIPO='lipo'
579
- LN_S='ln -s'
580
- LTLIBOBJS=''
581
- MAKEINFO='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run makeinfo'
582
- MKDIR_P='config/install-sh -c -d'
583
- NM='/usr/bin/nm'
584
- NMEDIT='nmedit'
585
- OBJDUMP='false'
586
- OBJEXT='o'
587
- OTOOL64=':'
588
- OTOOL='otool'
589
- PACKAGE='yaml'
590
- PACKAGE_BUGREPORT='http://pyyaml.org/newticket?component=libyaml'
591
- PACKAGE_NAME='yaml'
592
- PACKAGE_STRING='yaml 0.1.4'
593
- PACKAGE_TARNAME='yaml'
594
- PACKAGE_URL=''
595
- PACKAGE_VERSION='0.1.4'
596
- PATH_SEPARATOR=':'
597
- RANLIB='ranlib'
598
- SED='/usr/bin/sed'
599
- SET_MAKE=''
600
- SHELL='/bin/sh'
601
- STRIP='strip'
602
- VERSION='0.1.4'
603
- YAML_LT_AGE='0'
604
- YAML_LT_CURRENT='2'
605
- YAML_LT_RELEASE='0'
606
- YAML_LT_REVISION='2'
607
- ac_ct_CC='gcc'
608
- ac_ct_DUMPBIN=''
609
- am__EXEEXT_FALSE=''
610
- am__EXEEXT_TRUE='#'
611
- am__fastdepCC_FALSE='#'
612
- am__fastdepCC_TRUE=''
613
- am__include='include'
614
- am__isrc=''
615
- am__leading_dot='.'
616
- am__quote=''
617
- am__tar='${AMTAR} chof - "$$tardir"'
618
- am__untar='${AMTAR} xf -'
619
- bindir='${exec_prefix}/bin'
620
- build='i386-apple-darwin11.4.2'
621
- build_alias=''
622
- build_cpu='i386'
623
- build_os='darwin11.4.2'
624
- build_vendor='apple'
625
- datadir='${datarootdir}'
626
- datarootdir='${prefix}/share'
627
- docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
628
- dvidir='${docdir}'
629
- exec_prefix='${prefix}'
630
- host='i386-apple-darwin11.4.2'
631
- host_alias=''
632
- host_cpu='i386'
633
- host_os='darwin11.4.2'
634
- host_vendor='apple'
635
- htmldir='${docdir}'
636
- includedir='${prefix}/include'
637
- infodir='${datarootdir}/info'
638
- install_sh='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/install-sh'
639
- libdir='${exec_prefix}/lib'
640
- libexecdir='${exec_prefix}/libexec'
641
- localedir='${datarootdir}/locale'
642
- localstatedir='${prefix}/var'
643
- lt_ECHO='/bin/echo'
644
- mandir='${datarootdir}/man'
645
- mkdir_p='$(top_builddir)/config/install-sh -c -d'
646
- oldincludedir='/usr/include'
647
- pdfdir='${docdir}'
648
- prefix='/usr/local'
649
- program_transform_name='s,x,x,'
650
- psdir='${docdir}'
651
- sbindir='${exec_prefix}/sbin'
652
- sharedstatedir='${prefix}/com'
653
- sysconfdir='${prefix}/etc'
654
- target_alias=''
655
-
656
- ## ----------- ##
657
- ## confdefs.h. ##
658
- ## ----------- ##
659
-
660
- /* confdefs.h */
661
- #define PACKAGE_NAME "yaml"
662
- #define PACKAGE_TARNAME "yaml"
663
- #define PACKAGE_VERSION "0.1.4"
664
- #define PACKAGE_STRING "yaml 0.1.4"
665
- #define PACKAGE_BUGREPORT "http://pyyaml.org/newticket?component=libyaml"
666
- #define PACKAGE_URL ""
667
- #define PACKAGE "yaml"
668
- #define VERSION "0.1.4"
669
- #define YAML_VERSION_MAJOR 0
670
- #define YAML_VERSION_MINOR 1
671
- #define YAML_VERSION_PATCH 4
672
- #define YAML_VERSION_STRING "0.1.4"
673
- #define STDC_HEADERS 1
674
- #define HAVE_SYS_TYPES_H 1
675
- #define HAVE_SYS_STAT_H 1
676
- #define HAVE_STDLIB_H 1
677
- #define HAVE_STRING_H 1
678
- #define HAVE_MEMORY_H 1
679
- #define HAVE_STRINGS_H 1
680
- #define HAVE_INTTYPES_H 1
681
- #define HAVE_STDINT_H 1
682
- #define HAVE_UNISTD_H 1
683
- #define HAVE_DLFCN_H 1
684
- #define LT_OBJDIR ".libs/"
685
- #define STDC_HEADERS 1
686
- #define HAVE_STDLIB_H 1
687
-
688
- configure: exit 0