boourns-memcached 1.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 (542) hide show
  1. data/BENCHMARKS +128 -0
  2. data/CHANGELOG +158 -0
  3. data/Gemfile +2 -0
  4. data/Gemfile.lock +41 -0
  5. data/LICENSE +184 -0
  6. data/Manifest +243 -0
  7. data/README.rdoc +124 -0
  8. data/Rakefile +118 -0
  9. data/TODO +4 -0
  10. data/ext/Makefile +213 -0
  11. data/ext/Makefile.in +213 -0
  12. data/ext/bin/memcat +0 -0
  13. data/ext/bin/memcp +0 -0
  14. data/ext/bin/memdump +0 -0
  15. data/ext/bin/memerror +0 -0
  16. data/ext/bin/memflush +0 -0
  17. data/ext/bin/memrm +0 -0
  18. data/ext/bin/memslap +0 -0
  19. data/ext/bin/memstat +0 -0
  20. data/ext/extconf-make.rb +25 -0
  21. data/ext/extconf.rb +87 -0
  22. data/ext/include/libmemcached/memcached.h +304 -0
  23. data/ext/include/libmemcached/memcached.hpp +799 -0
  24. data/ext/include/libmemcached/memcached_configure.h +23 -0
  25. data/ext/include/libmemcached/memcached_constants.h +145 -0
  26. data/ext/include/libmemcached/memcached_exist.h +20 -0
  27. data/ext/include/libmemcached/memcached_get.h +87 -0
  28. data/ext/include/libmemcached/memcached_result.h +59 -0
  29. data/ext/include/libmemcached/memcached_sasl.h +44 -0
  30. data/ext/include/libmemcached/memcached_server.h +93 -0
  31. data/ext/include/libmemcached/memcached_storage.h +107 -0
  32. data/ext/include/libmemcached/memcached_string.h +53 -0
  33. data/ext/include/libmemcached/memcached_touch.h +31 -0
  34. data/ext/include/libmemcached/memcached_types.h +44 -0
  35. data/ext/include/libmemcached/memcached_watchpoint.h +38 -0
  36. data/ext/include/libmemcached/visibility.h +51 -0
  37. data/ext/lib/libmemcached.a +0 -0
  38. data/ext/lib/libmemcached.la +41 -0
  39. data/ext/lib/libmemcached_gem.a +0 -0
  40. data/ext/lib/libmemcached_gem.la +41 -0
  41. data/ext/lib/pkgconfig/libmemcached.pc +10 -0
  42. data/ext/libmemcached-0.32/AUTHORS +7 -0
  43. data/ext/libmemcached-0.32/COPYING +32 -0
  44. data/ext/libmemcached-0.32/ChangeLog +303 -0
  45. data/ext/libmemcached-0.32/INSTALL +302 -0
  46. data/ext/libmemcached-0.32/Makefile +831 -0
  47. data/ext/libmemcached-0.32/Makefile.am +36 -0
  48. data/ext/libmemcached-0.32/Makefile.in +831 -0
  49. data/ext/libmemcached-0.32/NEWS +1 -0
  50. data/ext/libmemcached-0.32/README +33 -0
  51. data/ext/libmemcached-0.32/THANKS +14 -0
  52. data/ext/libmemcached-0.32/TODO +11 -0
  53. data/ext/libmemcached-0.32/aclocal.m4 +1917 -0
  54. data/ext/libmemcached-0.32/clients/Makefile +773 -0
  55. data/ext/libmemcached-0.32/clients/Makefile.am +80 -0
  56. data/ext/libmemcached-0.32/clients/Makefile.in +773 -0
  57. data/ext/libmemcached-0.32/clients/client_options.h +32 -0
  58. data/ext/libmemcached-0.32/clients/execute.c +64 -0
  59. data/ext/libmemcached-0.32/clients/execute.h +5 -0
  60. data/ext/libmemcached-0.32/clients/execute.lo +12 -0
  61. data/ext/libmemcached-0.32/clients/execute.o +0 -0
  62. data/ext/libmemcached-0.32/clients/generator.c +74 -0
  63. data/ext/libmemcached-0.32/clients/generator.h +20 -0
  64. data/ext/libmemcached-0.32/clients/generator.lo +12 -0
  65. data/ext/libmemcached-0.32/clients/generator.o +0 -0
  66. data/ext/libmemcached-0.32/clients/libgenexec.la +41 -0
  67. data/ext/libmemcached-0.32/clients/libutilities.la +41 -0
  68. data/ext/libmemcached-0.32/clients/memcat +0 -0
  69. data/ext/libmemcached-0.32/clients/memcat.c +178 -0
  70. data/ext/libmemcached-0.32/clients/memcat.o +0 -0
  71. data/ext/libmemcached-0.32/clients/memcp +0 -0
  72. data/ext/libmemcached-0.32/clients/memcp.c +251 -0
  73. data/ext/libmemcached-0.32/clients/memcp.o +0 -0
  74. data/ext/libmemcached-0.32/clients/memdump +0 -0
  75. data/ext/libmemcached-0.32/clients/memdump.c +170 -0
  76. data/ext/libmemcached-0.32/clients/memdump.o +0 -0
  77. data/ext/libmemcached-0.32/clients/memerror +0 -0
  78. data/ext/libmemcached-0.32/clients/memerror.c +80 -0
  79. data/ext/libmemcached-0.32/clients/memerror.o +0 -0
  80. data/ext/libmemcached-0.32/clients/memflush +0 -0
  81. data/ext/libmemcached-0.32/clients/memflush.c +143 -0
  82. data/ext/libmemcached-0.32/clients/memflush.o +0 -0
  83. data/ext/libmemcached-0.32/clients/memrm +0 -0
  84. data/ext/libmemcached-0.32/clients/memrm.c +160 -0
  85. data/ext/libmemcached-0.32/clients/memrm.o +0 -0
  86. data/ext/libmemcached-0.32/clients/memslap +0 -0
  87. data/ext/libmemcached-0.32/clients/memslap-memslap.o +0 -0
  88. data/ext/libmemcached-0.32/clients/memslap.c +441 -0
  89. data/ext/libmemcached-0.32/clients/memstat +0 -0
  90. data/ext/libmemcached-0.32/clients/memstat.c +326 -0
  91. data/ext/libmemcached-0.32/clients/memstat.o +0 -0
  92. data/ext/libmemcached-0.32/clients/utilities.c +207 -0
  93. data/ext/libmemcached-0.32/clients/utilities.h +41 -0
  94. data/ext/libmemcached-0.32/clients/utilities.lo +12 -0
  95. data/ext/libmemcached-0.32/clients/utilities.o +0 -0
  96. data/ext/libmemcached-0.32/config.h +253 -0
  97. data/ext/libmemcached-0.32/config.h.in +252 -0
  98. data/ext/libmemcached-0.32/config.log +2440 -0
  99. data/ext/libmemcached-0.32/config.status +2384 -0
  100. data/ext/libmemcached-0.32/config/compile +143 -0
  101. data/ext/libmemcached-0.32/config/config.guess +1561 -0
  102. data/ext/libmemcached-0.32/config/config.rpath +666 -0
  103. data/ext/libmemcached-0.32/config/config.sub +1686 -0
  104. data/ext/libmemcached-0.32/config/depcomp +630 -0
  105. data/ext/libmemcached-0.32/config/install-sh +520 -0
  106. data/ext/libmemcached-0.32/config/ltmain.sh +9636 -0
  107. data/ext/libmemcached-0.32/config/missing +376 -0
  108. data/ext/libmemcached-0.32/configure +23825 -0
  109. data/ext/libmemcached-0.32/configure.ac +122 -0
  110. data/ext/libmemcached-0.32/docs/Makefile +920 -0
  111. data/ext/libmemcached-0.32/docs/Makefile.am +415 -0
  112. data/ext/libmemcached-0.32/docs/Makefile.in +920 -0
  113. data/ext/libmemcached-0.32/docs/libmemcached.3 +229 -0
  114. data/ext/libmemcached-0.32/docs/libmemcached.pod +123 -0
  115. data/ext/libmemcached-0.32/docs/libmemcached_examples.3 +242 -0
  116. data/ext/libmemcached-0.32/docs/libmemcached_examples.pod +115 -0
  117. data/ext/libmemcached-0.32/docs/libmemcachedutil.pod +40 -0
  118. data/ext/libmemcached-0.32/docs/memcached_add.3 +308 -0
  119. data/ext/libmemcached-0.32/docs/memcached_add_by_key.3 +308 -0
  120. data/ext/libmemcached-0.32/docs/memcached_analyze.3 +175 -0
  121. data/ext/libmemcached-0.32/docs/memcached_analyze.pod +52 -0
  122. data/ext/libmemcached-0.32/docs/memcached_append.3 +308 -0
  123. data/ext/libmemcached-0.32/docs/memcached_append_by_key.3 +308 -0
  124. data/ext/libmemcached-0.32/docs/memcached_auto.pod +97 -0
  125. data/ext/libmemcached-0.32/docs/memcached_behavior.pod +224 -0
  126. data/ext/libmemcached-0.32/docs/memcached_behavior_get.3 +317 -0
  127. data/ext/libmemcached-0.32/docs/memcached_behavior_set.3 +317 -0
  128. data/ext/libmemcached-0.32/docs/memcached_callback.pod +123 -0
  129. data/ext/libmemcached-0.32/docs/memcached_callback_get.3 +231 -0
  130. data/ext/libmemcached-0.32/docs/memcached_callback_set.3 +231 -0
  131. data/ext/libmemcached-0.32/docs/memcached_cas.3 +308 -0
  132. data/ext/libmemcached-0.32/docs/memcached_cas_by_key.3 +308 -0
  133. data/ext/libmemcached-0.32/docs/memcached_clone.3 +183 -0
  134. data/ext/libmemcached-0.32/docs/memcached_create.3 +183 -0
  135. data/ext/libmemcached-0.32/docs/memcached_create.pod +61 -0
  136. data/ext/libmemcached-0.32/docs/memcached_decrement.3 +219 -0
  137. data/ext/libmemcached-0.32/docs/memcached_decrement_with_initial.3 +219 -0
  138. data/ext/libmemcached-0.32/docs/memcached_delete.3 +176 -0
  139. data/ext/libmemcached-0.32/docs/memcached_delete.pod +54 -0
  140. data/ext/libmemcached-0.32/docs/memcached_delete_by_key.3 +176 -0
  141. data/ext/libmemcached-0.32/docs/memcached_destroy_sasl_auth_data.3 +184 -0
  142. data/ext/libmemcached-0.32/docs/memcached_dump.3 +175 -0
  143. data/ext/libmemcached-0.32/docs/memcached_dump.pod +53 -0
  144. data/ext/libmemcached-0.32/docs/memcached_fetch.3 +283 -0
  145. data/ext/libmemcached-0.32/docs/memcached_fetch_execute.3 +283 -0
  146. data/ext/libmemcached-0.32/docs/memcached_fetch_result.3 +283 -0
  147. data/ext/libmemcached-0.32/docs/memcached_flush.pod +46 -0
  148. data/ext/libmemcached-0.32/docs/memcached_flush_buffers.3 +164 -0
  149. data/ext/libmemcached-0.32/docs/memcached_flush_buffers.pod +42 -0
  150. data/ext/libmemcached-0.32/docs/memcached_free.3 +183 -0
  151. data/ext/libmemcached-0.32/docs/memcached_generate_hash_value.3 +179 -0
  152. data/ext/libmemcached-0.32/docs/memcached_generate_hash_value.pod +57 -0
  153. data/ext/libmemcached-0.32/docs/memcached_get.3 +283 -0
  154. data/ext/libmemcached-0.32/docs/memcached_get.pod +161 -0
  155. data/ext/libmemcached-0.32/docs/memcached_get_by_key.3 +283 -0
  156. data/ext/libmemcached-0.32/docs/memcached_get_memory_allocators.3 +194 -0
  157. data/ext/libmemcached-0.32/docs/memcached_get_sasl_callbacks.3 +184 -0
  158. data/ext/libmemcached-0.32/docs/memcached_get_user_data.3 +171 -0
  159. data/ext/libmemcached-0.32/docs/memcached_increment.3 +219 -0
  160. data/ext/libmemcached-0.32/docs/memcached_increment_with_initial.3 +219 -0
  161. data/ext/libmemcached-0.32/docs/memcached_lib_version.3 +176 -0
  162. data/ext/libmemcached-0.32/docs/memcached_memory_allocators.pod +73 -0
  163. data/ext/libmemcached-0.32/docs/memcached_mget.3 +283 -0
  164. data/ext/libmemcached-0.32/docs/memcached_mget_by_key.3 +283 -0
  165. data/ext/libmemcached-0.32/docs/memcached_pool.pod +77 -0
  166. data/ext/libmemcached-0.32/docs/memcached_prepend.3 +308 -0
  167. data/ext/libmemcached-0.32/docs/memcached_prepend_by_key.3 +308 -0
  168. data/ext/libmemcached-0.32/docs/memcached_quit.3 +169 -0
  169. data/ext/libmemcached-0.32/docs/memcached_quit.pod +47 -0
  170. data/ext/libmemcached-0.32/docs/memcached_replace.3 +308 -0
  171. data/ext/libmemcached-0.32/docs/memcached_replace_by_key.3 +308 -0
  172. data/ext/libmemcached-0.32/docs/memcached_sasl.pod +63 -0
  173. data/ext/libmemcached-0.32/docs/memcached_server_add.3 +224 -0
  174. data/ext/libmemcached-0.32/docs/memcached_server_count.3 +224 -0
  175. data/ext/libmemcached-0.32/docs/memcached_server_list.3 +224 -0
  176. data/ext/libmemcached-0.32/docs/memcached_server_list_append.3 +196 -0
  177. data/ext/libmemcached-0.32/docs/memcached_server_list_count.3 +196 -0
  178. data/ext/libmemcached-0.32/docs/memcached_server_list_free.3 +196 -0
  179. data/ext/libmemcached-0.32/docs/memcached_server_push.3 +224 -0
  180. data/ext/libmemcached-0.32/docs/memcached_server_st.pod +75 -0
  181. data/ext/libmemcached-0.32/docs/memcached_servers.pod +102 -0
  182. data/ext/libmemcached-0.32/docs/memcached_servers_parse.3 +196 -0
  183. data/ext/libmemcached-0.32/docs/memcached_set.3 +308 -0
  184. data/ext/libmemcached-0.32/docs/memcached_set.pod +187 -0
  185. data/ext/libmemcached-0.32/docs/memcached_set_by_key.3 +308 -0
  186. data/ext/libmemcached-0.32/docs/memcached_set_memory_allocators.3 +194 -0
  187. data/ext/libmemcached-0.32/docs/memcached_set_sasl_auth_data.3 +184 -0
  188. data/ext/libmemcached-0.32/docs/memcached_set_sasl_callbacks.3 +184 -0
  189. data/ext/libmemcached-0.32/docs/memcached_set_user_data.3 +171 -0
  190. data/ext/libmemcached-0.32/docs/memcached_stat.3 +204 -0
  191. data/ext/libmemcached-0.32/docs/memcached_stat_get_keys.3 +204 -0
  192. data/ext/libmemcached-0.32/docs/memcached_stat_get_value.3 +204 -0
  193. data/ext/libmemcached-0.32/docs/memcached_stat_servername.3 +204 -0
  194. data/ext/libmemcached-0.32/docs/memcached_stats.pod +82 -0
  195. data/ext/libmemcached-0.32/docs/memcached_strerror.3 +168 -0
  196. data/ext/libmemcached-0.32/docs/memcached_strerror.pod +46 -0
  197. data/ext/libmemcached-0.32/docs/memcached_user_data.pod +49 -0
  198. data/ext/libmemcached-0.32/docs/memcached_verbosity.3 +163 -0
  199. data/ext/libmemcached-0.32/docs/memcached_verbosity.pod +41 -0
  200. data/ext/libmemcached-0.32/docs/memcached_version.3 +176 -0
  201. data/ext/libmemcached-0.32/docs/memcached_version.pod +56 -0
  202. data/ext/libmemcached-0.32/docs/memcat.1 +161 -0
  203. data/ext/libmemcached-0.32/docs/memcat.pod +37 -0
  204. data/ext/libmemcached-0.32/docs/memcp.1 +164 -0
  205. data/ext/libmemcached-0.32/docs/memcp.pod +40 -0
  206. data/ext/libmemcached-0.32/docs/memdump.1 +155 -0
  207. data/ext/libmemcached-0.32/docs/memdump.pod +31 -0
  208. data/ext/libmemcached-0.32/docs/memerror.1 +154 -0
  209. data/ext/libmemcached-0.32/docs/memerror.pod +30 -0
  210. data/ext/libmemcached-0.32/docs/memflush.1 +159 -0
  211. data/ext/libmemcached-0.32/docs/memflush.pod +35 -0
  212. data/ext/libmemcached-0.32/docs/memrm.1 +158 -0
  213. data/ext/libmemcached-0.32/docs/memrm.pod +34 -0
  214. data/ext/libmemcached-0.32/docs/memslap.1 +157 -0
  215. data/ext/libmemcached-0.32/docs/memslap.pod +33 -0
  216. data/ext/libmemcached-0.32/docs/memstat.1 +159 -0
  217. data/ext/libmemcached-0.32/docs/memstat.pod +35 -0
  218. data/ext/libmemcached-0.32/libmemcached/Makefile +1069 -0
  219. data/ext/libmemcached-0.32/libmemcached/Makefile.am +111 -0
  220. data/ext/libmemcached-0.32/libmemcached/Makefile.in +1069 -0
  221. data/ext/libmemcached-0.32/libmemcached/byteorder.c +31 -0
  222. data/ext/libmemcached-0.32/libmemcached/common.h +189 -0
  223. data/ext/libmemcached-0.32/libmemcached/crc.c +86 -0
  224. data/ext/libmemcached-0.32/libmemcached/hsieh_hash.c +68 -0
  225. data/ext/libmemcached-0.32/libmemcached/jenkins_hash.c +213 -0
  226. data/ext/libmemcached-0.32/libmemcached/libmemcached.la +41 -0
  227. data/ext/libmemcached-0.32/libmemcached/libmemcached.ver +1 -0
  228. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-byteorder.lo +12 -0
  229. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-byteorder.o +0 -0
  230. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-crc.lo +12 -0
  231. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-crc.o +0 -0
  232. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-jenkins_hash.lo +12 -0
  233. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-jenkins_hash.o +0 -0
  234. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-md5.lo +12 -0
  235. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-md5.o +0 -0
  236. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached.lo +12 -0
  237. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached.o +0 -0
  238. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_allocators.lo +12 -0
  239. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_allocators.o +0 -0
  240. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_analyze.lo +12 -0
  241. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_analyze.o +0 -0
  242. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_auto.lo +12 -0
  243. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_auto.o +0 -0
  244. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_behavior.lo +12 -0
  245. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_behavior.o +0 -0
  246. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_connect.lo +12 -0
  247. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_connect.o +0 -0
  248. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_delete.lo +12 -0
  249. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_delete.o +0 -0
  250. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_do.lo +12 -0
  251. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_do.o +0 -0
  252. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_dump.lo +12 -0
  253. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_dump.o +0 -0
  254. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_exist.lo +12 -0
  255. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_exist.o +0 -0
  256. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_fetch.lo +12 -0
  257. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_fetch.o +0 -0
  258. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_flush.lo +12 -0
  259. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_flush.o +0 -0
  260. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_flush_buffers.lo +12 -0
  261. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_flush_buffers.o +0 -0
  262. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_get.lo +12 -0
  263. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_get.o +0 -0
  264. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_hash.lo +12 -0
  265. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_hash.o +0 -0
  266. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_hosts.lo +12 -0
  267. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_hosts.o +0 -0
  268. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_io.lo +12 -0
  269. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_io.o +0 -0
  270. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_key.lo +12 -0
  271. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_key.o +0 -0
  272. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_parse.lo +12 -0
  273. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_parse.o +0 -0
  274. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_purge.lo +12 -0
  275. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_purge.o +0 -0
  276. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_quit.lo +12 -0
  277. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_quit.o +0 -0
  278. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_response.lo +12 -0
  279. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_response.o +0 -0
  280. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_result.lo +12 -0
  281. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_result.o +0 -0
  282. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_sasl.lo +12 -0
  283. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_sasl.o +0 -0
  284. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_server.lo +12 -0
  285. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_server.o +0 -0
  286. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_stats.lo +12 -0
  287. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_stats.o +0 -0
  288. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_storage.lo +12 -0
  289. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_storage.o +0 -0
  290. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_strerror.lo +12 -0
  291. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_strerror.o +0 -0
  292. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_string.lo +12 -0
  293. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_string.o +0 -0
  294. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_touch.lo +12 -0
  295. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_touch.o +0 -0
  296. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_verbosity.lo +12 -0
  297. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_verbosity.o +0 -0
  298. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_version.lo +12 -0
  299. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-memcached_version.o +0 -0
  300. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-murmur_hash.lo +12 -0
  301. data/ext/libmemcached-0.32/libmemcached/libmemcached_la-murmur_hash.o +0 -0
  302. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.d +30 -0
  303. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.h +82 -0
  304. data/ext/libmemcached-0.32/libmemcached/libmemcachedcallbacks.la +41 -0
  305. data/ext/libmemcached-0.32/libmemcached/libmemcachedcallbacks_la-memcached_callback.lo +12 -0
  306. data/ext/libmemcached-0.32/libmemcached/libmemcachedcallbacks_la-memcached_callback.o +0 -0
  307. data/ext/libmemcached-0.32/libmemcached/md5.c +354 -0
  308. data/ext/libmemcached-0.32/libmemcached/memcached.c +152 -0
  309. data/ext/libmemcached-0.32/libmemcached/memcached.h +304 -0
  310. data/ext/libmemcached-0.32/libmemcached/memcached.hpp +799 -0
  311. data/ext/libmemcached-0.32/libmemcached/memcached/README.txt +7 -0
  312. data/ext/libmemcached-0.32/libmemcached/memcached/protocol_binary.h +385 -0
  313. data/ext/libmemcached-0.32/libmemcached/memcached_allocators.c +72 -0
  314. data/ext/libmemcached-0.32/libmemcached/memcached_analyze.c +100 -0
  315. data/ext/libmemcached-0.32/libmemcached/memcached_auto.c +207 -0
  316. data/ext/libmemcached-0.32/libmemcached/memcached_behavior.c +285 -0
  317. data/ext/libmemcached-0.32/libmemcached/memcached_callback.c +175 -0
  318. data/ext/libmemcached-0.32/libmemcached/memcached_configure.h +23 -0
  319. data/ext/libmemcached-0.32/libmemcached/memcached_configure.h.in +23 -0
  320. data/ext/libmemcached-0.32/libmemcached/memcached_connect.c +371 -0
  321. data/ext/libmemcached-0.32/libmemcached/memcached_constants.h +145 -0
  322. data/ext/libmemcached-0.32/libmemcached/memcached_delete.c +0 -0
  323. data/ext/libmemcached-0.32/libmemcached/memcached_do.c +70 -0
  324. data/ext/libmemcached-0.32/libmemcached/memcached_dump.c +79 -0
  325. data/ext/libmemcached-0.32/libmemcached/memcached_exist.c +114 -0
  326. data/ext/libmemcached-0.32/libmemcached/memcached_exist.h +20 -0
  327. data/ext/libmemcached-0.32/libmemcached/memcached_fetch.c +102 -0
  328. data/ext/libmemcached-0.32/libmemcached/memcached_flush.c +89 -0
  329. data/ext/libmemcached-0.32/libmemcached/memcached_flush_buffers.c +22 -0
  330. data/ext/libmemcached-0.32/libmemcached/memcached_get.c +494 -0
  331. data/ext/libmemcached-0.32/libmemcached/memcached_get.h +87 -0
  332. data/ext/libmemcached-0.32/libmemcached/memcached_hash.c +252 -0
  333. data/ext/libmemcached-0.32/libmemcached/memcached_hosts.c +510 -0
  334. data/ext/libmemcached-0.32/libmemcached/memcached_internal.h +31 -0
  335. data/ext/libmemcached-0.32/libmemcached/memcached_io.c +575 -0
  336. data/ext/libmemcached-0.32/libmemcached/memcached_io.h +72 -0
  337. data/ext/libmemcached-0.32/libmemcached/memcached_key.c +28 -0
  338. data/ext/libmemcached-0.32/libmemcached/memcached_parse.c +74 -0
  339. data/ext/libmemcached-0.32/libmemcached/memcached_pool.h +38 -0
  340. data/ext/libmemcached-0.32/libmemcached/memcached_purge.c +76 -0
  341. data/ext/libmemcached-0.32/libmemcached/memcached_quit.c +75 -0
  342. data/ext/libmemcached-0.32/libmemcached/memcached_response.c +529 -0
  343. data/ext/libmemcached-0.32/libmemcached/memcached_result.c +57 -0
  344. data/ext/libmemcached-0.32/libmemcached/memcached_result.h +59 -0
  345. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.c +225 -0
  346. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.h +44 -0
  347. data/ext/libmemcached-0.32/libmemcached/memcached_server.c +159 -0
  348. data/ext/libmemcached-0.32/libmemcached/memcached_server.h +93 -0
  349. data/ext/libmemcached-0.32/libmemcached/memcached_stats.c +437 -0
  350. data/ext/libmemcached-0.32/libmemcached/memcached_storage.c +515 -0
  351. data/ext/libmemcached-0.32/libmemcached/memcached_storage.h +107 -0
  352. data/ext/libmemcached-0.32/libmemcached/memcached_strerror.c +92 -0
  353. data/ext/libmemcached-0.32/libmemcached/memcached_string.c +138 -0
  354. data/ext/libmemcached-0.32/libmemcached/memcached_string.h +53 -0
  355. data/ext/libmemcached-0.32/libmemcached/memcached_touch.c +60 -0
  356. data/ext/libmemcached-0.32/libmemcached/memcached_touch.h +31 -0
  357. data/ext/libmemcached-0.32/libmemcached/memcached_types.h +44 -0
  358. data/ext/libmemcached-0.32/libmemcached/memcached_util.h +15 -0
  359. data/ext/libmemcached-0.32/libmemcached/memcached_verbosity.c +36 -0
  360. data/ext/libmemcached-0.32/libmemcached/memcached_version.c +112 -0
  361. data/ext/libmemcached-0.32/libmemcached/memcached_watchpoint.h +38 -0
  362. data/ext/libmemcached-0.32/libmemcached/murmur_hash.c +76 -0
  363. data/ext/libmemcached-0.32/libmemcached/visibility.h +51 -0
  364. data/ext/libmemcached-0.32/libmemcachedutil/Makefile +604 -0
  365. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.am +11 -0
  366. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.in +604 -0
  367. data/ext/libmemcached-0.32/libmemcachedutil/libmemcachedutil.ver +1 -0
  368. data/ext/libmemcached-0.32/libmemcachedutil/memcached_pool.c +170 -0
  369. data/ext/libmemcached-0.32/libtool +10223 -0
  370. data/ext/libmemcached-0.32/m4/ac_cxx_compile_stdcxx_0x.m4 +103 -0
  371. data/ext/libmemcached-0.32/m4/ac_cxx_header_stdcxx_98.m4 +67 -0
  372. data/ext/libmemcached-0.32/m4/acx_pthread.m4 +276 -0
  373. data/ext/libmemcached-0.32/m4/byteorder.m4 +40 -0
  374. data/ext/libmemcached-0.32/m4/deprecated.m4 +17 -0
  375. data/ext/libmemcached-0.32/m4/enable_utillib.m4 +16 -0
  376. data/ext/libmemcached-0.32/m4/extensions.m4 +94 -0
  377. data/ext/libmemcached-0.32/m4/hsieh.m4 +18 -0
  378. data/ext/libmemcached-0.32/m4/lib-prefix.m4 +221 -0
  379. data/ext/libmemcached-0.32/m4/libtool.m4 +7831 -0
  380. data/ext/libmemcached-0.32/m4/ltoptions.m4 +369 -0
  381. data/ext/libmemcached-0.32/m4/ltsugar.m4 +123 -0
  382. data/ext/libmemcached-0.32/m4/ltversion.m4 +23 -0
  383. data/ext/libmemcached-0.32/m4/lt~obsolete.m4 +98 -0
  384. data/ext/libmemcached-0.32/m4/memcached.m4 +30 -0
  385. data/ext/libmemcached-0.32/m4/pandora_64bit.m4 +55 -0
  386. data/ext/libmemcached-0.32/m4/pandora_canonical.m4 +151 -0
  387. data/ext/libmemcached-0.32/m4/pandora_check_compiler_version.m4 +37 -0
  388. data/ext/libmemcached-0.32/m4/pandora_check_cxx_standard.m4 +16 -0
  389. data/ext/libmemcached-0.32/m4/pandora_enable_dtrace.m4 +41 -0
  390. data/ext/libmemcached-0.32/m4/pandora_ensure_gcc_version.m4 +36 -0
  391. data/ext/libmemcached-0.32/m4/pandora_have_better_malloc.m4 +54 -0
  392. data/ext/libmemcached-0.32/m4/pandora_have_sasl.m4 +133 -0
  393. data/ext/libmemcached-0.32/m4/pandora_header_assert.m4 +23 -0
  394. data/ext/libmemcached-0.32/m4/pandora_libtool.m4 +15 -0
  395. data/ext/libmemcached-0.32/m4/pandora_optimize.m4 +79 -0
  396. data/ext/libmemcached-0.32/m4/pandora_shared_ptr.m4 +56 -0
  397. data/ext/libmemcached-0.32/m4/pandora_vc_build.m4 +32 -0
  398. data/ext/libmemcached-0.32/m4/pandora_warnings.m4 +262 -0
  399. data/ext/libmemcached-0.32/m4/pod2man.m4 +7 -0
  400. data/ext/libmemcached-0.32/m4/protocol_binary.m4 +23 -0
  401. data/ext/libmemcached-0.32/m4/setsockopt.m4 +57 -0
  402. data/ext/libmemcached-0.32/m4/visibility.m4 +52 -0
  403. data/ext/libmemcached-0.32/stamp-h1 +1 -0
  404. data/ext/libmemcached-0.32/support/Makefile +487 -0
  405. data/ext/libmemcached-0.32/support/Makefile.am +4 -0
  406. data/ext/libmemcached-0.32/support/Makefile.in +487 -0
  407. data/ext/libmemcached-0.32/support/libmemcached-fc.spec +105 -0
  408. data/ext/libmemcached-0.32/support/libmemcached-fc.spec.in +105 -0
  409. data/ext/libmemcached-0.32/support/libmemcached.pc +10 -0
  410. data/ext/libmemcached-0.32/support/libmemcached.pc.in +10 -0
  411. data/ext/libmemcached-0.32/support/libmemcached.spec +105 -0
  412. data/ext/libmemcached-0.32/support/libmemcached.spec.in +105 -0
  413. data/ext/libmemcached-0.32/support/set_benchmark.sh +5 -0
  414. data/ext/libmemcached-0.32/tests/Makefile +762 -0
  415. data/ext/libmemcached-0.32/tests/Makefile.am +113 -0
  416. data/ext/libmemcached-0.32/tests/Makefile.in +762 -0
  417. data/ext/libmemcached-0.32/tests/atomsmasher +0 -0
  418. data/ext/libmemcached-0.32/tests/atomsmasher.c +245 -0
  419. data/ext/libmemcached-0.32/tests/atomsmasher.o +0 -0
  420. data/ext/libmemcached-0.32/tests/function.c +4893 -0
  421. data/ext/libmemcached-0.32/tests/ketama_test_cases.h +108 -0
  422. data/ext/libmemcached-0.32/tests/libserver.la +41 -0
  423. data/ext/libmemcached-0.32/tests/libtest.la +41 -0
  424. data/ext/libmemcached-0.32/tests/output.cmp +7 -0
  425. data/ext/libmemcached-0.32/tests/output.res +7 -0
  426. data/ext/libmemcached-0.32/tests/output2.res +46 -0
  427. data/ext/libmemcached-0.32/tests/plus.cpp +293 -0
  428. data/ext/libmemcached-0.32/tests/plus.o +0 -0
  429. data/ext/libmemcached-0.32/tests/r/memcat.res +19 -0
  430. data/ext/libmemcached-0.32/tests/r/memcp.res +27 -0
  431. data/ext/libmemcached-0.32/tests/r/memrm.res +19 -0
  432. data/ext/libmemcached-0.32/tests/r/memslap.res +33 -0
  433. data/ext/libmemcached-0.32/tests/r/memstat.res +33 -0
  434. data/ext/libmemcached-0.32/tests/server.c +118 -0
  435. data/ext/libmemcached-0.32/tests/server.h +25 -0
  436. data/ext/libmemcached-0.32/tests/server.lo +12 -0
  437. data/ext/libmemcached-0.32/tests/server.o +0 -0
  438. data/ext/libmemcached-0.32/tests/start.c +16 -0
  439. data/ext/libmemcached-0.32/tests/start.o +0 -0
  440. data/ext/libmemcached-0.32/tests/startservers +0 -0
  441. data/ext/libmemcached-0.32/tests/t/memcat.test +4 -0
  442. data/ext/libmemcached-0.32/tests/t/memcp.test +3 -0
  443. data/ext/libmemcached-0.32/tests/t/memrm.test +3 -0
  444. data/ext/libmemcached-0.32/tests/t/memslap.test +5 -0
  445. data/ext/libmemcached-0.32/tests/t/memstat.test +3 -0
  446. data/ext/libmemcached-0.32/tests/test.c +137 -0
  447. data/ext/libmemcached-0.32/tests/test.h +46 -0
  448. data/ext/libmemcached-0.32/tests/test.lo +12 -0
  449. data/ext/libmemcached-0.32/tests/test.o +0 -0
  450. data/ext/libmemcached-0.32/tests/testapp +0 -0
  451. data/ext/libmemcached-0.32/tests/testapp-function.o +0 -0
  452. data/ext/libmemcached-0.32/tests/testplus +0 -0
  453. data/ext/libmemcached-0.32/tests/udp.c +76 -0
  454. data/ext/libmemcached-0.32/tests/udp.o +0 -0
  455. data/ext/libmemcached-0.32/tests/udptest +0 -0
  456. data/ext/rlibmemcached.bundle +0 -0
  457. data/ext/rlibmemcached.i +249 -0
  458. data/ext/rlibmemcached_wrap.c +13781 -0
  459. data/ext/rlibmemcached_wrap.o +0 -0
  460. data/ext/share/man/man1/memcat.1 +161 -0
  461. data/ext/share/man/man1/memcp.1 +164 -0
  462. data/ext/share/man/man1/memdump.1 +155 -0
  463. data/ext/share/man/man1/memerror.1 +154 -0
  464. data/ext/share/man/man1/memflush.1 +159 -0
  465. data/ext/share/man/man1/memrm.1 +158 -0
  466. data/ext/share/man/man1/memslap.1 +157 -0
  467. data/ext/share/man/man1/memstat.1 +159 -0
  468. data/ext/share/man/man3/libmemcached.3 +229 -0
  469. data/ext/share/man/man3/libmemcached_examples.3 +242 -0
  470. data/ext/share/man/man3/memcached_add.3 +308 -0
  471. data/ext/share/man/man3/memcached_add_by_key.3 +308 -0
  472. data/ext/share/man/man3/memcached_analyze.3 +175 -0
  473. data/ext/share/man/man3/memcached_append.3 +308 -0
  474. data/ext/share/man/man3/memcached_append_by_key.3 +308 -0
  475. data/ext/share/man/man3/memcached_behavior_get.3 +317 -0
  476. data/ext/share/man/man3/memcached_behavior_set.3 +317 -0
  477. data/ext/share/man/man3/memcached_callback_get.3 +231 -0
  478. data/ext/share/man/man3/memcached_callback_set.3 +231 -0
  479. data/ext/share/man/man3/memcached_cas.3 +308 -0
  480. data/ext/share/man/man3/memcached_cas_by_key.3 +308 -0
  481. data/ext/share/man/man3/memcached_clone.3 +183 -0
  482. data/ext/share/man/man3/memcached_create.3 +183 -0
  483. data/ext/share/man/man3/memcached_decrement.3 +219 -0
  484. data/ext/share/man/man3/memcached_decrement_with_initial.3 +219 -0
  485. data/ext/share/man/man3/memcached_delete.3 +176 -0
  486. data/ext/share/man/man3/memcached_delete_by_key.3 +176 -0
  487. data/ext/share/man/man3/memcached_destroy_sasl_auth_data.3 +184 -0
  488. data/ext/share/man/man3/memcached_dump.3 +175 -0
  489. data/ext/share/man/man3/memcached_fetch.3 +283 -0
  490. data/ext/share/man/man3/memcached_fetch_execute.3 +283 -0
  491. data/ext/share/man/man3/memcached_fetch_result.3 +283 -0
  492. data/ext/share/man/man3/memcached_flush_buffers.3 +164 -0
  493. data/ext/share/man/man3/memcached_free.3 +183 -0
  494. data/ext/share/man/man3/memcached_generate_hash_value.3 +179 -0
  495. data/ext/share/man/man3/memcached_get.3 +283 -0
  496. data/ext/share/man/man3/memcached_get_by_key.3 +283 -0
  497. data/ext/share/man/man3/memcached_get_memory_allocators.3 +194 -0
  498. data/ext/share/man/man3/memcached_get_sasl_callbacks.3 +184 -0
  499. data/ext/share/man/man3/memcached_get_user_data.3 +171 -0
  500. data/ext/share/man/man3/memcached_increment.3 +219 -0
  501. data/ext/share/man/man3/memcached_increment_with_initial.3 +219 -0
  502. data/ext/share/man/man3/memcached_lib_version.3 +176 -0
  503. data/ext/share/man/man3/memcached_mget.3 +283 -0
  504. data/ext/share/man/man3/memcached_mget_by_key.3 +283 -0
  505. data/ext/share/man/man3/memcached_prepend.3 +308 -0
  506. data/ext/share/man/man3/memcached_prepend_by_key.3 +308 -0
  507. data/ext/share/man/man3/memcached_quit.3 +169 -0
  508. data/ext/share/man/man3/memcached_replace.3 +308 -0
  509. data/ext/share/man/man3/memcached_replace_by_key.3 +308 -0
  510. data/ext/share/man/man3/memcached_server_add.3 +224 -0
  511. data/ext/share/man/man3/memcached_server_count.3 +224 -0
  512. data/ext/share/man/man3/memcached_server_list.3 +224 -0
  513. data/ext/share/man/man3/memcached_server_list_append.3 +196 -0
  514. data/ext/share/man/man3/memcached_server_list_count.3 +196 -0
  515. data/ext/share/man/man3/memcached_server_list_free.3 +196 -0
  516. data/ext/share/man/man3/memcached_server_push.3 +224 -0
  517. data/ext/share/man/man3/memcached_servers_parse.3 +196 -0
  518. data/ext/share/man/man3/memcached_set.3 +308 -0
  519. data/ext/share/man/man3/memcached_set_by_key.3 +308 -0
  520. data/ext/share/man/man3/memcached_set_memory_allocators.3 +194 -0
  521. data/ext/share/man/man3/memcached_set_sasl_auth_data.3 +184 -0
  522. data/ext/share/man/man3/memcached_set_sasl_callbacks.3 +184 -0
  523. data/ext/share/man/man3/memcached_set_user_data.3 +171 -0
  524. data/ext/share/man/man3/memcached_stat.3 +204 -0
  525. data/ext/share/man/man3/memcached_stat_get_keys.3 +204 -0
  526. data/ext/share/man/man3/memcached_stat_get_value.3 +204 -0
  527. data/ext/share/man/man3/memcached_stat_servername.3 +204 -0
  528. data/ext/share/man/man3/memcached_strerror.3 +168 -0
  529. data/ext/share/man/man3/memcached_verbosity.3 +163 -0
  530. data/ext/share/man/man3/memcached_version.3 +176 -0
  531. data/lib/memcached.rb +32 -0
  532. data/lib/memcached/behaviors.rb +77 -0
  533. data/lib/memcached/exceptions.rb +84 -0
  534. data/lib/memcached/experimental.rb +48 -0
  535. data/lib/memcached/memcached.rb +683 -0
  536. data/lib/memcached/rails.rb +200 -0
  537. data/test/test_helper.rb +19 -0
  538. data/test/unit/binding_test.rb +8 -0
  539. data/test/unit/memcached_experimental_test.rb +274 -0
  540. data/test/unit/memcached_test.rb +1340 -0
  541. data/test/unit/rails_test.rb +282 -0
  542. metadata +658 -0
