nutcracker 0.2.4.10mac → 0.2.4.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) 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/config.guess +278 -248
  12. data/ext/nutcracker/config/config.sub +234 -77
  13. data/ext/nutcracker/config/depcomp +143 -39
  14. data/ext/nutcracker/config/install-sh +136 -116
  15. data/ext/nutcracker/config/ltmain.sh +1704 -788
  16. data/ext/nutcracker/config/missing +29 -65
  17. data/ext/nutcracker/config.h.in +0 -15
  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 -0
  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 +8 -201
  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/libtool +0 -9403
  250. data/ext/nutcracker/src/Makefile +0 -647
  251. data/ext/nutcracker/src/hashkit/Makefile +0 -476
  252. data/ext/nutcracker/src/hashkit/libhashkit.a +0 -0
  253. data/ext/nutcracker/src/hashkit/nc_crc16.o +0 -0
  254. data/ext/nutcracker/src/hashkit/nc_crc32.o +0 -0
  255. data/ext/nutcracker/src/hashkit/nc_fnv.o +0 -0
  256. data/ext/nutcracker/src/hashkit/nc_hsieh.o +0 -0
  257. data/ext/nutcracker/src/hashkit/nc_jenkins.o +0 -0
  258. data/ext/nutcracker/src/hashkit/nc_ketama.o +0 -0
  259. data/ext/nutcracker/src/hashkit/nc_md5.o +0 -0
  260. data/ext/nutcracker/src/hashkit/nc_modula.o +0 -0
  261. data/ext/nutcracker/src/hashkit/nc_murmur.o +0 -0
  262. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.o +0 -0
  263. data/ext/nutcracker/src/hashkit/nc_random.o +0 -0
  264. data/ext/nutcracker/src/nc.o +0 -0
  265. data/ext/nutcracker/src/nc_array.o +0 -0
  266. data/ext/nutcracker/src/nc_client.o +0 -0
  267. data/ext/nutcracker/src/nc_conf.o +0 -0
  268. data/ext/nutcracker/src/nc_connection.o +0 -0
  269. data/ext/nutcracker/src/nc_core.o +0 -0
  270. data/ext/nutcracker/src/nc_epoll.o +0 -0
  271. data/ext/nutcracker/src/nc_kqueue.c +0 -296
  272. data/ext/nutcracker/src/nc_kqueue.o +0 -0
  273. data/ext/nutcracker/src/nc_log.o +0 -0
  274. data/ext/nutcracker/src/nc_mbuf.o +0 -0
  275. data/ext/nutcracker/src/nc_message.o +0 -0
  276. data/ext/nutcracker/src/nc_proxy.o +0 -0
  277. data/ext/nutcracker/src/nc_rbtree.o +0 -0
  278. data/ext/nutcracker/src/nc_request.o +0 -0
  279. data/ext/nutcracker/src/nc_response.o +0 -0
  280. data/ext/nutcracker/src/nc_server.o +0 -0
  281. data/ext/nutcracker/src/nc_signal.o +0 -0
  282. data/ext/nutcracker/src/nc_stats.o +0 -0
  283. data/ext/nutcracker/src/nc_string.o +0 -0
  284. data/ext/nutcracker/src/nc_util.o +0 -0
  285. data/ext/nutcracker/src/nutcracker +0 -0
  286. data/ext/nutcracker/src/proto/Makefile +0 -454
  287. data/ext/nutcracker/src/proto/libproto.a +0 -0
  288. data/ext/nutcracker/src/proto/nc_memcache.o +0 -0
  289. data/ext/nutcracker/src/proto/nc_redis.o +0 -0
  290. data/ext/nutcracker/stamp-h1 +0 -1
@@ -1,484 +0,0 @@
1
- # Makefile.in generated by automake 1.11 from Makefile.am.
2
- # src/Makefile. Generated from Makefile.in by configure.
3
-
4
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
- # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
6
- # Inc.
7
- # This Makefile.in is free software; the Free Software Foundation
8
- # gives unlimited permission to copy and/or distribute it,
9
- # with or without modifications, as long as this notice is preserved.
10
-
11
- # This program is distributed in the hope that it will be useful,
12
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
- # PARTICULAR PURPOSE.
15
-
16
-
17
-
18
-
19
- pkgdatadir = $(datadir)/yaml
20
- pkgincludedir = $(includedir)/yaml
21
- pkglibdir = $(libdir)/yaml
22
- pkglibexecdir = $(libexecdir)/yaml
23
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
- install_sh_DATA = $(install_sh) -c -m 644
25
- install_sh_PROGRAM = $(install_sh) -c
26
- install_sh_SCRIPT = $(install_sh) -c
27
- INSTALL_HEADER = $(INSTALL_DATA)
28
- transform = $(program_transform_name)
29
- NORMAL_INSTALL = :
30
- PRE_INSTALL = :
31
- POST_INSTALL = :
32
- NORMAL_UNINSTALL = :
33
- PRE_UNINSTALL = :
34
- POST_UNINSTALL = :
35
- build_triplet = i386-apple-darwin11.4.2
36
- host_triplet = i386-apple-darwin11.4.2
37
- subdir = src
38
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
39
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
- am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
41
- $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
42
- $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
43
- $(top_srcdir)/configure.ac
44
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
45
- $(ACLOCAL_M4)
46
- mkinstalldirs = $(install_sh) -d
47
- CONFIG_HEADER = $(top_builddir)/config.h
48
- CONFIG_CLEAN_FILES =
49
- CONFIG_CLEAN_VPATH_FILES =
50
- LTLIBRARIES = $(noinst_LTLIBRARIES)
51
- libyaml_la_LIBADD =
52
- am_libyaml_la_OBJECTS = api.lo reader.lo scanner.lo parser.lo \
53
- loader.lo writer.lo emitter.lo dumper.lo
54
- libyaml_la_OBJECTS = $(am_libyaml_la_OBJECTS)
55
- libyaml_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
56
- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
57
- $(libyaml_la_LDFLAGS) $(LDFLAGS) -o $@
58
- DEFAULT_INCLUDES = -I. -I$(top_builddir)
59
- depcomp = $(SHELL) $(top_srcdir)/config/depcomp
60
- am__depfiles_maybe = depfiles
61
- am__mv = mv -f
62
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
63
- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
64
- LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
65
- --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
66
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
67
- CCLD = $(CC)
68
- LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
69
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
70
- $(LDFLAGS) -o $@
71
- SOURCES = $(libyaml_la_SOURCES)
72
- DIST_SOURCES = $(libyaml_la_SOURCES)
73
- ETAGS = etags
74
- CTAGS = ctags
75
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
76
- ACLOCAL = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run aclocal-1.11
77
- AMTAR = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run tar
78
- AR = ar
79
- AUTOCONF = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run autoconf
80
- AUTOHEADER = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run autoheader
81
- AUTOMAKE = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run automake-1.11
82
- AWK = awk
83
- CC = gcc
84
- CCDEPMODE = depmode=gcc3
85
- CFLAGS = -g -O2
86
- CPP = gcc -E
87
- CPPFLAGS =
88
- CYGPATH_W = echo
89
- DEFS = -DHAVE_CONFIG_H
90
- DEPDIR = .deps
91
- DOXYGEN = false
92
- DSYMUTIL = dsymutil
93
- DUMPBIN =
94
- ECHO_C = \c
95
- ECHO_N =
96
- ECHO_T =
97
- EGREP = /usr/bin/grep -E
98
- EXEEXT =
99
- FGREP = /usr/bin/grep -F
100
- GREP = /usr/bin/grep
101
- INSTALL = /usr/bin/install -c
102
- INSTALL_DATA = ${INSTALL} -m 644
103
- INSTALL_PROGRAM = ${INSTALL}
104
- INSTALL_SCRIPT = ${INSTALL}
105
- INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
106
- LD = /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
107
- LDFLAGS =
108
- LIBOBJS =
109
- LIBS =
110
- LIBTOOL = $(SHELL) $(top_builddir)/libtool
111
- LIPO = lipo
112
- LN_S = ln -s
113
- LTLIBOBJS =
114
- MAKEINFO = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/missing --run makeinfo
115
- MKDIR_P = ../config/install-sh -c -d
116
- NM = /usr/bin/nm
117
- NMEDIT = nmedit
118
- OBJDUMP = false
119
- OBJEXT = o
120
- OTOOL = otool
121
- OTOOL64 = :
122
- PACKAGE = yaml
123
- PACKAGE_BUGREPORT = http://pyyaml.org/newticket?component=libyaml
124
- PACKAGE_NAME = yaml
125
- PACKAGE_STRING = yaml 0.1.4
126
- PACKAGE_TARNAME = yaml
127
- PACKAGE_URL =
128
- PACKAGE_VERSION = 0.1.4
129
- PATH_SEPARATOR = :
130
- RANLIB = ranlib
131
- SED = /usr/bin/sed
132
- SET_MAKE =
133
- SHELL = /bin/sh
134
- STRIP = strip
135
- VERSION = 0.1.4
136
- YAML_LT_AGE = 0
137
- YAML_LT_CURRENT = 2
138
- YAML_LT_RELEASE = 0
139
- YAML_LT_REVISION = 2
140
- abs_builddir = /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/src
141
- abs_srcdir = /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/src
142
- abs_top_builddir = /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4
143
- abs_top_srcdir = /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4
144
- ac_ct_CC = gcc
145
- ac_ct_DUMPBIN =
146
- am__include = include
147
- am__leading_dot = .
148
- am__quote =
149
- am__tar = ${AMTAR} chof - "$$tardir"
150
- am__untar = ${AMTAR} xf -
151
- bindir = ${exec_prefix}/bin
152
- build = i386-apple-darwin11.4.2
153
- build_alias =
154
- build_cpu = i386
155
- build_os = darwin11.4.2
156
- build_vendor = apple
157
- builddir = .
158
- datadir = ${datarootdir}
159
- datarootdir = ${prefix}/share
160
- docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
161
- dvidir = ${docdir}
162
- exec_prefix = ${prefix}
163
- host = i386-apple-darwin11.4.2
164
- host_alias =
165
- host_cpu = i386
166
- host_os = darwin11.4.2
167
- host_vendor = apple
168
- htmldir = ${docdir}
169
- includedir = ${prefix}/include
170
- infodir = ${datarootdir}/info
171
- install_sh = ${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4/config/install-sh
172
- libdir = ${exec_prefix}/lib
173
- libexecdir = ${exec_prefix}/libexec
174
- localedir = ${datarootdir}/locale
175
- localstatedir = ${prefix}/var
176
- lt_ECHO = /bin/echo
177
- mandir = ${datarootdir}/man
178
- mkdir_p = $(top_builddir)/config/install-sh -c -d
179
- oldincludedir = /usr/include
180
- pdfdir = ${docdir}
181
- prefix = /usr/local
182
- program_transform_name = s,x,x,
183
- psdir = ${docdir}
184
- sbindir = ${exec_prefix}/sbin
185
- sharedstatedir = ${prefix}/com
186
- srcdir = .
187
- sysconfdir = ${prefix}/etc
188
- target_alias =
189
- top_build_prefix = ../
190
- top_builddir = ..
191
- top_srcdir = ..
192
- AM_CPPFLAGS = -I$(top_srcdir)/include
193
- noinst_LTLIBRARIES = libyaml.la
194
- libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
195
- libyaml_la_LDFLAGS = -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE)
196
- all: all-am
197
-
198
- .SUFFIXES:
199
- .SUFFIXES: .c .lo .o .obj
200
- $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
201
- @for dep in $?; do \
202
- case '$(am__configure_deps)' in \
203
- *$$dep*) \
204
- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
205
- && { if test -f $@; then exit 0; else break; fi; }; \
206
- exit 1;; \
207
- esac; \
208
- done; \
209
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
210
- $(am__cd) $(top_srcdir) && \
211
- $(AUTOMAKE) --foreign src/Makefile
212
- .PRECIOUS: Makefile
213
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
214
- @case '$?' in \
215
- *config.status*) \
216
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
217
- *) \
218
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
219
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
220
- esac;
221
-
222
- $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
223
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
224
-
225
- $(top_srcdir)/configure: $(am__configure_deps)
226
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
227
- $(ACLOCAL_M4): $(am__aclocal_m4_deps)
228
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
229
- $(am__aclocal_m4_deps):
230
-
231
- clean-noinstLTLIBRARIES:
232
- -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
233
- @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
234
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
235
- test "$$dir" != "$$p" || dir=.; \
236
- echo "rm -f \"$${dir}/so_locations\""; \
237
- rm -f "$${dir}/so_locations"; \
238
- done
239
- libyaml.la: $(libyaml_la_OBJECTS) $(libyaml_la_DEPENDENCIES)
240
- $(libyaml_la_LINK) $(libyaml_la_OBJECTS) $(libyaml_la_LIBADD) $(LIBS)
241
-
242
- mostlyclean-compile:
243
- -rm -f *.$(OBJEXT)
244
-
245
- distclean-compile:
246
- -rm -f *.tab.c
247
-
248
- include ./$(DEPDIR)/api.Plo
249
- include ./$(DEPDIR)/dumper.Plo
250
- include ./$(DEPDIR)/emitter.Plo
251
- include ./$(DEPDIR)/loader.Plo
252
- include ./$(DEPDIR)/parser.Plo
253
- include ./$(DEPDIR)/reader.Plo
254
- include ./$(DEPDIR)/scanner.Plo
255
- include ./$(DEPDIR)/writer.Plo
256
-
257
- .c.o:
258
- $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
259
- $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
260
- # source='$<' object='$@' libtool=no \
261
- # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
262
- # $(COMPILE) -c $<
263
-
264
- .c.obj:
265
- $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
266
- $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
267
- # source='$<' object='$@' libtool=no \
268
- # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
269
- # $(COMPILE) -c `$(CYGPATH_W) '$<'`
270
-
271
- .c.lo:
272
- $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
273
- $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
274
- # source='$<' object='$@' libtool=yes \
275
- # DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
276
- # $(LTCOMPILE) -c -o $@ $<
277
-
278
- mostlyclean-libtool:
279
- -rm -f *.lo
280
-
281
- clean-libtool:
282
- -rm -rf .libs _libs
283
-
284
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
285
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
286
- unique=`for i in $$list; do \
287
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
288
- done | \
289
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
290
- END { if (nonempty) { for (i in files) print i; }; }'`; \
291
- mkid -fID $$unique
292
- tags: TAGS
293
-
294
- TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
295
- $(TAGS_FILES) $(LISP)
296
- set x; \
297
- here=`pwd`; \
298
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
299
- unique=`for i in $$list; do \
300
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
301
- done | \
302
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
303
- END { if (nonempty) { for (i in files) print i; }; }'`; \
304
- shift; \
305
- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
306
- test -n "$$unique" || unique=$$empty_fix; \
307
- if test $$# -gt 0; then \
308
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
309
- "$$@" $$unique; \
310
- else \
311
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
312
- $$unique; \
313
- fi; \
314
- fi
315
- ctags: CTAGS
316
- CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
317
- $(TAGS_FILES) $(LISP)
318
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
319
- unique=`for i in $$list; do \
320
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
321
- done | \
322
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
323
- END { if (nonempty) { for (i in files) print i; }; }'`; \
324
- test -z "$(CTAGS_ARGS)$$unique" \
325
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
326
- $$unique
327
-
328
- GTAGS:
329
- here=`$(am__cd) $(top_builddir) && pwd` \
330
- && $(am__cd) $(top_srcdir) \
331
- && gtags -i $(GTAGS_ARGS) "$$here"
332
-
333
- distclean-tags:
334
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
335
-
336
- distdir: $(DISTFILES)
337
- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
338
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
339
- list='$(DISTFILES)'; \
340
- dist_files=`for file in $$list; do echo $$file; done | \
341
- sed -e "s|^$$srcdirstrip/||;t" \
342
- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
343
- case $$dist_files in \
344
- */*) $(MKDIR_P) `echo "$$dist_files" | \
345
- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
346
- sort -u` ;; \
347
- esac; \
348
- for file in $$dist_files; do \
349
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
350
- if test -d $$d/$$file; then \
351
- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
352
- if test -d "$(distdir)/$$file"; then \
353
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
354
- fi; \
355
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
356
- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
357
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
358
- fi; \
359
- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
360
- else \
361
- test -f "$(distdir)/$$file" \
362
- || cp -p $$d/$$file "$(distdir)/$$file" \
363
- || exit 1; \
364
- fi; \
365
- done
366
- check-am: all-am
367
- check: check-am
368
- all-am: Makefile $(LTLIBRARIES)
369
- installdirs:
370
- install: install-am
371
- install-exec: install-exec-am
372
- install-data: install-data-am
373
- uninstall: uninstall-am
374
-
375
- install-am: all-am
376
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
377
-
378
- installcheck: installcheck-am
379
- install-strip:
380
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
381
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
382
- `test -z '$(STRIP)' || \
383
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
384
- mostlyclean-generic:
385
-
386
- clean-generic:
387
-
388
- distclean-generic:
389
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
390
- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
391
-
392
- maintainer-clean-generic:
393
- @echo "This command is intended for maintainers to use"
394
- @echo "it deletes files that may require special tools to rebuild."
395
- clean: clean-am
396
-
397
- clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
398
- mostlyclean-am
399
-
400
- distclean: distclean-am
401
- -rm -rf ./$(DEPDIR)
402
- -rm -f Makefile
403
- distclean-am: clean-am distclean-compile distclean-generic \
404
- distclean-tags
405
-
406
- dvi: dvi-am
407
-
408
- dvi-am:
409
-
410
- html: html-am
411
-
412
- html-am:
413
-
414
- info: info-am
415
-
416
- info-am:
417
-
418
- install-data-am:
419
-
420
- install-dvi: install-dvi-am
421
-
422
- install-dvi-am:
423
-
424
- install-exec-am:
425
-
426
- install-html: install-html-am
427
-
428
- install-html-am:
429
-
430
- install-info: install-info-am
431
-
432
- install-info-am:
433
-
434
- install-man:
435
-
436
- install-pdf: install-pdf-am
437
-
438
- install-pdf-am:
439
-
440
- install-ps: install-ps-am
441
-
442
- install-ps-am:
443
-
444
- installcheck-am:
445
-
446
- maintainer-clean: maintainer-clean-am
447
- -rm -rf ./$(DEPDIR)
448
- -rm -f Makefile
449
- maintainer-clean-am: distclean-am maintainer-clean-generic
450
-
451
- mostlyclean: mostlyclean-am
452
-
453
- mostlyclean-am: mostlyclean-compile mostlyclean-generic \
454
- mostlyclean-libtool
455
-
456
- pdf: pdf-am
457
-
458
- pdf-am:
459
-
460
- ps: ps-am
461
-
462
- ps-am:
463
-
464
- uninstall-am:
465
-
466
- .MAKE: install-am install-strip
467
-
468
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
469
- clean-libtool clean-noinstLTLIBRARIES ctags distclean \
470
- distclean-compile distclean-generic distclean-libtool \
471
- distclean-tags distdir dvi dvi-am html html-am info info-am \
472
- install install-am install-data install-data-am install-dvi \
473
- install-dvi-am install-exec install-exec-am install-html \
474
- install-html-am install-info install-info-am install-man \
475
- install-pdf install-pdf-am install-ps install-ps-am \
476
- install-strip installcheck installcheck-am installdirs \
477
- maintainer-clean maintainer-clean-generic mostlyclean \
478
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
479
- pdf pdf-am ps ps-am tags uninstall uninstall-am
480
-
481
-
482
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
483
- # Otherwise a system limit (for SysV at least) may be exceeded.
484
- .NOEXPORT:
@@ -1,12 +0,0 @@
1
- # api.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/api.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='api.o'
12
-
@@ -1,12 +0,0 @@
1
- # dumper.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/dumper.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='dumper.o'
12
-
@@ -1,12 +0,0 @@
1
- # emitter.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/emitter.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='emitter.o'
12
-
@@ -1,41 +0,0 @@
1
- # libyaml.la - a libtool library file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # The name that we can dlopen(3).
8
- dlname=''
9
-
10
- # Names of this library.
11
- library_names=''
12
-
13
- # The name of the static archive.
14
- old_library='libyaml.a'
15
-
16
- # Linker flags that can not go in dependency_libs.
17
- inherited_linker_flags=' '
18
-
19
- # Libraries that this one depends upon.
20
- dependency_libs=''
21
-
22
- # Names of additional weak libraries provided by this library
23
- weak_library_names=''
24
-
25
- # Version information for libyaml.
26
- current=
27
- age=
28
- revision=
29
-
30
- # Is this an already installed library?
31
- installed=no
32
-
33
- # Should we warn about portability when linking against -modules?
34
- shouldnotlink=no
35
-
36
- # Files to dlopen/dlpreopen
37
- dlopen=''
38
- dlpreopen=''
39
-
40
- # Directory that this library needs to be installed in:
41
- libdir=''
@@ -1,12 +0,0 @@
1
- # loader.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/loader.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='loader.o'
12
-
@@ -1,12 +0,0 @@
1
- # parser.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/parser.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='parser.o'
12
-
@@ -1,12 +0,0 @@
1
- # reader.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/reader.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='reader.o'
12
-
@@ -1,12 +0,0 @@
1
- # scanner.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/scanner.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='scanner.o'
12
-
@@ -1,12 +0,0 @@
1
- # writer.lo - a libtool object file
2
- # Generated by ltmain.sh (GNU libtool) 2.2.6
3
- #
4
- # Please DO NOT delete this file!
5
- # It is necessary for linking the library.
6
-
7
- # Name of the PIC object.
8
- pic_object='.libs/writer.o'
9
-
10
- # Name of the non-PIC object
11
- non_pic_object='writer.o'
12
-
@@ -1 +0,0 @@
1
- timestamp for config.h