@@ -0,0 +1,2440 @@
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 libmemcached configure 0.32, which was
5
+ generated by GNU Autoconf 2.68. Invocation command line was
6
+
7
+ $ ./configure --prefix=/Users/tom/Code/Ruby/memcached/ext --without-memcached --disable-shared --disable-utils --disable-dependency-tracking CC=/usr/bin/gcc-4.2
8
+
9
+ ## --------- ##
10
+ ## Platform. ##
11
+ ## --------- ##
12
+
13
+ hostname = Thomass-MacBook-Pro.local
14
+ uname -m = x86_64
15
+ uname -r = 11.4.0
16
+ uname -s = Darwin
17
+ uname -v = Darwin Kernel Version 11.4.0: Mon Apr 9 19:32:15 PDT 2012; root:xnu-1699.26.8~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.0: Mon Apr 9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
27
+ Kernel configured for up to 8 processors.
28
+ 4 processors are physically available.
29
+ 8 processors are logically available.
30
+ Processor type: i486 (Intel 80486)
31
+ Processors active: 0 1 2 3 4 5 6 7
32
+ Primary memory available: 8.00 gigabytes
33
+ Default processor set: 154 tasks, 745 threads, 8 processors
34
+ Load average: 5.07, Mach factor: 3.79
35
+ /bin/machine = unknown
36
+ /usr/bin/oslevel = unknown
37
+ /bin/universe = unknown
38
+
39
+ PATH: /Users/tom/.rbenv/versions/1.9.3-p125-perf/bin
40
+ PATH: /Users/tom/.rbenv/libexec
41
+ PATH: /usr/local/bin
42
+ PATH: ~/bin
43
+ PATH: ~/bin/rds-bin/bin
44
+ PATH: /usr/local/mysql/bin
45
+ PATH: /Users/tom/.rbenv/shims
46
+ PATH: /Users/tom/.rbenv/bin
47
+ PATH: /usr/bin
48
+ PATH: /bin
49
+ PATH: /usr/sbin
50
+ PATH: /sbin
51
+ PATH: /usr/local/bin
52
+ PATH: /opt/X11/bin
53
+ PATH: /usr/X11/bin
54
+ PATH: /usr/local/go/bin
55
+ PATH: ~/bin
56
+ PATH: ~/bin/rds-bin/bin
57
+ PATH: /usr/local/mysql/bin
58
+ PATH: /Users/tom/.rbenv/shims
59
+ PATH: /Users/tom/.rbenv/bin
60
+
61
+
62
+ ## ----------- ##
63
+ ## Core tests. ##
64
+ ## ----------- ##
65
+
66
+ configure:2655: checking build system type
67
+ configure:2669: result: i386-apple-darwin11.4.0
68
+ configure:2689: checking host system type
69
+ configure:2702: result: i386-apple-darwin11.4.0
70
+ configure:2722: checking target system type
71
+ configure:2735: result: i386-apple-darwin11.4.0
72
+ configure:2777: checking for a BSD-compatible install
73
+ configure:2845: result: /usr/bin/install -c
74
+ configure:2856: checking whether build environment is sane
75
+ configure:2906: result: yes
76
+ configure:3047: checking for a thread-safe mkdir -p
77
+ configure:3086: result: config/install-sh -c -d
78
+ configure:3099: checking for gawk
79
+ configure:3129: result: no
80
+ configure:3099: checking for mawk
81
+ configure:3129: result: no
82
+ configure:3099: checking for nawk
83
+ configure:3129: result: no
84
+ configure:3099: checking for awk
85
+ configure:3115: found /usr/bin/awk
86
+ configure:3126: result: awk
87
+ configure:3137: checking whether make sets $(MAKE)
88
+ configure:3159: result: yes
89
+ configure:3189: checking for style of include used by make
90
+ configure:3217: result: GNU
91
+ configure:3287: checking for gcc
92
+ configure:3314: result: /usr/bin/gcc-4.2
93
+ configure:3543: checking for C compiler version
94
+ configure:3552: /usr/bin/gcc-4.2 --version >&5
95
+ i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)
96
+ Copyright (C) 2007 Free Software Foundation, Inc.
97
+ This is free software; see the source for copying conditions. There is NO
98
+ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
99
+
100
+ configure:3563: $? = 0
101
+ configure:3552: /usr/bin/gcc-4.2 -v >&5
102
+ Using built-in specs.
103
+ Target: i686-apple-darwin11
104
+ Configured with: /private/var/tmp/gcc/gcc-5666.3~278/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/include/c++/4.2.1
105
+ Thread model: posix
106
+ gcc version 4.2.1 (Apple Inc. build 5666) (dot 3)
107
+ configure:3563: $? = 0
108
+ configure:3552: /usr/bin/gcc-4.2 -V >&5
109
+ gcc-4.2: argument to `-V' is missing
110
+ configure:3563: $? = 1
111
+ configure:3552: /usr/bin/gcc-4.2 -qversion >&5
112
+ i686-apple-darwin11-gcc-4.2.1: no input files
113
+ configure:3563: $? = 1
114
+ configure:3583: checking whether the C compiler works
115
+ configure:3605: /usr/bin/gcc-4.2 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c >&5
116
+ configure:3609: $? = 0
117
+ configure:3657: result: yes
118
+ configure:3660: checking for C compiler default output file name
119
+ configure:3662: result: a.out
120
+ configure:3668: checking for suffix of executables
121
+ configure:3675: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c >&5
122
+ configure:3679: $? = 0
123
+ configure:3701: result:
124
+ configure:3723: checking whether we are cross compiling
125
+ configure:3731: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c >&5
126
+ configure:3735: $? = 0
127
+ configure:3742: ./conftest
128
+ configure:3746: $? = 0
129
+ configure:3761: result: no
130
+ configure:3766: checking for suffix of object files
131
+ configure:3788: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
132
+ configure:3792: $? = 0
133
+ configure:3813: result: o
134
+ configure:3817: checking whether we are using the GNU C compiler
135
+ configure:3836: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
136
+ configure:3836: $? = 0
137
+ configure:3845: result: yes
138
+ configure:3854: checking whether /usr/bin/gcc-4.2 accepts -g
139
+ configure:3874: /usr/bin/gcc-4.2 -c -g conftest.c >&5
140
+ configure:3874: $? = 0
141
+ configure:3915: result: yes
142
+ configure:3932: checking for /usr/bin/gcc-4.2 option to accept ISO C89
143
+ configure:3996: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
144
+ configure:3996: $? = 0
145
+ configure:4009: result: none needed
146
+ configure:4031: checking dependency style of /usr/bin/gcc-4.2
147
+ configure:4141: result: none
148
+ configure:4188: checking for isainfo
149
+ configure:4218: result: no
150
+ configure:4273: checking whether /usr/bin/gcc-4.2 and cc understand -c and -o together
151
+ configure:4304: /usr/bin/gcc-4.2 -c conftest.c -o conftest2.o >&5
152
+ configure:4308: $? = 0
153
+ configure:4314: /usr/bin/gcc-4.2 -c conftest.c -o conftest2.o >&5
154
+ configure:4318: $? = 0
155
+ configure:4329: cc -c conftest.c >&5
156
+ configure:4333: $? = 0
157
+ configure:4341: cc -c conftest.c -o conftest2.o >&5
158
+ configure:4345: $? = 0
159
+ configure:4351: cc -c conftest.c -o conftest2.o >&5
160
+ configure:4355: $? = 0
161
+ configure:4373: result: yes
162
+ configure:4389: checking how to run the C preprocessor
163
+ configure:4420: /usr/bin/gcc-4.2 -E conftest.c
164
+ configure:4420: $? = 0
165
+ configure:4434: /usr/bin/gcc-4.2 -E conftest.c
166
+ conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
167
+ configure:4434: $? = 1
168
+ configure: failed program was:
169
+ | /* confdefs.h */
170
+ | #define PACKAGE_NAME "libmemcached"
171
+ | #define PACKAGE_TARNAME "libmemcached"
172
+ | #define PACKAGE_VERSION "0.32"
173
+ | #define PACKAGE_STRING "libmemcached 0.32"
174
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
175
+ | #define PACKAGE_URL ""
176
+ | /* end confdefs.h. */
177
+ | #include <ac_nonexistent.h>
178
+ configure:4459: result: /usr/bin/gcc-4.2 -E
179
+ configure:4479: /usr/bin/gcc-4.2 -E conftest.c
180
+ configure:4479: $? = 0
181
+ configure:4493: /usr/bin/gcc-4.2 -E conftest.c
182
+ conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
183
+ configure:4493: $? = 1
184
+ configure: failed program was:
185
+ | /* confdefs.h */
186
+ | #define PACKAGE_NAME "libmemcached"
187
+ | #define PACKAGE_TARNAME "libmemcached"
188
+ | #define PACKAGE_VERSION "0.32"
189
+ | #define PACKAGE_STRING "libmemcached 0.32"
190
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
191
+ | #define PACKAGE_URL ""
192
+ | /* end confdefs.h. */
193
+ | #include <ac_nonexistent.h>
194
+ configure:4522: checking for grep that handles long lines and -e
195
+ configure:4580: result: /usr/bin/grep
196
+ configure:4585: checking for egrep
197
+ configure:4647: result: /usr/bin/grep -E
198
+ configure:4652: checking for ANSI C header files
199
+ configure:4672: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
200
+ configure:4672: $? = 0
201
+ configure:4745: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c >&5
202
+ configure:4745: $? = 0
203
+ configure:4745: ./conftest
204
+ configure:4745: $? = 0
205
+ configure:4756: result: yes
206
+ configure:4769: checking for sys/types.h
207
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
208
+ configure:4769: $? = 0
209
+ configure:4769: result: yes
210
+ configure:4769: checking for sys/stat.h
211
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
212
+ configure:4769: $? = 0
213
+ configure:4769: result: yes
214
+ configure:4769: checking for stdlib.h
215
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
216
+ configure:4769: $? = 0
217
+ configure:4769: result: yes
218
+ configure:4769: checking for string.h
219
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
220
+ configure:4769: $? = 0
221
+ configure:4769: result: yes
222
+ configure:4769: checking for memory.h
223
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
224
+ configure:4769: $? = 0
225
+ configure:4769: result: yes
226
+ configure:4769: checking for strings.h
227
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
228
+ configure:4769: $? = 0
229
+ configure:4769: result: yes
230
+ configure:4769: checking for inttypes.h
231
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
232
+ configure:4769: $? = 0
233
+ configure:4769: result: yes
234
+ configure:4769: checking for stdint.h
235
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
236
+ configure:4769: $? = 0
237
+ configure:4769: result: yes
238
+ configure:4769: checking for unistd.h
239
+ configure:4769: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
240
+ configure:4769: $? = 0
241
+ configure:4769: result: yes
242
+ configure:4784: checking minix/config.h usability
243
+ configure:4784: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
244
+ conftest.c:52:26: error: minix/config.h: No such file or directory
245
+ configure:4784: $? = 1
246
+ configure: failed program was:
247
+ | /* confdefs.h */
248
+ | #define PACKAGE_NAME "libmemcached"
249
+ | #define PACKAGE_TARNAME "libmemcached"
250
+ | #define PACKAGE_VERSION "0.32"
251
+ | #define PACKAGE_STRING "libmemcached 0.32"
252
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
253
+ | #define PACKAGE_URL ""
254
+ | #define STDC_HEADERS 1
255
+ | #define HAVE_SYS_TYPES_H 1
256
+ | #define HAVE_SYS_STAT_H 1
257
+ | #define HAVE_STDLIB_H 1
258
+ | #define HAVE_STRING_H 1
259
+ | #define HAVE_MEMORY_H 1
260
+ | #define HAVE_STRINGS_H 1
261
+ | #define HAVE_INTTYPES_H 1
262
+ | #define HAVE_STDINT_H 1
263
+ | #define HAVE_UNISTD_H 1
264
+ | /* end confdefs.h. */
265
+ | #include <stdio.h>
266
+ | #ifdef HAVE_SYS_TYPES_H
267
+ | # include <sys/types.h>
268
+ | #endif
269
+ | #ifdef HAVE_SYS_STAT_H
270
+ | # include <sys/stat.h>
271
+ | #endif
272
+ | #ifdef STDC_HEADERS
273
+ | # include <stdlib.h>
274
+ | # include <stddef.h>
275
+ | #else
276
+ | # ifdef HAVE_STDLIB_H
277
+ | # include <stdlib.h>
278
+ | # endif
279
+ | #endif
280
+ | #ifdef HAVE_STRING_H
281
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
282
+ | # include <memory.h>
283
+ | # endif
284
+ | # include <string.h>
285
+ | #endif
286
+ | #ifdef HAVE_STRINGS_H
287
+ | # include <strings.h>
288
+ | #endif
289
+ | #ifdef HAVE_INTTYPES_H
290
+ | # include <inttypes.h>
291
+ | #endif
292
+ | #ifdef HAVE_STDINT_H
293
+ | # include <stdint.h>
294
+ | #endif
295
+ | #ifdef HAVE_UNISTD_H
296
+ | # include <unistd.h>
297
+ | #endif
298
+ | #include <minix/config.h>
299
+ configure:4784: result: no
300
+ configure:4784: checking minix/config.h presence
301
+ configure:4784: /usr/bin/gcc-4.2 -E conftest.c
302
+ conftest.c:19:26: error: minix/config.h: No such file or directory
303
+ configure:4784: $? = 1
304
+ configure: failed program was:
305
+ | /* confdefs.h */
306
+ | #define PACKAGE_NAME "libmemcached"
307
+ | #define PACKAGE_TARNAME "libmemcached"
308
+ | #define PACKAGE_VERSION "0.32"
309
+ | #define PACKAGE_STRING "libmemcached 0.32"
310
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
311
+ | #define PACKAGE_URL ""
312
+ | #define STDC_HEADERS 1
313
+ | #define HAVE_SYS_TYPES_H 1
314
+ | #define HAVE_SYS_STAT_H 1
315
+ | #define HAVE_STDLIB_H 1
316
+ | #define HAVE_STRING_H 1
317
+ | #define HAVE_MEMORY_H 1
318
+ | #define HAVE_STRINGS_H 1
319
+ | #define HAVE_INTTYPES_H 1
320
+ | #define HAVE_STDINT_H 1
321
+ | #define HAVE_UNISTD_H 1
322
+ | /* end confdefs.h. */
323
+ | #include <minix/config.h>
324
+ configure:4784: result: no
325
+ configure:4784: checking for minix/config.h
326
+ configure:4784: result: no
327
+ configure:4813: checking whether it is safe to define __EXTENSIONS__
328
+ configure:4831: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
329
+ configure:4831: $? = 0
330
+ configure:4838: result: yes
331
+ configure:4898: checking how to print strings
332
+ configure:4925: result: printf
333
+ configure:4946: checking for a sed that does not truncate output
334
+ configure:5010: result: /usr/bin/sed
335
+ configure:5028: checking for fgrep
336
+ configure:5090: result: /usr/bin/grep -F
337
+ configure:5125: checking for ld used by /usr/bin/gcc-4.2
338
+ configure:5192: result: /usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
339
+ configure:5199: checking if the linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
340
+ configure:5214: result: no
341
+ configure:5226: checking for BSD- or MS-compatible name lister (nm)
342
+ configure:5275: result: /usr/bin/nm
343
+ configure:5405: checking the name lister (/usr/bin/nm) interface
344
+ configure:5412: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
345
+ configure:5415: /usr/bin/nm "conftest.o"
346
+ configure:5418: output
347
+ 0000000000000198 D _some_variable
348
+ configure:5425: result: BSD nm
349
+ configure:5428: checking whether ln -s works
350
+ configure:5432: result: yes
351
+ configure:5440: checking the maximum length of command line arguments
352
+ configure:5565: result: 196608
353
+ configure:5582: checking whether the shell understands some XSI constructs
354
+ configure:5592: result: yes
355
+ configure:5596: checking whether the shell understands "+="
356
+ configure:5602: result: yes
357
+ configure:5637: checking how to convert i386-apple-darwin11.4.0 file names to i386-apple-darwin11.4.0 format
358
+ configure:5677: result: func_convert_file_noop
359
+ configure:5684: checking how to convert i386-apple-darwin11.4.0 file names to toolchain format
360
+ configure:5704: result: func_convert_file_noop
361
+ configure:5711: checking for /usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld option to reload object files
362
+ configure:5718: result: -r
363
+ configure:5792: checking for objdump
364
+ configure:5822: result: no
365
+ configure:5851: checking how to recognize dependent libraries
366
+ configure:6053: result: pass_all
367
+ configure:6138: checking for dlltool
368
+ configure:6168: result: no
369
+ configure:6198: checking how to associate runtime and link libraries
370
+ configure:6225: result: printf %s\n
371
+ configure:6285: checking for ar
372
+ configure:6301: found /usr/bin/ar
373
+ configure:6312: result: ar
374
+ configure:6349: checking for archiver @FILE support
375
+ configure:6366: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
376
+ configure:6366: $? = 0
377
+ configure:6369: ar cru libconftest.a @conftest.lst >&5
378
+ ar: @conftest.lst: No such file or directory
379
+ configure:6372: $? = 1
380
+ configure:6392: result: no
381
+ configure:6450: checking for strip
382
+ configure:6466: found /usr/bin/strip
383
+ configure:6477: result: strip
384
+ configure:6549: checking for ranlib
385
+ configure:6565: found /usr/bin/ranlib
386
+ configure:6576: result: ranlib
387
+ configure:6678: checking command to parse /usr/bin/nm output from /usr/bin/gcc-4.2 object
388
+ configure:6797: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
389
+ configure:6800: $? = 0
390
+ configure:6804: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
391
+ configure:6807: $? = 0
392
+ cannot find nm_test_var in conftest.nm
393
+ configure:6797: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
394
+ configure:6800: $? = 0
395
+ configure:6804: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
396
+ configure:6807: $? = 0
397
+ configure:6873: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c conftstm.o >&5
398
+ configure:6876: $? = 0
399
+ configure:6914: result: ok
400
+ configure:6951: checking for sysroot
401
+ configure:6981: result: no
402
+ configure:7224: checking for mt
403
+ configure:7254: result: no
404
+ configure:7274: checking if : is a manifest tool
405
+ configure:7280: : '-?'
406
+ configure:7288: result: no
407
+ configure:7344: checking for dsymutil
408
+ configure:7360: found /usr/bin/dsymutil
409
+ configure:7371: result: dsymutil
410
+ configure:7436: checking for nmedit
411
+ configure:7452: found /usr/bin/nmedit
412
+ configure:7463: result: nmedit
413
+ configure:7528: checking for lipo
414
+ configure:7544: found /usr/bin/lipo
415
+ configure:7555: result: lipo
416
+ configure:7620: checking for otool
417
+ configure:7636: found /usr/bin/otool
418
+ configure:7647: result: otool
419
+ configure:7712: checking for otool64
420
+ configure:7742: result: no
421
+ configure:7787: checking for -single_module linker flag
422
+ /usr/bin/gcc-4.2 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -o libconftest.dylib -dynamiclib -Wl,-single_module conftest.c
423
+ configure:7814: result: yes
424
+ configure:7816: checking for -exported_symbols_list linker flag
425
+ configure:7836: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -Wl,-exported_symbols_list,conftest.sym conftest.c >&5
426
+ configure:7836: $? = 0
427
+ configure:7846: result: yes
428
+ configure:7848: checking for -force_load linker flag
429
+ /usr/bin/gcc-4.2 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -c -o conftest.o conftest.c
430
+ ar cru libconftest.a conftest.o
431
+ ranlib libconftest.a
432
+ /usr/bin/gcc-4.2 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -o conftest conftest.c -Wl,-force_load,./libconftest.a
433
+ configure:7878: result: yes
434
+ configure:7917: checking for dlfcn.h
435
+ configure:7917: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
436
+ configure:7917: $? = 0
437
+ configure:7917: result: yes
438
+ configure:7986: checking for g++
439
+ configure:8002: found /usr/bin/g++
440
+ configure:8013: result: g++
441
+ configure:8040: checking for C++ compiler version
442
+ configure:8049: g++ --version >&5
443
+ i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)
444
+ Copyright (C) 2007 Free Software Foundation, Inc.
445
+ This is free software; see the source for copying conditions. There is NO
446
+ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
447
+
448
+ configure:8060: $? = 0
449
+ configure:8049: g++ -v >&5
450
+ Using built-in specs.
451
+ Target: i686-apple-darwin11
452
+ Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/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.9~22/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
453
+ Thread model: posix
454
+ gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)
455
+ configure:8060: $? = 0
456
+ configure:8049: g++ -V >&5
457
+ llvm-g++-4.2: argument to `-V' is missing
458
+ configure:8060: $? = 1
459
+ configure:8049: g++ -qversion >&5
460
+ i686-apple-darwin11-llvm-g++-4.2: no input files
461
+ configure:8060: $? = 1
462
+ configure:8064: checking whether we are using the GNU C++ compiler
463
+ configure:8083: g++ -c conftest.cpp >&5
464
+ configure:8083: $? = 0
465
+ configure:8092: result: yes
466
+ configure:8101: checking whether g++ accepts -g
467
+ configure:8121: g++ -c -g conftest.cpp >&5
468
+ configure:8121: $? = 0
469
+ configure:8162: result: yes
470
+ configure:8187: checking dependency style of g++
471
+ configure:8297: result: none
472
+ configure:8499: checking for objdir
473
+ configure:8514: result: .libs
474
+ configure:8785: checking if /usr/bin/gcc-4.2 supports -fno-rtti -fno-exceptions
475
+ configure:8803: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fno-rtti -fno-exceptions conftest.c >&5
476
+ cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
477
+ configure:8807: $? = 0
478
+ configure:8820: result: no
479
+ configure:9130: checking for /usr/bin/gcc-4.2 option to produce PIC
480
+ configure:9137: result: -fno-common -DPIC
481
+ configure:9145: checking if /usr/bin/gcc-4.2 PIC flag -fno-common -DPIC works
482
+ configure:9163: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fno-common -DPIC -DPIC conftest.c >&5
483
+ configure:9167: $? = 0
484
+ configure:9180: result: yes
485
+ configure:9209: checking if /usr/bin/gcc-4.2 static flag -static works
486
+ configure:9237: result: no
487
+ configure:9252: checking if /usr/bin/gcc-4.2 supports -c -o file.o
488
+ configure:9273: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -o out/conftest2.o conftest.c >&5
489
+ configure:9277: $? = 0
490
+ configure:9299: result: yes
491
+ configure:9307: checking if /usr/bin/gcc-4.2 supports -c -o file.o
492
+ configure:9354: result: yes
493
+ configure:9387: checking whether the /usr/bin/gcc-4.2 linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
494
+ configure:10545: result: yes
495
+ configure:10790: checking dynamic linker characteristics
496
+ configure:11526: result: darwin11.4.0 dyld
497
+ configure:11633: checking how to hardcode library paths into programs
498
+ configure:11658: result: immediate
499
+ configure:12198: checking whether stripping libraries is possible
500
+ configure:12212: result: yes
501
+ configure:12238: checking if libtool supports shared libraries
502
+ configure:12240: result: yes
503
+ configure:12243: checking whether to build shared libraries
504
+ configure:12264: result: no
505
+ configure:12267: checking whether to build static libraries
506
+ configure:12271: result: yes
507
+ configure:12294: checking how to run the C++ preprocessor
508
+ configure:12321: g++ -E conftest.cpp
509
+ configure:12321: $? = 0
510
+ configure:12335: g++ -E conftest.cpp
511
+ conftest.cpp:26:28: error: ac_nonexistent.h: No such file or directory
512
+ configure:12335: $? = 1
513
+ configure: failed program was:
514
+ | /* confdefs.h */
515
+ | #define PACKAGE_NAME "libmemcached"
516
+ | #define PACKAGE_TARNAME "libmemcached"
517
+ | #define PACKAGE_VERSION "0.32"
518
+ | #define PACKAGE_STRING "libmemcached 0.32"
519
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
520
+ | #define PACKAGE_URL ""
521
+ | #define STDC_HEADERS 1
522
+ | #define HAVE_SYS_TYPES_H 1
523
+ | #define HAVE_SYS_STAT_H 1
524
+ | #define HAVE_STDLIB_H 1
525
+ | #define HAVE_STRING_H 1
526
+ | #define HAVE_MEMORY_H 1
527
+ | #define HAVE_STRINGS_H 1
528
+ | #define HAVE_INTTYPES_H 1
529
+ | #define HAVE_STDINT_H 1
530
+ | #define HAVE_UNISTD_H 1
531
+ | #define __EXTENSIONS__ 1
532
+ | #define _ALL_SOURCE 1
533
+ | #define _GNU_SOURCE 1
534
+ | #define _POSIX_PTHREAD_SEMANTICS 1
535
+ | #define _TANDEM_SOURCE 1
536
+ | #define HAVE_DLFCN_H 1
537
+ | #define LT_OBJDIR ".libs/"
538
+ | /* end confdefs.h. */
539
+ | #include <ac_nonexistent.h>
540
+ configure:12360: result: g++ -E
541
+ configure:12380: g++ -E conftest.cpp
542
+ configure:12380: $? = 0
543
+ configure:12394: g++ -E conftest.cpp
544
+ conftest.cpp:26:28: error: ac_nonexistent.h: No such file or directory
545
+ configure:12394: $? = 1
546
+ configure: failed program was:
547
+ | /* confdefs.h */
548
+ | #define PACKAGE_NAME "libmemcached"
549
+ | #define PACKAGE_TARNAME "libmemcached"
550
+ | #define PACKAGE_VERSION "0.32"
551
+ | #define PACKAGE_STRING "libmemcached 0.32"
552
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
553
+ | #define PACKAGE_URL ""
554
+ | #define STDC_HEADERS 1
555
+ | #define HAVE_SYS_TYPES_H 1
556
+ | #define HAVE_SYS_STAT_H 1
557
+ | #define HAVE_STDLIB_H 1
558
+ | #define HAVE_STRING_H 1
559
+ | #define HAVE_MEMORY_H 1
560
+ | #define HAVE_STRINGS_H 1
561
+ | #define HAVE_INTTYPES_H 1
562
+ | #define HAVE_STDINT_H 1
563
+ | #define HAVE_UNISTD_H 1
564
+ | #define __EXTENSIONS__ 1
565
+ | #define _ALL_SOURCE 1
566
+ | #define _GNU_SOURCE 1
567
+ | #define _POSIX_PTHREAD_SEMANTICS 1
568
+ | #define _TANDEM_SOURCE 1
569
+ | #define HAVE_DLFCN_H 1
570
+ | #define LT_OBJDIR ".libs/"
571
+ | /* end confdefs.h. */
572
+ | #include <ac_nonexistent.h>
573
+ configure:12564: checking for ld used by g++
574
+ configure:12631: result: /usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
575
+ configure:12638: checking if the linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
576
+ configure:12653: result: no
577
+ configure:12708: checking whether the g++ linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
578
+ configure:13712: result: yes
579
+ configure:13747: g++ -c -g -O2 conftest.cpp >&5
580
+ configure:13750: $? = 0
581
+ configure:14270: checking for g++ option to produce PIC
582
+ configure:14277: result: -fno-common -DPIC
583
+ configure:14285: checking if g++ PIC flag -fno-common -DPIC works
584
+ configure:14303: g++ -c -g -O2 -fno-common -DPIC -DPIC conftest.cpp >&5
585
+ configure:14307: $? = 0
586
+ configure:14320: result: yes
587
+ configure:14343: checking if g++ static flag -static works
588
+ configure:14371: result: no
589
+ configure:14383: checking if g++ supports -c -o file.o
590
+ configure:14404: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
591
+ configure:14408: $? = 0
592
+ configure:14430: result: yes
593
+ configure:14435: checking if g++ supports -c -o file.o
594
+ configure:14482: result: yes
595
+ configure:14512: checking whether the g++ linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
596
+ configure:14546: result: yes
597
+ configure:14689: checking dynamic linker characteristics
598
+ configure:15359: result: darwin11.4.0 dyld
599
+ configure:15412: checking how to hardcode library paths into programs
600
+ configure:15437: result: immediate
601
+ configure:15497: checking if g++ supports C++0x features without additional flags
602
+ configure:15534: g++ -c -g -O2 conftest.cpp >&5
603
+ conftest.cpp:30: error: expected identifier before 'sizeof'
604
+ conftest.cpp:30: error: expected ',' or '...' before 'sizeof'
605
+ conftest.cpp:30: error: ISO C++ forbids declaration of 'static_assert' with no type
606
+ conftest.cpp:33: error: '>>' should be '> >' within a nested template argument list
607
+ conftest.cpp:36: error: expected constructor, destructor, or type conversion before '(' token
608
+ conftest.cpp:40: error: expected unqualified-id before '&&' token
609
+ configure:15534: $? = 1
610
+ configure: failed program was:
611
+ | /* confdefs.h */
612
+ | #define PACKAGE_NAME "libmemcached"
613
+ | #define PACKAGE_TARNAME "libmemcached"
614
+ | #define PACKAGE_VERSION "0.32"
615
+ | #define PACKAGE_STRING "libmemcached 0.32"
616
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
617
+ | #define PACKAGE_URL ""
618
+ | #define STDC_HEADERS 1
619
+ | #define HAVE_SYS_TYPES_H 1
620
+ | #define HAVE_SYS_STAT_H 1
621
+ | #define HAVE_STDLIB_H 1
622
+ | #define HAVE_STRING_H 1
623
+ | #define HAVE_MEMORY_H 1
624
+ | #define HAVE_STRINGS_H 1
625
+ | #define HAVE_INTTYPES_H 1
626
+ | #define HAVE_STDINT_H 1
627
+ | #define HAVE_UNISTD_H 1
628
+ | #define __EXTENSIONS__ 1
629
+ | #define _ALL_SOURCE 1
630
+ | #define _GNU_SOURCE 1
631
+ | #define _POSIX_PTHREAD_SEMANTICS 1
632
+ | #define _TANDEM_SOURCE 1
633
+ | #define HAVE_DLFCN_H 1
634
+ | #define LT_OBJDIR ".libs/"
635
+ | /* end confdefs.h. */
636
+ |
637
+ | template <typename T>
638
+ | struct check
639
+ | {
640
+ | static_assert(sizeof(int) <= sizeof(T), "not big enough");
641
+ | };
642
+ |
643
+ | typedef check<check<bool>> right_angle_brackets;
644
+ |
645
+ | int a;
646
+ | decltype(a) b;
647
+ |
648
+ | typedef check<int> check_type;
649
+ | check_type c;
650
+ | check_type&& cr = c;
651
+ | int
652
+ | main ()
653
+ | {
654
+ |
655
+ | ;
656
+ | return 0;
657
+ | }
658
+ configure:15548: result: no
659
+ configure:15551: checking if g++ supports C++0x features with -std=c++0x
660
+ configure:15590: g++ -c -g -O2 -std=c++0x conftest.cpp >&5
661
+ cc1plus: error: unrecognized command line option "-std=c++0x"
662
+ configure:15590: $? = 1
663
+ configure: failed program was:
664
+ | /* confdefs.h */
665
+ | #define PACKAGE_NAME "libmemcached"
666
+ | #define PACKAGE_TARNAME "libmemcached"
667
+ | #define PACKAGE_VERSION "0.32"
668
+ | #define PACKAGE_STRING "libmemcached 0.32"
669
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
670
+ | #define PACKAGE_URL ""
671
+ | #define STDC_HEADERS 1
672
+ | #define HAVE_SYS_TYPES_H 1
673
+ | #define HAVE_SYS_STAT_H 1
674
+ | #define HAVE_STDLIB_H 1
675
+ | #define HAVE_STRING_H 1
676
+ | #define HAVE_MEMORY_H 1
677
+ | #define HAVE_STRINGS_H 1
678
+ | #define HAVE_INTTYPES_H 1
679
+ | #define HAVE_STDINT_H 1
680
+ | #define HAVE_UNISTD_H 1
681
+ | #define __EXTENSIONS__ 1
682
+ | #define _ALL_SOURCE 1
683
+ | #define _GNU_SOURCE 1
684
+ | #define _POSIX_PTHREAD_SEMANTICS 1
685
+ | #define _TANDEM_SOURCE 1
686
+ | #define HAVE_DLFCN_H 1
687
+ | #define LT_OBJDIR ".libs/"
688
+ | /* end confdefs.h. */
689
+ |
690
+ | template <typename T>
691
+ | struct check
692
+ | {
693
+ | static_assert(sizeof(int) <= sizeof(T), "not big enough");
694
+ | };
695
+ |
696
+ | typedef check<check<bool>> right_angle_brackets;
697
+ |
698
+ | int a;
699
+ | decltype(a) b;
700
+ |
701
+ | typedef check<int> check_type;
702
+ | check_type c;
703
+ | check_type&& cr = c;
704
+ | int
705
+ | main ()
706
+ | {
707
+ |
708
+ | ;
709
+ | return 0;
710
+ | }
711
+ configure:15605: result: no
712
+ configure:15608: checking if g++ supports C++0x features with -std=gnu++0x
713
+ configure:15647: g++ -c -g -O2 -std=gnu++0x conftest.cpp >&5
714
+ cc1plus: error: unrecognized command line option "-std=gnu++0x"
715
+ configure:15647: $? = 1
716
+ configure: failed program was:
717
+ | /* confdefs.h */
718
+ | #define PACKAGE_NAME "libmemcached"
719
+ | #define PACKAGE_TARNAME "libmemcached"
720
+ | #define PACKAGE_VERSION "0.32"
721
+ | #define PACKAGE_STRING "libmemcached 0.32"
722
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
723
+ | #define PACKAGE_URL ""
724
+ | #define STDC_HEADERS 1
725
+ | #define HAVE_SYS_TYPES_H 1
726
+ | #define HAVE_SYS_STAT_H 1
727
+ | #define HAVE_STDLIB_H 1
728
+ | #define HAVE_STRING_H 1
729
+ | #define HAVE_MEMORY_H 1
730
+ | #define HAVE_STRINGS_H 1
731
+ | #define HAVE_INTTYPES_H 1
732
+ | #define HAVE_STDINT_H 1
733
+ | #define HAVE_UNISTD_H 1
734
+ | #define __EXTENSIONS__ 1
735
+ | #define _ALL_SOURCE 1
736
+ | #define _GNU_SOURCE 1
737
+ | #define _POSIX_PTHREAD_SEMANTICS 1
738
+ | #define _TANDEM_SOURCE 1
739
+ | #define HAVE_DLFCN_H 1
740
+ | #define LT_OBJDIR ".libs/"
741
+ | /* end confdefs.h. */
742
+ |
743
+ | template <typename T>
744
+ | struct check
745
+ | {
746
+ | static_assert(sizeof(int) <= sizeof(T), "not big enough");
747
+ | };
748
+ |
749
+ | typedef check<check<bool>> right_angle_brackets;
750
+ |
751
+ | int a;
752
+ | decltype(a) b;
753
+ |
754
+ | typedef check<int> check_type;
755
+ | check_type c;
756
+ | check_type&& cr = c;
757
+ | int
758
+ | main ()
759
+ | {
760
+ |
761
+ | ;
762
+ | return 0;
763
+ | }
764
+ configure:15662: result: no
765
+ configure:15804: checking for stdlib.h
766
+ configure:15804: result: yes
767
+ configure:15814: checking for GNU libc compatible malloc
768
+ configure:15838: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c >&5
769
+ configure:15838: $? = 0
770
+ configure:15838: ./conftest
771
+ configure:15838: $? = 0
772
+ configure:15848: result: yes
773
+ configure:15871: checking for stdlib.h
774
+ configure:15871: result: yes
775
+ configure:15881: checking for GNU libc compatible realloc
776
+ configure:15905: /usr/bin/gcc-4.2 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib conftest.c >&5
777
+ configure:15905: $? = 0
778
+ configure:15905: ./conftest
779
+ configure:15905: $? = 0
780
+ configure:15915: result: yes
781
+ configure:16140: checking for C++ compiler version
782
+ configure:16149: g++ --version >&5
783
+ i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)
784
+ Copyright (C) 2007 Free Software Foundation, Inc.
785
+ This is free software; see the source for copying conditions. There is NO
786
+ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
787
+
788
+ configure:16160: $? = 0
789
+ configure:16149: g++ -v >&5
790
+ Using built-in specs.
791
+ Target: i686-apple-darwin11
792
+ Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.9~22/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.9~22/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
793
+ Thread model: posix
794
+ gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)
795
+ configure:16160: $? = 0
796
+ configure:16149: g++ -V >&5
797
+ llvm-g++-4.2: argument to `-V' is missing
798
+ configure:16160: $? = 1
799
+ configure:16149: g++ -qversion >&5
800
+ i686-apple-darwin11-llvm-g++-4.2: no input files
801
+ configure:16160: $? = 1
802
+ configure:16164: checking whether we are using the GNU C++ compiler
803
+ configure:16192: result: yes
804
+ configure:16201: checking whether g++ accepts -g
805
+ configure:16262: result: yes
806
+ configure:16287: checking dependency style of g++
807
+ configure:16397: result: none
808
+ configure:16417: checking how to run the C preprocessor
809
+ configure:16487: result: /usr/bin/gcc-4.2 -E
810
+ configure:16507: /usr/bin/gcc-4.2 -E conftest.c
811
+ configure:16507: $? = 0
812
+ configure:16521: /usr/bin/gcc-4.2 -E conftest.c
813
+ conftest.c:32:28: error: ac_nonexistent.h: No such file or directory
814
+ configure:16521: $? = 1
815
+ configure: failed program was:
816
+ | /* confdefs.h */
817
+ | #define PACKAGE_NAME "libmemcached"
818
+ | #define PACKAGE_TARNAME "libmemcached"
819
+ | #define PACKAGE_VERSION "0.32"
820
+ | #define PACKAGE_STRING "libmemcached 0.32"
821
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
822
+ | #define PACKAGE_URL ""
823
+ | #define STDC_HEADERS 1
824
+ | #define HAVE_SYS_TYPES_H 1
825
+ | #define HAVE_SYS_STAT_H 1
826
+ | #define HAVE_STDLIB_H 1
827
+ | #define HAVE_STRING_H 1
828
+ | #define HAVE_MEMORY_H 1
829
+ | #define HAVE_STRINGS_H 1
830
+ | #define HAVE_INTTYPES_H 1
831
+ | #define HAVE_STDINT_H 1
832
+ | #define HAVE_UNISTD_H 1
833
+ | #define __EXTENSIONS__ 1
834
+ | #define _ALL_SOURCE 1
835
+ | #define _GNU_SOURCE 1
836
+ | #define _POSIX_PTHREAD_SEMANTICS 1
837
+ | #define _TANDEM_SOURCE 1
838
+ | #define HAVE_DLFCN_H 1
839
+ | #define LT_OBJDIR ".libs/"
840
+ | #define HAVE_STDLIB_H 1
841
+ | #define HAVE_MALLOC 1
842
+ | #define HAVE_STDLIB_H 1
843
+ | #define HAVE_REALLOC 1
844
+ | #define PACKAGE "libmemcached"
845
+ | #define VERSION "0.32"
846
+ | /* end confdefs.h. */
847
+ | #include <ac_nonexistent.h>
848
+ configure:16569: checking whether __SUNPRO_C is declared
849
+ configure:16569: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
850
+ conftest.c: In function 'main':
851
+ conftest.c:72: error: '__SUNPRO_C' undeclared (first use in this function)
852
+ conftest.c:72: error: (Each undeclared identifier is reported only once
853
+ conftest.c:72: error: for each function it appears in.)
854
+ configure:16569: $? = 1
855
+ configure: failed program was:
856
+ | /* confdefs.h */
857
+ | #define PACKAGE_NAME "libmemcached"
858
+ | #define PACKAGE_TARNAME "libmemcached"
859
+ | #define PACKAGE_VERSION "0.32"
860
+ | #define PACKAGE_STRING "libmemcached 0.32"
861
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
862
+ | #define PACKAGE_URL ""
863
+ | #define STDC_HEADERS 1
864
+ | #define HAVE_SYS_TYPES_H 1
865
+ | #define HAVE_SYS_STAT_H 1
866
+ | #define HAVE_STDLIB_H 1
867
+ | #define HAVE_STRING_H 1
868
+ | #define HAVE_MEMORY_H 1
869
+ | #define HAVE_STRINGS_H 1
870
+ | #define HAVE_INTTYPES_H 1
871
+ | #define HAVE_STDINT_H 1
872
+ | #define HAVE_UNISTD_H 1
873
+ | #define __EXTENSIONS__ 1
874
+ | #define _ALL_SOURCE 1
875
+ | #define _GNU_SOURCE 1
876
+ | #define _POSIX_PTHREAD_SEMANTICS 1
877
+ | #define _TANDEM_SOURCE 1
878
+ | #define HAVE_DLFCN_H 1
879
+ | #define LT_OBJDIR ".libs/"
880
+ | #define HAVE_STDLIB_H 1
881
+ | #define HAVE_MALLOC 1
882
+ | #define HAVE_STDLIB_H 1
883
+ | #define HAVE_REALLOC 1
884
+ | #define PACKAGE "libmemcached"
885
+ | #define VERSION "0.32"
886
+ | /* end confdefs.h. */
887
+ | #include <stdio.h>
888
+ | #ifdef HAVE_SYS_TYPES_H
889
+ | # include <sys/types.h>
890
+ | #endif
891
+ | #ifdef HAVE_SYS_STAT_H
892
+ | # include <sys/stat.h>
893
+ | #endif
894
+ | #ifdef STDC_HEADERS
895
+ | # include <stdlib.h>
896
+ | # include <stddef.h>
897
+ | #else
898
+ | # ifdef HAVE_STDLIB_H
899
+ | # include <stdlib.h>
900
+ | # endif
901
+ | #endif
902
+ | #ifdef HAVE_STRING_H
903
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
904
+ | # include <memory.h>
905
+ | # endif
906
+ | # include <string.h>
907
+ | #endif
908
+ | #ifdef HAVE_STRINGS_H
909
+ | # include <strings.h>
910
+ | #endif
911
+ | #ifdef HAVE_INTTYPES_H
912
+ | # include <inttypes.h>
913
+ | #endif
914
+ | #ifdef HAVE_STDINT_H
915
+ | # include <stdint.h>
916
+ | #endif
917
+ | #ifdef HAVE_UNISTD_H
918
+ | # include <unistd.h>
919
+ | #endif
920
+ | int
921
+ | main ()
922
+ | {
923
+ | #ifndef __SUNPRO_C
924
+ | #ifdef __cplusplus
925
+ | (void) __SUNPRO_C;
926
+ | #else
927
+ | (void) __SUNPRO_C;
928
+ | #endif
929
+ | #endif
930
+ |
931
+ | ;
932
+ | return 0;
933
+ | }
934
+ configure:16569: result: no
935
+ configure:16576: checking whether __ICC is declared
936
+ configure:16576: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
937
+ conftest.c: In function 'main':
938
+ conftest.c:72: error: '__ICC' undeclared (first use in this function)
939
+ conftest.c:72: error: (Each undeclared identifier is reported only once
940
+ conftest.c:72: error: for each function it appears in.)
941
+ configure:16576: $? = 1
942
+ configure: failed program was:
943
+ | /* confdefs.h */
944
+ | #define PACKAGE_NAME "libmemcached"
945
+ | #define PACKAGE_TARNAME "libmemcached"
946
+ | #define PACKAGE_VERSION "0.32"
947
+ | #define PACKAGE_STRING "libmemcached 0.32"
948
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
949
+ | #define PACKAGE_URL ""
950
+ | #define STDC_HEADERS 1
951
+ | #define HAVE_SYS_TYPES_H 1
952
+ | #define HAVE_SYS_STAT_H 1
953
+ | #define HAVE_STDLIB_H 1
954
+ | #define HAVE_STRING_H 1
955
+ | #define HAVE_MEMORY_H 1
956
+ | #define HAVE_STRINGS_H 1
957
+ | #define HAVE_INTTYPES_H 1
958
+ | #define HAVE_STDINT_H 1
959
+ | #define HAVE_UNISTD_H 1
960
+ | #define __EXTENSIONS__ 1
961
+ | #define _ALL_SOURCE 1
962
+ | #define _GNU_SOURCE 1
963
+ | #define _POSIX_PTHREAD_SEMANTICS 1
964
+ | #define _TANDEM_SOURCE 1
965
+ | #define HAVE_DLFCN_H 1
966
+ | #define LT_OBJDIR ".libs/"
967
+ | #define HAVE_STDLIB_H 1
968
+ | #define HAVE_MALLOC 1
969
+ | #define HAVE_STDLIB_H 1
970
+ | #define HAVE_REALLOC 1
971
+ | #define PACKAGE "libmemcached"
972
+ | #define VERSION "0.32"
973
+ | /* end confdefs.h. */
974
+ | #include <stdio.h>
975
+ | #ifdef HAVE_SYS_TYPES_H
976
+ | # include <sys/types.h>
977
+ | #endif
978
+ | #ifdef HAVE_SYS_STAT_H
979
+ | # include <sys/stat.h>
980
+ | #endif
981
+ | #ifdef STDC_HEADERS
982
+ | # include <stdlib.h>
983
+ | # include <stddef.h>
984
+ | #else
985
+ | # ifdef HAVE_STDLIB_H
986
+ | # include <stdlib.h>
987
+ | # endif
988
+ | #endif
989
+ | #ifdef HAVE_STRING_H
990
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
991
+ | # include <memory.h>
992
+ | # endif
993
+ | # include <string.h>
994
+ | #endif
995
+ | #ifdef HAVE_STRINGS_H
996
+ | # include <strings.h>
997
+ | #endif
998
+ | #ifdef HAVE_INTTYPES_H
999
+ | # include <inttypes.h>
1000
+ | #endif
1001
+ | #ifdef HAVE_STDINT_H
1002
+ | # include <stdint.h>
1003
+ | #endif
1004
+ | #ifdef HAVE_UNISTD_H
1005
+ | # include <unistd.h>
1006
+ | #endif
1007
+ | int
1008
+ | main ()
1009
+ | {
1010
+ | #ifndef __ICC
1011
+ | #ifdef __cplusplus
1012
+ | (void) __ICC;
1013
+ | #else
1014
+ | (void) __ICC;
1015
+ | #endif
1016
+ | #endif
1017
+ |
1018
+ | ;
1019
+ | return 0;
1020
+ | }
1021
+ configure:16576: result: no
1022
+ configure:16611: checking for ISO C++ 98 include files
1023
+ configure:16683: g++ -c -std=gnu++98 conftest.cpp >&5
1024
+ configure:16683: $? = 0
1025
+ configure:16697: result: yes
1026
+ configure:16719: checking memory usability
1027
+ configure:16719: g++ -c -std=gnu++98 conftest.cpp >&5
1028
+ configure:16719: $? = 0
1029
+ configure:16719: result: yes
1030
+ configure:16719: checking memory presence
1031
+ configure:16719: g++ -E conftest.cpp
1032
+ configure:16719: $? = 0
1033
+ configure:16719: result: yes
1034
+ configure:16719: checking for memory
1035
+ configure:16719: result: yes
1036
+ configure:16719: checking tr1/memory usability
1037
+ configure:16719: g++ -c -std=gnu++98 conftest.cpp >&5
1038
+ configure:16719: $? = 0
1039
+ configure:16719: result: yes
1040
+ configure:16719: checking tr1/memory presence
1041
+ configure:16719: g++ -E conftest.cpp
1042
+ configure:16719: $? = 0
1043
+ configure:16719: result: yes
1044
+ configure:16719: checking for tr1/memory
1045
+ configure:16719: result: yes
1046
+ configure:16719: checking boost/shared_ptr.hpp usability
1047
+ configure:16719: g++ -c -std=gnu++98 conftest.cpp >&5
1048
+ conftest.cpp:68:32: error: boost/shared_ptr.hpp: No such file or directory
1049
+ configure:16719: $? = 1
1050
+ configure: failed program was:
1051
+ | /* confdefs.h */
1052
+ | #define PACKAGE_NAME "libmemcached"
1053
+ | #define PACKAGE_TARNAME "libmemcached"
1054
+ | #define PACKAGE_VERSION "0.32"
1055
+ | #define PACKAGE_STRING "libmemcached 0.32"
1056
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1057
+ | #define PACKAGE_URL ""
1058
+ | #define STDC_HEADERS 1
1059
+ | #define HAVE_SYS_TYPES_H 1
1060
+ | #define HAVE_SYS_STAT_H 1
1061
+ | #define HAVE_STDLIB_H 1
1062
+ | #define HAVE_STRING_H 1
1063
+ | #define HAVE_MEMORY_H 1
1064
+ | #define HAVE_STRINGS_H 1
1065
+ | #define HAVE_INTTYPES_H 1
1066
+ | #define HAVE_STDINT_H 1
1067
+ | #define HAVE_UNISTD_H 1
1068
+ | #define __EXTENSIONS__ 1
1069
+ | #define _ALL_SOURCE 1
1070
+ | #define _GNU_SOURCE 1
1071
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1072
+ | #define _TANDEM_SOURCE 1
1073
+ | #define HAVE_DLFCN_H 1
1074
+ | #define LT_OBJDIR ".libs/"
1075
+ | #define HAVE_STDLIB_H 1
1076
+ | #define HAVE_MALLOC 1
1077
+ | #define HAVE_STDLIB_H 1
1078
+ | #define HAVE_REALLOC 1
1079
+ | #define PACKAGE "libmemcached"
1080
+ | #define VERSION "0.32"
1081
+ | #define STDCXX_98_HEADERS /**/
1082
+ | #define HAVE_MEMORY 1
1083
+ | #define HAVE_TR1_MEMORY 1
1084
+ | /* end confdefs.h. */
1085
+ | #include <stdio.h>
1086
+ | #ifdef HAVE_SYS_TYPES_H
1087
+ | # include <sys/types.h>
1088
+ | #endif
1089
+ | #ifdef HAVE_SYS_STAT_H
1090
+ | # include <sys/stat.h>
1091
+ | #endif
1092
+ | #ifdef STDC_HEADERS
1093
+ | # include <stdlib.h>
1094
+ | # include <stddef.h>
1095
+ | #else
1096
+ | # ifdef HAVE_STDLIB_H
1097
+ | # include <stdlib.h>
1098
+ | # endif
1099
+ | #endif
1100
+ | #ifdef HAVE_STRING_H
1101
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
1102
+ | # include <memory.h>
1103
+ | # endif
1104
+ | # include <string.h>
1105
+ | #endif
1106
+ | #ifdef HAVE_STRINGS_H
1107
+ | # include <strings.h>
1108
+ | #endif
1109
+ | #ifdef HAVE_INTTYPES_H
1110
+ | # include <inttypes.h>
1111
+ | #endif
1112
+ | #ifdef HAVE_STDINT_H
1113
+ | # include <stdint.h>
1114
+ | #endif
1115
+ | #ifdef HAVE_UNISTD_H
1116
+ | # include <unistd.h>
1117
+ | #endif
1118
+ | #include <boost/shared_ptr.hpp>
1119
+ configure:16719: result: no
1120
+ configure:16719: checking boost/shared_ptr.hpp presence
1121
+ configure:16719: g++ -E conftest.cpp
1122
+ conftest.cpp:35:32: error: boost/shared_ptr.hpp: No such file or directory
1123
+ configure:16719: $? = 1
1124
+ configure: failed program was:
1125
+ | /* confdefs.h */
1126
+ | #define PACKAGE_NAME "libmemcached"
1127
+ | #define PACKAGE_TARNAME "libmemcached"
1128
+ | #define PACKAGE_VERSION "0.32"
1129
+ | #define PACKAGE_STRING "libmemcached 0.32"
1130
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1131
+ | #define PACKAGE_URL ""
1132
+ | #define STDC_HEADERS 1
1133
+ | #define HAVE_SYS_TYPES_H 1
1134
+ | #define HAVE_SYS_STAT_H 1
1135
+ | #define HAVE_STDLIB_H 1
1136
+ | #define HAVE_STRING_H 1
1137
+ | #define HAVE_MEMORY_H 1
1138
+ | #define HAVE_STRINGS_H 1
1139
+ | #define HAVE_INTTYPES_H 1
1140
+ | #define HAVE_STDINT_H 1
1141
+ | #define HAVE_UNISTD_H 1
1142
+ | #define __EXTENSIONS__ 1
1143
+ | #define _ALL_SOURCE 1
1144
+ | #define _GNU_SOURCE 1
1145
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1146
+ | #define _TANDEM_SOURCE 1
1147
+ | #define HAVE_DLFCN_H 1
1148
+ | #define LT_OBJDIR ".libs/"
1149
+ | #define HAVE_STDLIB_H 1
1150
+ | #define HAVE_MALLOC 1
1151
+ | #define HAVE_STDLIB_H 1
1152
+ | #define HAVE_REALLOC 1
1153
+ | #define PACKAGE "libmemcached"
1154
+ | #define VERSION "0.32"
1155
+ | #define STDCXX_98_HEADERS /**/
1156
+ | #define HAVE_MEMORY 1
1157
+ | #define HAVE_TR1_MEMORY 1
1158
+ | /* end confdefs.h. */
1159
+ | #include <boost/shared_ptr.hpp>
1160
+ configure:16719: result: no
1161
+ configure:16719: checking for boost/shared_ptr.hpp
1162
+ configure:16719: result: no
1163
+ configure:16729: checking the location of shared_ptr header file
1164
+ configure:16764: g++ -c -std=gnu++98 conftest.cpp >&5
1165
+ conftest.cpp:47: error: 'std::shared_ptr' has not been declared
1166
+ conftest.cpp: In function 'int main()':
1167
+ conftest.cpp:54: error: 'shared_ptr' was not declared in this scope
1168
+ conftest.cpp:54: error: expected primary-expression before '>' token
1169
+ conftest.cpp:54: error: 'test_ptr' was not declared in this scope
1170
+ configure:16764: $? = 1
1171
+ configure: failed program was:
1172
+ | /* confdefs.h */
1173
+ | #define PACKAGE_NAME "libmemcached"
1174
+ | #define PACKAGE_TARNAME "libmemcached"
1175
+ | #define PACKAGE_VERSION "0.32"
1176
+ | #define PACKAGE_STRING "libmemcached 0.32"
1177
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1178
+ | #define PACKAGE_URL ""
1179
+ | #define STDC_HEADERS 1
1180
+ | #define HAVE_SYS_TYPES_H 1
1181
+ | #define HAVE_SYS_STAT_H 1
1182
+ | #define HAVE_STDLIB_H 1
1183
+ | #define HAVE_STRING_H 1
1184
+ | #define HAVE_MEMORY_H 1
1185
+ | #define HAVE_STRINGS_H 1
1186
+ | #define HAVE_INTTYPES_H 1
1187
+ | #define HAVE_STDINT_H 1
1188
+ | #define HAVE_UNISTD_H 1
1189
+ | #define __EXTENSIONS__ 1
1190
+ | #define _ALL_SOURCE 1
1191
+ | #define _GNU_SOURCE 1
1192
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1193
+ | #define _TANDEM_SOURCE 1
1194
+ | #define HAVE_DLFCN_H 1
1195
+ | #define LT_OBJDIR ".libs/"
1196
+ | #define HAVE_STDLIB_H 1
1197
+ | #define HAVE_MALLOC 1
1198
+ | #define HAVE_STDLIB_H 1
1199
+ | #define HAVE_REALLOC 1
1200
+ | #define PACKAGE "libmemcached"
1201
+ | #define VERSION "0.32"
1202
+ | #define STDCXX_98_HEADERS /**/
1203
+ | #define HAVE_MEMORY 1
1204
+ | #define HAVE_TR1_MEMORY 1
1205
+ | /* end confdefs.h. */
1206
+ |
1207
+ | #if defined(HAVE_MEMORY)
1208
+ | # include <memory>
1209
+ | #endif
1210
+ | #if defined(HAVE_TR1_MEMORY)
1211
+ | # include <tr1/memory>
1212
+ | #endif
1213
+ | #if defined(HAVE_BOOST_SHARED_PTR_HPP)
1214
+ | # include <boost/shared_ptr.hpp>
1215
+ | #endif
1216
+ | #include <string>
1217
+ |
1218
+ | using std::shared_ptr;
1219
+ | using namespace std;
1220
+ |
1221
+ | int
1222
+ | main ()
1223
+ | {
1224
+ |
1225
+ | shared_ptr<string> test_ptr(new string("test string"));
1226
+ |
1227
+ | ;
1228
+ | return 0;
1229
+ | }
1230
+ configure:16764: g++ -c -std=gnu++98 conftest.cpp >&5
1231
+ conftest.cpp:47: error: 'tr1' has not been declared
1232
+ conftest.cpp: In function 'int main()':
1233
+ conftest.cpp:54: error: 'shared_ptr' was not declared in this scope
1234
+ conftest.cpp:54: error: expected primary-expression before '>' token
1235
+ conftest.cpp:54: error: 'test_ptr' was not declared in this scope
1236
+ configure:16764: $? = 1
1237
+ configure: failed program was:
1238
+ | /* confdefs.h */
1239
+ | #define PACKAGE_NAME "libmemcached"
1240
+ | #define PACKAGE_TARNAME "libmemcached"
1241
+ | #define PACKAGE_VERSION "0.32"
1242
+ | #define PACKAGE_STRING "libmemcached 0.32"
1243
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1244
+ | #define PACKAGE_URL ""
1245
+ | #define STDC_HEADERS 1
1246
+ | #define HAVE_SYS_TYPES_H 1
1247
+ | #define HAVE_SYS_STAT_H 1
1248
+ | #define HAVE_STDLIB_H 1
1249
+ | #define HAVE_STRING_H 1
1250
+ | #define HAVE_MEMORY_H 1
1251
+ | #define HAVE_STRINGS_H 1
1252
+ | #define HAVE_INTTYPES_H 1
1253
+ | #define HAVE_STDINT_H 1
1254
+ | #define HAVE_UNISTD_H 1
1255
+ | #define __EXTENSIONS__ 1
1256
+ | #define _ALL_SOURCE 1
1257
+ | #define _GNU_SOURCE 1
1258
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1259
+ | #define _TANDEM_SOURCE 1
1260
+ | #define HAVE_DLFCN_H 1
1261
+ | #define LT_OBJDIR ".libs/"
1262
+ | #define HAVE_STDLIB_H 1
1263
+ | #define HAVE_MALLOC 1
1264
+ | #define HAVE_STDLIB_H 1
1265
+ | #define HAVE_REALLOC 1
1266
+ | #define PACKAGE "libmemcached"
1267
+ | #define VERSION "0.32"
1268
+ | #define STDCXX_98_HEADERS /**/
1269
+ | #define HAVE_MEMORY 1
1270
+ | #define HAVE_TR1_MEMORY 1
1271
+ | /* end confdefs.h. */
1272
+ |
1273
+ | #if defined(HAVE_MEMORY)
1274
+ | # include <memory>
1275
+ | #endif
1276
+ | #if defined(HAVE_TR1_MEMORY)
1277
+ | # include <tr1/memory>
1278
+ | #endif
1279
+ | #if defined(HAVE_BOOST_SHARED_PTR_HPP)
1280
+ | # include <boost/shared_ptr.hpp>
1281
+ | #endif
1282
+ | #include <string>
1283
+ |
1284
+ | using tr1::shared_ptr;
1285
+ | using namespace std;
1286
+ |
1287
+ | int
1288
+ | main ()
1289
+ | {
1290
+ |
1291
+ | shared_ptr<string> test_ptr(new string("test string"));
1292
+ |
1293
+ | ;
1294
+ | return 0;
1295
+ | }
1296
+ configure:16764: g++ -c -std=gnu++98 conftest.cpp >&5
1297
+ configure:16764: $? = 0
1298
+ configure:16776: result:
1299
+ configure:16801: checking whether byte ordering is bigendian
1300
+ configure:16816: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1301
+ configure:16816: $? = 0
1302
+ configure:16861: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1303
+ configure:16861: $? = 0
1304
+ configure:16879: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1305
+ conftest.c: In function 'main':
1306
+ conftest.c:43: error: 'not' undeclared (first use in this function)
1307
+ conftest.c:43: error: (Each undeclared identifier is reported only once
1308
+ conftest.c:43: error: for each function it appears in.)
1309
+ conftest.c:43: error: expected ';' before 'big'
1310
+ configure:16879: $? = 1
1311
+ configure: failed program was:
1312
+ | /* confdefs.h */
1313
+ | #define PACKAGE_NAME "libmemcached"
1314
+ | #define PACKAGE_TARNAME "libmemcached"
1315
+ | #define PACKAGE_VERSION "0.32"
1316
+ | #define PACKAGE_STRING "libmemcached 0.32"
1317
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1318
+ | #define PACKAGE_URL ""
1319
+ | #define STDC_HEADERS 1
1320
+ | #define HAVE_SYS_TYPES_H 1
1321
+ | #define HAVE_SYS_STAT_H 1
1322
+ | #define HAVE_STDLIB_H 1
1323
+ | #define HAVE_STRING_H 1
1324
+ | #define HAVE_MEMORY_H 1
1325
+ | #define HAVE_STRINGS_H 1
1326
+ | #define HAVE_INTTYPES_H 1
1327
+ | #define HAVE_STDINT_H 1
1328
+ | #define HAVE_UNISTD_H 1
1329
+ | #define __EXTENSIONS__ 1
1330
+ | #define _ALL_SOURCE 1
1331
+ | #define _GNU_SOURCE 1
1332
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1333
+ | #define _TANDEM_SOURCE 1
1334
+ | #define HAVE_DLFCN_H 1
1335
+ | #define LT_OBJDIR ".libs/"
1336
+ | #define HAVE_STDLIB_H 1
1337
+ | #define HAVE_MALLOC 1
1338
+ | #define HAVE_STDLIB_H 1
1339
+ | #define HAVE_REALLOC 1
1340
+ | #define PACKAGE "libmemcached"
1341
+ | #define VERSION "0.32"
1342
+ | #define STDCXX_98_HEADERS /**/
1343
+ | #define HAVE_MEMORY 1
1344
+ | #define HAVE_TR1_MEMORY 1
1345
+ | #define SHARED_PTR_NAMESPACE std::tr1
1346
+ | /* end confdefs.h. */
1347
+ | #include <sys/types.h>
1348
+ | #include <sys/param.h>
1349
+ |
1350
+ | int
1351
+ | main ()
1352
+ | {
1353
+ | #if BYTE_ORDER != BIG_ENDIAN
1354
+ | not big endian
1355
+ | #endif
1356
+ |
1357
+ | ;
1358
+ | return 0;
1359
+ | }
1360
+ configure:17007: result: no
1361
+ configure:17025: checking for an ANSI C-conforming const
1362
+ configure:17090: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1363
+ conftest.c: In function 'main':
1364
+ conftest.c:65: warning: 't' is used uninitialized in this function
1365
+ conftest.c:81: warning: 'b' is used uninitialized in this function
1366
+ conftest.c:87: warning: 'cs[0]' is used uninitialized in this function
1367
+ configure:17090: $? = 0
1368
+ configure:17097: result: yes
1369
+ configure:17105: checking for inline
1370
+ configure:17121: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1371
+ configure:17121: $? = 0
1372
+ configure:17129: result: inline
1373
+ configure:17147: checking for working volatile
1374
+ configure:17166: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1375
+ configure:17166: $? = 0
1376
+ configure:17173: result: yes
1377
+ configure:17181: checking for C/C++ restrict keyword
1378
+ configure:17206: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1379
+ configure:17206: $? = 0
1380
+ configure:17214: result: __restrict
1381
+ configure:17228: checking whether time.h and sys/time.h may both be included
1382
+ configure:17248: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1383
+ configure:17248: $? = 0
1384
+ configure:17255: result: yes
1385
+ configure:17263: checking for size_t
1386
+ configure:17263: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1387
+ configure:17263: $? = 0
1388
+ configure:17263: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1389
+ conftest.c: In function 'main':
1390
+ conftest.c:74: error: expected expression before ')' token
1391
+ configure:17263: $? = 1
1392
+ configure: failed program was:
1393
+ | /* confdefs.h */
1394
+ | #define PACKAGE_NAME "libmemcached"
1395
+ | #define PACKAGE_TARNAME "libmemcached"
1396
+ | #define PACKAGE_VERSION "0.32"
1397
+ | #define PACKAGE_STRING "libmemcached 0.32"
1398
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1399
+ | #define PACKAGE_URL ""
1400
+ | #define STDC_HEADERS 1
1401
+ | #define HAVE_SYS_TYPES_H 1
1402
+ | #define HAVE_SYS_STAT_H 1
1403
+ | #define HAVE_STDLIB_H 1
1404
+ | #define HAVE_STRING_H 1
1405
+ | #define HAVE_MEMORY_H 1
1406
+ | #define HAVE_STRINGS_H 1
1407
+ | #define HAVE_INTTYPES_H 1
1408
+ | #define HAVE_STDINT_H 1
1409
+ | #define HAVE_UNISTD_H 1
1410
+ | #define __EXTENSIONS__ 1
1411
+ | #define _ALL_SOURCE 1
1412
+ | #define _GNU_SOURCE 1
1413
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1414
+ | #define _TANDEM_SOURCE 1
1415
+ | #define HAVE_DLFCN_H 1
1416
+ | #define LT_OBJDIR ".libs/"
1417
+ | #define HAVE_STDLIB_H 1
1418
+ | #define HAVE_MALLOC 1
1419
+ | #define HAVE_STDLIB_H 1
1420
+ | #define HAVE_REALLOC 1
1421
+ | #define PACKAGE "libmemcached"
1422
+ | #define VERSION "0.32"
1423
+ | #define STDCXX_98_HEADERS /**/
1424
+ | #define HAVE_MEMORY 1
1425
+ | #define HAVE_TR1_MEMORY 1
1426
+ | #define SHARED_PTR_NAMESPACE std::tr1
1427
+ | #define restrict __restrict
1428
+ | #define TIME_WITH_SYS_TIME 1
1429
+ | /* end confdefs.h. */
1430
+ | #include <stdio.h>
1431
+ | #ifdef HAVE_SYS_TYPES_H
1432
+ | # include <sys/types.h>
1433
+ | #endif
1434
+ | #ifdef HAVE_SYS_STAT_H
1435
+ | # include <sys/stat.h>
1436
+ | #endif
1437
+ | #ifdef STDC_HEADERS
1438
+ | # include <stdlib.h>
1439
+ | # include <stddef.h>
1440
+ | #else
1441
+ | # ifdef HAVE_STDLIB_H
1442
+ | # include <stdlib.h>
1443
+ | # endif
1444
+ | #endif
1445
+ | #ifdef HAVE_STRING_H
1446
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
1447
+ | # include <memory.h>
1448
+ | # endif
1449
+ | # include <string.h>
1450
+ | #endif
1451
+ | #ifdef HAVE_STRINGS_H
1452
+ | # include <strings.h>
1453
+ | #endif
1454
+ | #ifdef HAVE_INTTYPES_H
1455
+ | # include <inttypes.h>
1456
+ | #endif
1457
+ | #ifdef HAVE_STDINT_H
1458
+ | # include <stdint.h>
1459
+ | #endif
1460
+ | #ifdef HAVE_UNISTD_H
1461
+ | # include <unistd.h>
1462
+ | #endif
1463
+ | int
1464
+ | main ()
1465
+ | {
1466
+ | if (sizeof ((size_t)))
1467
+ | return 0;
1468
+ | ;
1469
+ | return 0;
1470
+ | }
1471
+ configure:17263: result: yes
1472
+ configure:17281: checking for special C compiler options needed for large files
1473
+ configure:17326: result: no
1474
+ configure:17332: checking for _FILE_OFFSET_BITS value needed for large files
1475
+ configure:17357: /usr/bin/gcc-4.2 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1476
+ configure:17357: $? = 0
1477
+ configure:17389: result: no
1478
+ configure:17476: checking "C Compiler version--yes"
1479
+ configure:17494: result: "i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)"
1480
+ configure:17499: checking "C++ Compiler version"
1481
+ configure:17517: result: "i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)"
1482
+ configure:17605: checking for simple visibility declarations
1483
+ configure:17627: /usr/bin/gcc-4.2 -std=gnu99 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -Werror -fvisibility=hidden conftest.c >&5
1484
+ configure:17627: $? = 0
1485
+ configure:17636: result: yes
1486
+ configure:17654: checking whether to enable assertions
1487
+ configure:17663: result: yes
1488
+ configure:17669: checking assert.h usability
1489
+ configure:17669: /usr/bin/gcc-4.2 -std=gnu99 -c -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1490
+ configure:17669: $? = 0
1491
+ configure:17669: result: yes
1492
+ configure:17669: checking assert.h presence
1493
+ configure:17669: /usr/bin/gcc-4.2 -E conftest.c
1494
+ configure:17669: $? = 0
1495
+ configure:17669: result: yes
1496
+ configure:17669: checking for assert.h
1497
+ configure:17669: result: yes
1498
+ configure:17787: checking whether it is safe to use -fdiagnostics-show-option
1499
+ configure:17805: /usr/bin/gcc-4.2 -std=gnu99 -c -fdiagnostics-show-option -O3 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1500
+ configure:17805: $? = 0
1501
+ configure:17813: result: yes
1502
+ configure:17822: checking whether it is safe to use -Wconversion
1503
+ configure:17848: /usr/bin/gcc-4.2 -std=gnu99 -c -Wconversion -Werror -pedantic -O3 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1504
+ cc1: warnings being treated as errors
1505
+ conftest.c: In function 'main':
1506
+ conftest.c:51: warning: passing argument 1 of 'foo' with different width due to prototype
1507
+ configure:17848: $? = 1
1508
+ configure: failed program was:
1509
+ | /* confdefs.h */
1510
+ | #define PACKAGE_NAME "libmemcached"
1511
+ | #define PACKAGE_TARNAME "libmemcached"
1512
+ | #define PACKAGE_VERSION "0.32"
1513
+ | #define PACKAGE_STRING "libmemcached 0.32"
1514
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1515
+ | #define PACKAGE_URL ""
1516
+ | #define STDC_HEADERS 1
1517
+ | #define HAVE_SYS_TYPES_H 1
1518
+ | #define HAVE_SYS_STAT_H 1
1519
+ | #define HAVE_STDLIB_H 1
1520
+ | #define HAVE_STRING_H 1
1521
+ | #define HAVE_MEMORY_H 1
1522
+ | #define HAVE_STRINGS_H 1
1523
+ | #define HAVE_INTTYPES_H 1
1524
+ | #define HAVE_STDINT_H 1
1525
+ | #define HAVE_UNISTD_H 1
1526
+ | #define __EXTENSIONS__ 1
1527
+ | #define _ALL_SOURCE 1
1528
+ | #define _GNU_SOURCE 1
1529
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1530
+ | #define _TANDEM_SOURCE 1
1531
+ | #define HAVE_DLFCN_H 1
1532
+ | #define LT_OBJDIR ".libs/"
1533
+ | #define HAVE_STDLIB_H 1
1534
+ | #define HAVE_MALLOC 1
1535
+ | #define HAVE_STDLIB_H 1
1536
+ | #define HAVE_REALLOC 1
1537
+ | #define PACKAGE "libmemcached"
1538
+ | #define VERSION "0.32"
1539
+ | #define STDCXX_98_HEADERS /**/
1540
+ | #define HAVE_MEMORY 1
1541
+ | #define HAVE_TR1_MEMORY 1
1542
+ | #define SHARED_PTR_NAMESPACE std::tr1
1543
+ | #define restrict __restrict
1544
+ | #define TIME_WITH_SYS_TIME 1
1545
+ | #define HAVE_VISIBILITY 1
1546
+ | #define HAVE_ASSERT_H 1
1547
+ | /* end confdefs.h. */
1548
+ |
1549
+ | #include <stdbool.h>
1550
+ | void foo(bool a)
1551
+ | {
1552
+ | (void)a;
1553
+ | }
1554
+ |
1555
+ | int
1556
+ | main ()
1557
+ | {
1558
+ |
1559
+ | foo(0);
1560
+ |
1561
+ | ;
1562
+ | return 0;
1563
+ | }
1564
+ configure:17856: result: no
1565
+ configure:17927: checking whether it is safe to use -Wmissing-declarations from C++
1566
+ configure:17955: g++ -c -Werror -pedantic -Wmissing-declarations -O3 conftest.cpp >&5
1567
+ cc1plus: warnings being treated as errors
1568
+ cc1plus: warning: command line option "-Wmissing-declarations" is valid for C/ObjC but not for C++
1569
+ configure:17955: $? = 1
1570
+ configure: failed program was:
1571
+ | /* confdefs.h */
1572
+ | #define PACKAGE_NAME "libmemcached"
1573
+ | #define PACKAGE_TARNAME "libmemcached"
1574
+ | #define PACKAGE_VERSION "0.32"
1575
+ | #define PACKAGE_STRING "libmemcached 0.32"
1576
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1577
+ | #define PACKAGE_URL ""
1578
+ | #define STDC_HEADERS 1
1579
+ | #define HAVE_SYS_TYPES_H 1
1580
+ | #define HAVE_SYS_STAT_H 1
1581
+ | #define HAVE_STDLIB_H 1
1582
+ | #define HAVE_STRING_H 1
1583
+ | #define HAVE_MEMORY_H 1
1584
+ | #define HAVE_STRINGS_H 1
1585
+ | #define HAVE_INTTYPES_H 1
1586
+ | #define HAVE_STDINT_H 1
1587
+ | #define HAVE_UNISTD_H 1
1588
+ | #define __EXTENSIONS__ 1
1589
+ | #define _ALL_SOURCE 1
1590
+ | #define _GNU_SOURCE 1
1591
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1592
+ | #define _TANDEM_SOURCE 1
1593
+ | #define HAVE_DLFCN_H 1
1594
+ | #define LT_OBJDIR ".libs/"
1595
+ | #define HAVE_STDLIB_H 1
1596
+ | #define HAVE_MALLOC 1
1597
+ | #define HAVE_STDLIB_H 1
1598
+ | #define HAVE_REALLOC 1
1599
+ | #define PACKAGE "libmemcached"
1600
+ | #define VERSION "0.32"
1601
+ | #define STDCXX_98_HEADERS /**/
1602
+ | #define HAVE_MEMORY 1
1603
+ | #define HAVE_TR1_MEMORY 1
1604
+ | #define SHARED_PTR_NAMESPACE std::tr1
1605
+ | #define restrict __restrict
1606
+ | #define TIME_WITH_SYS_TIME 1
1607
+ | #define HAVE_VISIBILITY 1
1608
+ | #define HAVE_ASSERT_H 1
1609
+ | /* end confdefs.h. */
1610
+ |
1611
+ |
1612
+ | #include <stdio.h>
1613
+ |
1614
+ | int
1615
+ | main ()
1616
+ | {
1617
+ |
1618
+ | ;
1619
+ | return 0;
1620
+ | }
1621
+ |
1622
+ configure:17970: result: no
1623
+ configure:17976: checking whether it is safe to use -Wlogical-op
1624
+ configure:17998: /usr/bin/gcc-4.2 -std=gnu99 -c -pedantic -Wlogical-op -O3 -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe conftest.c >&5
1625
+ cc1: error: unrecognized command line option "-Wlogical-op"
1626
+ configure:17998: $? = 1
1627
+ configure: failed program was:
1628
+ | /* confdefs.h */
1629
+ | #define PACKAGE_NAME "libmemcached"
1630
+ | #define PACKAGE_TARNAME "libmemcached"
1631
+ | #define PACKAGE_VERSION "0.32"
1632
+ | #define PACKAGE_STRING "libmemcached 0.32"
1633
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1634
+ | #define PACKAGE_URL ""
1635
+ | #define STDC_HEADERS 1
1636
+ | #define HAVE_SYS_TYPES_H 1
1637
+ | #define HAVE_SYS_STAT_H 1
1638
+ | #define HAVE_STDLIB_H 1
1639
+ | #define HAVE_STRING_H 1
1640
+ | #define HAVE_MEMORY_H 1
1641
+ | #define HAVE_STRINGS_H 1
1642
+ | #define HAVE_INTTYPES_H 1
1643
+ | #define HAVE_STDINT_H 1
1644
+ | #define HAVE_UNISTD_H 1
1645
+ | #define __EXTENSIONS__ 1
1646
+ | #define _ALL_SOURCE 1
1647
+ | #define _GNU_SOURCE 1
1648
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1649
+ | #define _TANDEM_SOURCE 1
1650
+ | #define HAVE_DLFCN_H 1
1651
+ | #define LT_OBJDIR ".libs/"
1652
+ | #define HAVE_STDLIB_H 1
1653
+ | #define HAVE_MALLOC 1
1654
+ | #define HAVE_STDLIB_H 1
1655
+ | #define HAVE_REALLOC 1
1656
+ | #define PACKAGE "libmemcached"
1657
+ | #define VERSION "0.32"
1658
+ | #define STDCXX_98_HEADERS /**/
1659
+ | #define HAVE_MEMORY 1
1660
+ | #define HAVE_TR1_MEMORY 1
1661
+ | #define SHARED_PTR_NAMESPACE std::tr1
1662
+ | #define restrict __restrict
1663
+ | #define TIME_WITH_SYS_TIME 1
1664
+ | #define HAVE_VISIBILITY 1
1665
+ | #define HAVE_ASSERT_H 1
1666
+ | /* end confdefs.h. */
1667
+ |
1668
+ |
1669
+ | #include <stdio.h>
1670
+ |
1671
+ | int
1672
+ | main ()
1673
+ | {
1674
+ |
1675
+ | ;
1676
+ | return 0;
1677
+ | }
1678
+ |
1679
+ configure:18006: result: no
1680
+ configure:18012: checking whether it is safe to use -Wredundant-decls from C++
1681
+ configure:18040: g++ -c -pedantic -Wredundant-decls -O3 conftest.cpp >&5
1682
+ conftest.cpp:43: warning: redundant redeclaration of 'void C<E>::foo() [with E = int]' in same scope
1683
+ conftest.cpp:42: warning: previous declaration of 'void C<E>::foo() [with E = int]'
1684
+ configure:18040: $? = 0
1685
+ configure:18054: result: yes
1686
+ configure:18594: checking for doxygen
1687
+ configure:18624: result: no
1688
+ configure:18636: checking for perl
1689
+ configure:18652: found /usr/bin/perl
1690
+ configure:18663: result: perl
1691
+ configure:18894: checking for the pthreads library -lpthreads
1692
+ configure:18927: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c -lpthreads >&5
1693
+ conftest.c: In function 'main':
1694
+ conftest.c:44: warning: 'th' is used uninitialized in this function
1695
+ ld: library not found for -lpthreads
1696
+ collect2: ld returned 1 exit status
1697
+ configure:18927: $? = 1
1698
+ configure: failed program was:
1699
+ | /* confdefs.h */
1700
+ | #define PACKAGE_NAME "libmemcached"
1701
+ | #define PACKAGE_TARNAME "libmemcached"
1702
+ | #define PACKAGE_VERSION "0.32"
1703
+ | #define PACKAGE_STRING "libmemcached 0.32"
1704
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1705
+ | #define PACKAGE_URL ""
1706
+ | #define STDC_HEADERS 1
1707
+ | #define HAVE_SYS_TYPES_H 1
1708
+ | #define HAVE_SYS_STAT_H 1
1709
+ | #define HAVE_STDLIB_H 1
1710
+ | #define HAVE_STRING_H 1
1711
+ | #define HAVE_MEMORY_H 1
1712
+ | #define HAVE_STRINGS_H 1
1713
+ | #define HAVE_INTTYPES_H 1
1714
+ | #define HAVE_STDINT_H 1
1715
+ | #define HAVE_UNISTD_H 1
1716
+ | #define __EXTENSIONS__ 1
1717
+ | #define _ALL_SOURCE 1
1718
+ | #define _GNU_SOURCE 1
1719
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1720
+ | #define _TANDEM_SOURCE 1
1721
+ | #define HAVE_DLFCN_H 1
1722
+ | #define LT_OBJDIR ".libs/"
1723
+ | #define HAVE_STDLIB_H 1
1724
+ | #define HAVE_MALLOC 1
1725
+ | #define HAVE_STDLIB_H 1
1726
+ | #define HAVE_REALLOC 1
1727
+ | #define PACKAGE "libmemcached"
1728
+ | #define VERSION "0.32"
1729
+ | #define STDCXX_98_HEADERS /**/
1730
+ | #define HAVE_MEMORY 1
1731
+ | #define HAVE_TR1_MEMORY 1
1732
+ | #define SHARED_PTR_NAMESPACE std::tr1
1733
+ | #define restrict __restrict
1734
+ | #define TIME_WITH_SYS_TIME 1
1735
+ | #define HAVE_VISIBILITY 1
1736
+ | #define HAVE_ASSERT_H 1
1737
+ | /* end confdefs.h. */
1738
+ | #include <pthread.h>
1739
+ | int
1740
+ | main ()
1741
+ | {
1742
+ | pthread_t th; pthread_join(th, 0);
1743
+ | pthread_attr_init(0); pthread_cleanup_push(0, 0);
1744
+ | pthread_create(0,0,0,0); pthread_cleanup_pop(0);
1745
+ | ;
1746
+ | return 0;
1747
+ | }
1748
+ configure:18936: result: no
1749
+ configure:18839: checking whether pthreads work without any flags
1750
+ configure:18927: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1751
+ conftest.c: In function 'main':
1752
+ conftest.c:44: warning: 'th' is used uninitialized in this function
1753
+ configure:18927: $? = 0
1754
+ configure:18936: result: yes
1755
+ configure:18955: checking for joinable pthread attribute
1756
+ configure:18970: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1757
+ configure:18970: $? = 0
1758
+ configure:18976: result: PTHREAD_CREATE_JOINABLE
1759
+ configure:18986: checking if more special flags are required for pthreads
1760
+ configure:18993: result: -D_THREAD_SAFE
1761
+ configure:19080: checking for library containing getopt_long
1762
+ configure:19111: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1763
+ configure:19111: $? = 0
1764
+ configure:19128: result: none required
1765
+ configure:19136: checking for library containing socket
1766
+ configure:19167: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1767
+ configure:19167: $? = 0
1768
+ configure:19184: result: none required
1769
+ configure:19192: checking for library containing gethostbyname
1770
+ configure:19223: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1771
+ configure:19223: $? = 0
1772
+ configure:19240: result: none required
1773
+ configure:19266: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c -lm >&5
1774
+ conftest.c: In function 'main':
1775
+ conftest.c:48: warning: implicit declaration of function 'floorf'
1776
+ conftest.c:48: warning: incompatible implicit declaration of built-in function 'floorf'
1777
+ configure:19266: $? = 0
1778
+ configure:19275: checking for library containing floorf
1779
+ configure:19306: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1780
+ conftest.c:48: warning: conflicting types for built-in function 'floorf'
1781
+ configure:19306: $? = 0
1782
+ configure:19323: result: none required
1783
+ configure:19333: checking for htonll
1784
+ configure:19361: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1785
+ conftest.c: In function 'main':
1786
+ conftest.c:51: warning: implicit declaration of function 'htonll'
1787
+ Undefined symbols for architecture x86_64:
1788
+ "_htonll", referenced from:
1789
+ _main in cc22uq6n.o
1790
+ ld: symbol(s) not found for architecture x86_64
1791
+ collect2: ld returned 1 exit status
1792
+ configure:19361: $? = 1
1793
+ configure: program exited with status 1
1794
+ configure: failed program was:
1795
+ | /* confdefs.h */
1796
+ | #define PACKAGE_NAME "libmemcached"
1797
+ | #define PACKAGE_TARNAME "libmemcached"
1798
+ | #define PACKAGE_VERSION "0.32"
1799
+ | #define PACKAGE_STRING "libmemcached 0.32"
1800
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1801
+ | #define PACKAGE_URL ""
1802
+ | #define STDC_HEADERS 1
1803
+ | #define HAVE_SYS_TYPES_H 1
1804
+ | #define HAVE_SYS_STAT_H 1
1805
+ | #define HAVE_STDLIB_H 1
1806
+ | #define HAVE_STRING_H 1
1807
+ | #define HAVE_MEMORY_H 1
1808
+ | #define HAVE_STRINGS_H 1
1809
+ | #define HAVE_INTTYPES_H 1
1810
+ | #define HAVE_STDINT_H 1
1811
+ | #define HAVE_UNISTD_H 1
1812
+ | #define __EXTENSIONS__ 1
1813
+ | #define _ALL_SOURCE 1
1814
+ | #define _GNU_SOURCE 1
1815
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1816
+ | #define _TANDEM_SOURCE 1
1817
+ | #define HAVE_DLFCN_H 1
1818
+ | #define LT_OBJDIR ".libs/"
1819
+ | #define HAVE_STDLIB_H 1
1820
+ | #define HAVE_MALLOC 1
1821
+ | #define HAVE_STDLIB_H 1
1822
+ | #define HAVE_REALLOC 1
1823
+ | #define PACKAGE "libmemcached"
1824
+ | #define VERSION "0.32"
1825
+ | #define STDCXX_98_HEADERS /**/
1826
+ | #define HAVE_MEMORY 1
1827
+ | #define HAVE_TR1_MEMORY 1
1828
+ | #define SHARED_PTR_NAMESPACE std::tr1
1829
+ | #define restrict __restrict
1830
+ | #define TIME_WITH_SYS_TIME 1
1831
+ | #define HAVE_VISIBILITY 1
1832
+ | #define HAVE_ASSERT_H 1
1833
+ | #define HAVE_PTHREAD 1
1834
+ | /* end confdefs.h. */
1835
+ |
1836
+ |
1837
+ | #include <sys/types.h>
1838
+ | #include <netinet/in.h>
1839
+ | #include <inttypes.h>
1840
+ |
1841
+ | int
1842
+ | main ()
1843
+ | {
1844
+ |
1845
+ | return htonll(0);
1846
+ |
1847
+ | ;
1848
+ | return 0;
1849
+ | }
1850
+ |
1851
+ configure:19374: result: no
1852
+ configure:19384: checking byteorder
1853
+ configure:19414: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1854
+ configure:19414: $? = 0
1855
+ configure:19414: ./conftest
1856
+ configure:19414: $? = 1
1857
+ configure: program exited with status 1
1858
+ configure: failed program was:
1859
+ | /* confdefs.h */
1860
+ | #define PACKAGE_NAME "libmemcached"
1861
+ | #define PACKAGE_TARNAME "libmemcached"
1862
+ | #define PACKAGE_VERSION "0.32"
1863
+ | #define PACKAGE_STRING "libmemcached 0.32"
1864
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1865
+ | #define PACKAGE_URL ""
1866
+ | #define STDC_HEADERS 1
1867
+ | #define HAVE_SYS_TYPES_H 1
1868
+ | #define HAVE_SYS_STAT_H 1
1869
+ | #define HAVE_STDLIB_H 1
1870
+ | #define HAVE_STRING_H 1
1871
+ | #define HAVE_MEMORY_H 1
1872
+ | #define HAVE_STRINGS_H 1
1873
+ | #define HAVE_INTTYPES_H 1
1874
+ | #define HAVE_STDINT_H 1
1875
+ | #define HAVE_UNISTD_H 1
1876
+ | #define __EXTENSIONS__ 1
1877
+ | #define _ALL_SOURCE 1
1878
+ | #define _GNU_SOURCE 1
1879
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1880
+ | #define _TANDEM_SOURCE 1
1881
+ | #define HAVE_DLFCN_H 1
1882
+ | #define LT_OBJDIR ".libs/"
1883
+ | #define HAVE_STDLIB_H 1
1884
+ | #define HAVE_MALLOC 1
1885
+ | #define HAVE_STDLIB_H 1
1886
+ | #define HAVE_REALLOC 1
1887
+ | #define PACKAGE "libmemcached"
1888
+ | #define VERSION "0.32"
1889
+ | #define STDCXX_98_HEADERS /**/
1890
+ | #define HAVE_MEMORY 1
1891
+ | #define HAVE_TR1_MEMORY 1
1892
+ | #define SHARED_PTR_NAMESPACE std::tr1
1893
+ | #define restrict __restrict
1894
+ | #define TIME_WITH_SYS_TIME 1
1895
+ | #define HAVE_VISIBILITY 1
1896
+ | #define HAVE_ASSERT_H 1
1897
+ | #define HAVE_PTHREAD 1
1898
+ | /* end confdefs.h. */
1899
+ |
1900
+ |
1901
+ | #include <sys/types.h>
1902
+ | #include <netinet/in.h>
1903
+ | #include <inttypes.h>
1904
+ |
1905
+ | int
1906
+ | main ()
1907
+ | {
1908
+ |
1909
+ | if (htonl(5) != 5) {
1910
+ | return 1;
1911
+ | }
1912
+ |
1913
+ | ;
1914
+ | return 0;
1915
+ | }
1916
+ |
1917
+ configure:19424: result: little endian
1918
+ configure:19508: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1919
+ configure:19508: $? = 0
1920
+ configure:19508: ./conftest
1921
+ configure:19508: $? = 0
1922
+ configure:19556: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1923
+ configure:19556: $? = 0
1924
+ configure:19556: ./conftest
1925
+ configure:19556: $? = 0
1926
+ configure:19599: checking for pod2man
1927
+ configure:19618: found /usr/bin/pod2man
1928
+ configure:19631: result: /usr/bin/pod2man
1929
+ configure:19677: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I. -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c >&5
1930
+ configure:19677: $? = 0
1931
+ configure:19677: ./conftest
1932
+ configure:19677: $? = 0
1933
+ configure:19812: checking for ld used by GCC
1934
+ configure:19876: result: /usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
1935
+ configure:19883: checking if the linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
1936
+ configure:19896: result: no
1937
+ configure:19903: checking for shared library run path origin
1938
+ configure:19916: result: done
1939
+ configure:20441: checking for libsasl
1940
+ configure:20468: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c -lsasl >&5
1941
+ ld: library not found for -lsasl
1942
+ collect2: ld returned 1 exit status
1943
+ configure:20468: $? = 1
1944
+ configure: failed program was:
1945
+ | /* confdefs.h */
1946
+ | #define PACKAGE_NAME "libmemcached"
1947
+ | #define PACKAGE_TARNAME "libmemcached"
1948
+ | #define PACKAGE_VERSION "0.32"
1949
+ | #define PACKAGE_STRING "libmemcached 0.32"
1950
+ | #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
1951
+ | #define PACKAGE_URL ""
1952
+ | #define STDC_HEADERS 1
1953
+ | #define HAVE_SYS_TYPES_H 1
1954
+ | #define HAVE_SYS_STAT_H 1
1955
+ | #define HAVE_STDLIB_H 1
1956
+ | #define HAVE_STRING_H 1
1957
+ | #define HAVE_MEMORY_H 1
1958
+ | #define HAVE_STRINGS_H 1
1959
+ | #define HAVE_INTTYPES_H 1
1960
+ | #define HAVE_STDINT_H 1
1961
+ | #define HAVE_UNISTD_H 1
1962
+ | #define __EXTENSIONS__ 1
1963
+ | #define _ALL_SOURCE 1
1964
+ | #define _GNU_SOURCE 1
1965
+ | #define _POSIX_PTHREAD_SEMANTICS 1
1966
+ | #define _TANDEM_SOURCE 1
1967
+ | #define HAVE_DLFCN_H 1
1968
+ | #define LT_OBJDIR ".libs/"
1969
+ | #define HAVE_STDLIB_H 1
1970
+ | #define HAVE_MALLOC 1
1971
+ | #define HAVE_STDLIB_H 1
1972
+ | #define HAVE_REALLOC 1
1973
+ | #define PACKAGE "libmemcached"
1974
+ | #define VERSION "0.32"
1975
+ | #define STDCXX_98_HEADERS /**/
1976
+ | #define HAVE_MEMORY 1
1977
+ | #define HAVE_TR1_MEMORY 1
1978
+ | #define SHARED_PTR_NAMESPACE std::tr1
1979
+ | #define restrict __restrict
1980
+ | #define TIME_WITH_SYS_TIME 1
1981
+ | #define HAVE_VISIBILITY 1
1982
+ | #define HAVE_ASSERT_H 1
1983
+ | #define HAVE_PTHREAD 1
1984
+ | #define BYTEORDER_LITTLE_ENDIAN 1
1985
+ | #define HAVE_SNDTIMEO 1
1986
+ | #define HAVE_RCVTIMEO 1
1987
+ | #define MEMCACHED_BINARY "memcached"
1988
+ | /* end confdefs.h. */
1989
+ |
1990
+ | #include <stdlib.h>
1991
+ | #include <sasl/sasl.h>
1992
+ |
1993
+ | int
1994
+ | main ()
1995
+ | {
1996
+ |
1997
+ | sasl_server_init(NULL, NULL);
1998
+ |
1999
+ | ;
2000
+ | return 0;
2001
+ | }
2002
+ configure:20478: result: no
2003
+ configure:20999: checking for libsasl2
2004
+ configure:21026: /usr/bin/gcc-4.2 -std=gnu99 -o conftest -D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe -I/Users/tom/Code/Ruby/memcached/ext/include -fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib conftest.c -lsasl2 >&5
2005
+ configure:21026: $? = 0
2006
+ configure:21036: result: yes
2007
+ configure:21043: checking how to link with libsasl2
2008
+ configure:21045: result: -lsasl2
2009
+ configure:21283: creating ./config.status
2010
+
2011
+ ## ---------------------- ##
2012
+ ## Running config.status. ##
2013
+ ## ---------------------- ##
2014
+
2015
+ This file was extended by libmemcached config.status 0.32, which was
2016
+ generated by GNU Autoconf 2.68. Invocation command line was
2017
+
2018
+ CONFIG_FILES =
2019
+ CONFIG_HEADERS =
2020
+ CONFIG_LINKS =
2021
+ CONFIG_COMMANDS =
2022
+ $ ./config.status
2023
+
2024
+ on Thomass-MacBook-Pro.local
2025
+
2026
+ config.status:1246: creating Makefile
2027
+ config.status:1246: creating clients/Makefile
2028
+ config.status:1246: creating tests/Makefile
2029
+ config.status:1246: creating docs/Makefile
2030
+ config.status:1246: creating libmemcached/Makefile
2031
+ config.status:1246: creating libmemcached/memcached_configure.h
2032
+ config.status:1246: creating libmemcachedutil/Makefile
2033
+ config.status:1246: creating support/Makefile
2034
+ config.status:1246: creating support/libmemcached.pc
2035
+ config.status:1246: creating support/libmemcached.spec
2036
+ config.status:1246: creating support/libmemcached-fc.spec
2037
+ config.status:1246: creating config.h
2038
+ config.status:1427: config.h is unchanged
2039
+ config.status:1475: executing depfiles commands
2040
+ config.status:1475: executing libtool commands
2041
+
2042
+ ## ---------------- ##
2043
+ ## Cache variables. ##
2044
+ ## ---------------- ##
2045
+
2046
+ ac_cv_assert=yes
2047
+ ac_cv_build=i386-apple-darwin11.4.0
2048
+ ac_cv_building_from_bzr=no
2049
+ ac_cv_building_from_hg=no
2050
+ ac_cv_building_from_svn=no
2051
+ ac_cv_building_from_vc=no
2052
+ ac_cv_c_bigendian=no
2053
+ ac_cv_c_compiler_gnu=yes
2054
+ ac_cv_c_const=yes
2055
+ ac_cv_c_inline=inline
2056
+ ac_cv_c_restrict=__restrict
2057
+ ac_cv_c_volatile=yes
2058
+ ac_cv_cxx_compile_cxx0x_cxx=no
2059
+ ac_cv_cxx_compile_cxx0x_gxx=no
2060
+ ac_cv_cxx_compile_cxx0x_native=no
2061
+ ac_cv_cxx_compiler_gnu=yes
2062
+ ac_cv_cxx_stdcxx_98=yes
2063
+ ac_cv_enable_dtrace=no
2064
+ ac_cv_enable_hsieh_hash=no
2065
+ ac_cv_env_CCC_set=
2066
+ ac_cv_env_CCC_value=
2067
+ ac_cv_env_CC_set=set
2068
+ ac_cv_env_CC_value=/usr/bin/gcc-4.2
2069
+ ac_cv_env_CFLAGS_set=set
2070
+ ac_cv_env_CFLAGS_value='-fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe'
2071
+ ac_cv_env_CPPFLAGS_set=
2072
+ ac_cv_env_CPPFLAGS_value=
2073
+ ac_cv_env_CPP_set=
2074
+ ac_cv_env_CPP_value=
2075
+ ac_cv_env_CXXCPP_set=
2076
+ ac_cv_env_CXXCPP_value=
2077
+ ac_cv_env_CXXFLAGS_set=
2078
+ ac_cv_env_CXXFLAGS_value=
2079
+ ac_cv_env_CXX_set=
2080
+ ac_cv_env_CXX_value=
2081
+ ac_cv_env_LDFLAGS_set=set
2082
+ ac_cv_env_LDFLAGS_value='-fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib'
2083
+ ac_cv_env_LIBS_set=
2084
+ ac_cv_env_LIBS_value=
2085
+ ac_cv_env_build_alias_set=
2086
+ ac_cv_env_build_alias_value=
2087
+ ac_cv_env_host_alias_set=
2088
+ ac_cv_env_host_alias_value=
2089
+ ac_cv_env_target_alias_set=
2090
+ ac_cv_env_target_alias_value=
2091
+ ac_cv_func_malloc_0_nonnull=yes
2092
+ ac_cv_func_realloc_0_nonnull=yes
2093
+ ac_cv_have_decl___ICC=no
2094
+ ac_cv_have_decl___SUNPRO_C=no
2095
+ ac_cv_header_assert_h=yes
2096
+ ac_cv_header_boost_shared_ptr_hpp=no
2097
+ ac_cv_header_dlfcn_h=yes
2098
+ ac_cv_header_inttypes_h=yes
2099
+ ac_cv_header_memory=yes
2100
+ ac_cv_header_memory_h=yes
2101
+ ac_cv_header_minix_config_h=no
2102
+ ac_cv_header_stdc=yes
2103
+ ac_cv_header_stdint_h=yes
2104
+ ac_cv_header_stdlib_h=yes
2105
+ ac_cv_header_string_h=yes
2106
+ ac_cv_header_strings_h=yes
2107
+ ac_cv_header_sys_stat_h=yes
2108
+ ac_cv_header_sys_types_h=yes
2109
+ ac_cv_header_time=yes
2110
+ ac_cv_header_tr1_memory=yes
2111
+ ac_cv_header_unistd_h=yes
2112
+ ac_cv_host=i386-apple-darwin11.4.0
2113
+ ac_cv_libsasl2=yes
2114
+ ac_cv_libsasl=no
2115
+ ac_cv_objext=o
2116
+ ac_cv_path_EGREP='/usr/bin/grep -E'
2117
+ ac_cv_path_FGREP='/usr/bin/grep -F'
2118
+ ac_cv_path_GREP=/usr/bin/grep
2119
+ ac_cv_path_POD2MAN=/usr/bin/pod2man
2120
+ ac_cv_path_SED=/usr/bin/sed
2121
+ ac_cv_path_install='/usr/bin/install -c'
2122
+ ac_cv_prog_AWK=awk
2123
+ ac_cv_prog_CPP='/usr/bin/gcc-4.2 -E'
2124
+ ac_cv_prog_CXXCPP='g++ -E'
2125
+ ac_cv_prog_PERL=perl
2126
+ ac_cv_prog_ac_ct_AR=ar
2127
+ ac_cv_prog_ac_ct_CC=/usr/bin/gcc-4.2
2128
+ ac_cv_prog_ac_ct_CXX=g++
2129
+ ac_cv_prog_ac_ct_DSYMUTIL=dsymutil
2130
+ ac_cv_prog_ac_ct_LIPO=lipo
2131
+ ac_cv_prog_ac_ct_NMEDIT=nmedit
2132
+ ac_cv_prog_ac_ct_OTOOL=otool
2133
+ ac_cv_prog_ac_ct_RANLIB=ranlib
2134
+ ac_cv_prog_ac_ct_STRIP=strip
2135
+ ac_cv_prog_cc__usr_bin_gcc_4_2_c_o=yes
2136
+ ac_cv_prog_cc_c89=
2137
+ ac_cv_prog_cc_g=yes
2138
+ ac_cv_prog_cxx_g=yes
2139
+ ac_cv_prog_make_make_set=yes
2140
+ ac_cv_safe_to_define___extensions__=yes
2141
+ ac_cv_safe_to_use_Wlogical_op_=no
2142
+ ac_cv_safe_to_use_Wmissing_declarations_=no
2143
+ ac_cv_safe_to_use_Wredundant_decls_=yes
2144
+ ac_cv_safe_to_use_fdiagnostics_show_option_=yes
2145
+ ac_cv_safe_to_use_wconversion_=no
2146
+ ac_cv_sasl=yes
2147
+ ac_cv_search_floorf='none required'
2148
+ ac_cv_search_gethostbyname='none required'
2149
+ ac_cv_search_getopt_long='none required'
2150
+ ac_cv_search_socket='none required'
2151
+ ac_cv_shared_ptr_namespace=std::tr1
2152
+ ac_cv_sys_file_offset_bits=no
2153
+ ac_cv_sys_largefile_CC=no
2154
+ ac_cv_target=i386-apple-darwin11.4.0
2155
+ ac_cv_type_size_t=yes
2156
+ ac_cv_warnings_as_errors=no
2157
+ ac_cv_with_memcached=memcached
2158
+ acl_cv_hardcode_direct=no
2159
+ acl_cv_hardcode_libdir_flag_spec=
2160
+ acl_cv_hardcode_libdir_separator=
2161
+ acl_cv_hardcode_minus_L=no
2162
+ acl_cv_libext=a
2163
+ acl_cv_libname_spec='lib$name'
2164
+ acl_cv_library_names_spec='$libname$shrext'
2165
+ acl_cv_path_LD=/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
2166
+ acl_cv_prog_gnu_ld=no
2167
+ acl_cv_rpath=done
2168
+ acl_cv_shlibext=dylib
2169
+ acl_cv_wl=-Wl,
2170
+ am_cv_CC_dependencies_compiler_type=none
2171
+ am_cv_CXX_dependencies_compiler_type=none
2172
+ gl_cv_cc_visibility=yes
2173
+ lt_cv_apple_cc_single_mod=yes
2174
+ lt_cv_ar_at_file=no
2175
+ lt_cv_deplibs_check_method=pass_all
2176
+ lt_cv_file_magic_cmd='$MAGIC_CMD'
2177
+ lt_cv_file_magic_test_file=
2178
+ lt_cv_ld_exported_symbols_list=yes
2179
+ lt_cv_ld_force_load=yes
2180
+ lt_cv_ld_reload_flag=-r
2181
+ lt_cv_nm_interface='BSD nm'
2182
+ lt_cv_objdir=.libs
2183
+ lt_cv_path_LD=/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
2184
+ lt_cv_path_LDCXX=/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
2185
+ lt_cv_path_NM=/usr/bin/nm
2186
+ lt_cv_path_mainfest_tool=no
2187
+ lt_cv_prog_compiler_c_o=yes
2188
+ lt_cv_prog_compiler_c_o_CXX=yes
2189
+ lt_cv_prog_compiler_pic='-fno-common -DPIC'
2190
+ lt_cv_prog_compiler_pic_CXX='-fno-common -DPIC'
2191
+ lt_cv_prog_compiler_pic_works=yes
2192
+ lt_cv_prog_compiler_pic_works_CXX=yes
2193
+ lt_cv_prog_compiler_rtti_exceptions=no
2194
+ lt_cv_prog_compiler_static_works=no
2195
+ lt_cv_prog_compiler_static_works_CXX=no
2196
+ lt_cv_prog_gnu_ld=no
2197
+ lt_cv_prog_gnu_ldcxx=no
2198
+ lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
2199
+ lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
2200
+ lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
2201
+ 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'\'''
2202
+ lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\'''
2203
+ lt_cv_sys_max_cmd_len=196608
2204
+ lt_cv_to_host_file_cmd=func_convert_file_noop
2205
+ lt_cv_to_tool_file_cmd=func_convert_file_noop
2206
+
2207
+ ## ----------------- ##
2208
+ ## Output variables. ##
2209
+ ## ----------------- ##
2210
+
2211
+ ACLOCAL='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run aclocal-1.11'
2212
+ AMDEPBACKSLASH=''
2213
+ AMDEP_FALSE=''
2214
+ AMDEP_TRUE='#'
2215
+ AMTAR='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run tar'
2216
+ AM_CFLAGS=' -O3 -pedantic -Wall -Wextra -Wundef -Wshadow -fdiagnostics-show-option -fvisibility=hidden -Wformat=2 -Wstrict-aliasing -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wcast-align -Wswitch-default -Wswitch-enum -Wwrite-strings '
2217
+ AM_CPPFLAGS='-I${top_srcdir} -I${top_builddir} -ggdb3 '
2218
+ AM_CXXFLAGS=' -O3 -pedantic -Wall -Wextra -Wundef -Wshadow -fdiagnostics-show-option -fvisibility=hidden -Wformat=2 -Wstrict-aliasing -Woverloaded-virtual -Wnon-virtual-dtor -Wctor-dtor-privacy -Wno-long-long -Weffc++ -Wold-style-cast -Wredundant-decls '
2219
+ AR='ar'
2220
+ AUTOCONF='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run autoconf'
2221
+ AUTOHEADER='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run autoheader'
2222
+ AUTOMAKE='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run automake-1.11'
2223
+ AWK='awk'
2224
+ BETTER_MALLOC_LIBS=''
2225
+ BUILD_BYTEORDER_FALSE='#'
2226
+ BUILD_BYTEORDER_TRUE=''
2227
+ BUILD_LIBMEMCACHEDUTIL_FALSE=''
2228
+ BUILD_LIBMEMCACHEDUTIL_TRUE='#'
2229
+ CC='/usr/bin/gcc-4.2 -std=gnu99'
2230
+ CCDEPMODE='depmode=none'
2231
+ CC_VERSION='i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)'
2232
+ CFLAGS='-D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe'
2233
+ CFLAG_VISIBILITY='-fvisibility=hidden'
2234
+ CPP='/usr/bin/gcc-4.2 -E'
2235
+ CPPFLAGS='-I/Users/tom/Code/Ruby/memcached/ext/include'
2236
+ CXX='g++'
2237
+ CXXCPP='g++ -E'
2238
+ CXXDEPMODE='depmode=none'
2239
+ CXXFLAGS='-std=gnu++98'
2240
+ CXX_VERSION='i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)'
2241
+ CYGPATH_W='echo'
2242
+ DEFS='-DHAVE_CONFIG_H'
2243
+ DEPDIR='.deps'
2244
+ DEPRECATED=''
2245
+ DLLTOOL='false'
2246
+ DOXYGEN=''
2247
+ DSYMUTIL='dsymutil'
2248
+ DTRACE=''
2249
+ DTRACEFLAGS=''
2250
+ DTRACE_NEEDS_OBJECTS_FALSE=''
2251
+ DTRACE_NEEDS_OBJECTS_TRUE='#'
2252
+ DUMPBIN=''
2253
+ ECHO_C='\c'
2254
+ ECHO_N=''
2255
+ ECHO_T=''
2256
+ EGREP='/usr/bin/grep -E'
2257
+ EXEEXT=''
2258
+ FGREP='/usr/bin/grep -F'
2259
+ GREP='/usr/bin/grep'
2260
+ HAVE_DTRACE_FALSE=''
2261
+ HAVE_DTRACE_TRUE='#'
2262
+ HAVE_LIBSASL2='yes'
2263
+ HAVE_LIBSASL2_FALSE='#'
2264
+ HAVE_LIBSASL2_TRUE=''
2265
+ HAVE_LIBSASL='yes'
2266
+ HAVE_LIBSASL_FALSE=''
2267
+ HAVE_LIBSASL_TRUE='#'
2268
+ HAVE_SASL_FALSE='#'
2269
+ HAVE_SASL_TRUE=''
2270
+ HAVE_VISIBILITY='1'
2271
+ INCLUDE_HSIEH_SRC_FALSE=''
2272
+ INCLUDE_HSIEH_SRC_TRUE='#'
2273
+ INSTALL_DATA='${INSTALL} -m 644'
2274
+ INSTALL_PROGRAM='${INSTALL}'
2275
+ INSTALL_SCRIPT='${INSTALL}'
2276
+ INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
2277
+ ISAINFO='no'
2278
+ LD='/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld'
2279
+ LDFLAGS='-fPIC -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L. -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/.rbenv/versions/1.9.3-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib'
2280
+ LD_UTIL_VERSION_SCRIPT=''
2281
+ LD_VERSION_SCRIPT=''
2282
+ LIBC_P=''
2283
+ LIBM=''
2284
+ LIBMEMCACHED_WITH_SASL_SUPPORT='#define LIBMEMCACHED_WITH_SASL_SUPPORT 1'
2285
+ LIBOBJS=''
2286
+ LIBS=' '
2287
+ LIBSASL2='-lsasl2'
2288
+ LIBSASL2_PREFIX=''
2289
+ LIBSASL='-lsasl2'
2290
+ LIBSASL_PREFIX=''
2291
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
2292
+ LIPO='lipo'
2293
+ LN_S='ln -s'
2294
+ LTLIBOBJS=''
2295
+ LTLIBSASL2='-lsasl2'
2296
+ LTLIBSASL='-lsasl2'
2297
+ MAKEINFO='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run makeinfo'
2298
+ MANIFEST_TOOL=':'
2299
+ MEMCACHEDUTIL_LIBRARY_VERSION='0:0:0'
2300
+ MEMCACHED_LIBRARY_VERSION='2:0:0'
2301
+ MEMC_BINARY='memcached'
2302
+ MKDIR_P='config/install-sh -c -d'
2303
+ NM='/usr/bin/nm'
2304
+ NMEDIT='nmedit'
2305
+ NO_CONVERSION=''
2306
+ NO_REDUNDANT_DECLS='-Wno-redundant-decls'
2307
+ NO_SHADOW='-Wno-shadow'
2308
+ NO_STRICT_ALIASING='-fno-strict-aliasing -Wno-strict-aliasing'
2309
+ NO_UNREACHED=''
2310
+ OBJDUMP='false'
2311
+ OBJEXT='o'
2312
+ OTOOL64=':'
2313
+ OTOOL='otool'
2314
+ PACKAGE='libmemcached'
2315
+ PACKAGE_BUGREPORT='http://tangent.org/552/libmemcached.html'
2316
+ PACKAGE_NAME='libmemcached'
2317
+ PACKAGE_STRING='libmemcached 0.32'
2318
+ PACKAGE_TARNAME='libmemcached'
2319
+ PACKAGE_URL=''
2320
+ PACKAGE_VERSION='0.32'
2321
+ PATH_SEPARATOR=':'
2322
+ PERL='perl'
2323
+ POD2MAN='/usr/bin/pod2man'
2324
+ PROTOSKIP_WARNINGS='-Wno-effc++ -Wno-shadow'
2325
+ PTHREAD_CC='/usr/bin/gcc-4.2 -std=gnu99'
2326
+ PTHREAD_CFLAGS='-D_THREAD_SAFE '
2327
+ PTHREAD_LIBS=''
2328
+ RANLIB='ranlib'
2329
+ SED='/usr/bin/sed'
2330
+ SET_MAKE=''
2331
+ SHELL='/bin/sh'
2332
+ STRIP='strip'
2333
+ VERSION='0.32'
2334
+ ac_ct_AR='ar'
2335
+ ac_ct_CC='/usr/bin/gcc-4.2'
2336
+ ac_ct_CXX='g++'
2337
+ ac_ct_DUMPBIN=''
2338
+ acx_pthread_config=''
2339
+ am__EXEEXT_FALSE=''
2340
+ am__EXEEXT_TRUE='#'
2341
+ am__fastdepCC_FALSE=''
2342
+ am__fastdepCC_TRUE='#'
2343
+ am__fastdepCXX_FALSE=''
2344
+ am__fastdepCXX_TRUE='#'
2345
+ am__include='include'
2346
+ am__isrc=''
2347
+ am__leading_dot='.'
2348
+ am__quote=''
2349
+ am__tar='${AMTAR} chof - "$$tardir"'
2350
+ am__untar='${AMTAR} xf -'
2351
+ bindir='${exec_prefix}/bin'
2352
+ build='i386-apple-darwin11.4.0'
2353
+ build_alias=''
2354
+ build_cpu='i386'
2355
+ build_os='darwin11.4.0'
2356
+ build_vendor='apple'
2357
+ datadir='${datarootdir}'
2358
+ datarootdir='${prefix}/share'
2359
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
2360
+ dvidir='${docdir}'
2361
+ exec_prefix='${prefix}'
2362
+ host='i386-apple-darwin11.4.0'
2363
+ host_alias=''
2364
+ host_cpu='i386'
2365
+ host_os='darwin11.4.0'
2366
+ host_vendor='apple'
2367
+ htmldir='${docdir}'
2368
+ includedir='${prefix}/include'
2369
+ infodir='${datarootdir}/info'
2370
+ install_sh='${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/install-sh'
2371
+ libdir='${exec_prefix}/lib'
2372
+ libexecdir='${exec_prefix}/libexec'
2373
+ localedir='${datarootdir}/locale'
2374
+ localstatedir='${prefix}/var'
2375
+ mandir='${datarootdir}/man'
2376
+ mkdir_p='$(top_builddir)/config/install-sh -c -d'
2377
+ oldincludedir='/usr/include'
2378
+ pdfdir='${docdir}'
2379
+ prefix='/Users/tom/Code/Ruby/memcached/ext'
2380
+ program_transform_name='s,x,x,'
2381
+ psdir='${docdir}'
2382
+ sbindir='${exec_prefix}/sbin'
2383
+ sharedstatedir='${prefix}/com'
2384
+ sysconfdir='${prefix}/etc'
2385
+ target='i386-apple-darwin11.4.0'
2386
+ target_alias=''
2387
+ target_cpu='i386'
2388
+ target_os='darwin11.4.0'
2389
+ target_vendor='apple'
2390
+
2391
+ ## ----------- ##
2392
+ ## confdefs.h. ##
2393
+ ## ----------- ##
2394
+
2395
+ /* confdefs.h */
2396
+ #define PACKAGE_NAME "libmemcached"
2397
+ #define PACKAGE_TARNAME "libmemcached"
2398
+ #define PACKAGE_VERSION "0.32"
2399
+ #define PACKAGE_STRING "libmemcached 0.32"
2400
+ #define PACKAGE_BUGREPORT "http://tangent.org/552/libmemcached.html"
2401
+ #define PACKAGE_URL ""
2402
+ #define STDC_HEADERS 1
2403
+ #define HAVE_SYS_TYPES_H 1
2404
+ #define HAVE_SYS_STAT_H 1
2405
+ #define HAVE_STDLIB_H 1
2406
+ #define HAVE_STRING_H 1
2407
+ #define HAVE_MEMORY_H 1
2408
+ #define HAVE_STRINGS_H 1
2409
+ #define HAVE_INTTYPES_H 1
2410
+ #define HAVE_STDINT_H 1
2411
+ #define HAVE_UNISTD_H 1
2412
+ #define __EXTENSIONS__ 1
2413
+ #define _ALL_SOURCE 1
2414
+ #define _GNU_SOURCE 1
2415
+ #define _POSIX_PTHREAD_SEMANTICS 1
2416
+ #define _TANDEM_SOURCE 1
2417
+ #define HAVE_DLFCN_H 1
2418
+ #define LT_OBJDIR ".libs/"
2419
+ #define HAVE_STDLIB_H 1
2420
+ #define HAVE_MALLOC 1
2421
+ #define HAVE_STDLIB_H 1
2422
+ #define HAVE_REALLOC 1
2423
+ #define PACKAGE "libmemcached"
2424
+ #define VERSION "0.32"
2425
+ #define STDCXX_98_HEADERS /**/
2426
+ #define HAVE_MEMORY 1
2427
+ #define HAVE_TR1_MEMORY 1
2428
+ #define SHARED_PTR_NAMESPACE std::tr1
2429
+ #define restrict __restrict
2430
+ #define TIME_WITH_SYS_TIME 1
2431
+ #define HAVE_VISIBILITY 1
2432
+ #define HAVE_ASSERT_H 1
2433
+ #define HAVE_PTHREAD 1
2434
+ #define BYTEORDER_LITTLE_ENDIAN 1
2435
+ #define HAVE_SNDTIMEO 1
2436
+ #define HAVE_RCVTIMEO 1
2437
+ #define MEMCACHED_BINARY "memcached"
2438
+ #define HAVE_LIBSASL2 1
2439
+
2440
+ configure: exit 0