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,2384 @@
1
+ #! /bin/sh
2
+ # Generated by configure.
3
+ # Run this file to recreate the current configuration.
4
+ # Compiler output produced by configure, useful for debugging
5
+ # configure, is in config.log if it exists.
6
+
7
+ debug=false
8
+ ac_cs_recheck=false
9
+ ac_cs_silent=false
10
+
11
+ SHELL=${CONFIG_SHELL-/bin/sh}
12
+ export SHELL
13
+ ## -------------------- ##
14
+ ## M4sh Initialization. ##
15
+ ## -------------------- ##
16
+
17
+ # Be more Bourne compatible
18
+ DUALCASE=1; export DUALCASE # for MKS sh
19
+ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20
+ emulate sh
21
+ NULLCMD=:
22
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23
+ # is contrary to our usage. Disable this feature.
24
+ alias -g '${1+"$@"}'='"$@"'
25
+ setopt NO_GLOB_SUBST
26
+ else
27
+ case `(set -o) 2>/dev/null` in #(
28
+ *posix*) :
29
+ set -o posix ;; #(
30
+ *) :
31
+ ;;
32
+ esac
33
+ fi
34
+
35
+
36
+ as_nl='
37
+ '
38
+ export as_nl
39
+ # Printing a long string crashes Solaris 7 /usr/bin/printf.
40
+ as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43
+ # Prefer a ksh shell builtin over an external printf program on Solaris,
44
+ # but without wasting forks for bash or zsh.
45
+ if test -z "$BASH_VERSION$ZSH_VERSION" \
46
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47
+ as_echo='print -r --'
48
+ as_echo_n='print -rn --'
49
+ elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50
+ as_echo='printf %s\n'
51
+ as_echo_n='printf %s'
52
+ else
53
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54
+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55
+ as_echo_n='/usr/ucb/echo -n'
56
+ else
57
+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58
+ as_echo_n_body='eval
59
+ arg=$1;
60
+ case $arg in #(
61
+ *"$as_nl"*)
62
+ expr "X$arg" : "X\\(.*\\)$as_nl";
63
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64
+ esac;
65
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66
+ '
67
+ export as_echo_n_body
68
+ as_echo_n='sh -c $as_echo_n_body as_echo'
69
+ fi
70
+ export as_echo_body
71
+ as_echo='sh -c $as_echo_body as_echo'
72
+ fi
73
+
74
+ # The user is always right.
75
+ if test "${PATH_SEPARATOR+set}" != set; then
76
+ PATH_SEPARATOR=:
77
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79
+ PATH_SEPARATOR=';'
80
+ }
81
+ fi
82
+
83
+
84
+ # IFS
85
+ # We need space, tab and new line, in precisely that order. Quoting is
86
+ # there to prevent editors from complaining about space-tab.
87
+ # (If _AS_PATH_WALK were called with IFS unset, it would disable word
88
+ # splitting by setting IFS to empty value.)
89
+ IFS=" "" $as_nl"
90
+
91
+ # Find who we are. Look in the path if we contain no directory separator.
92
+ as_myself=
93
+ case $0 in #((
94
+ *[\\/]* ) as_myself=$0 ;;
95
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
96
+ for as_dir in $PATH
97
+ do
98
+ IFS=$as_save_IFS
99
+ test -z "$as_dir" && as_dir=.
100
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
101
+ done
102
+ IFS=$as_save_IFS
103
+
104
+ ;;
105
+ esac
106
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
107
+ # in which case we are not to be found in the path.
108
+ if test "x$as_myself" = x; then
109
+ as_myself=$0
110
+ fi
111
+ if test ! -f "$as_myself"; then
112
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113
+ exit 1
114
+ fi
115
+
116
+ # Unset variables that we do not need and which cause bugs (e.g. in
117
+ # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
118
+ # suppresses any "Segmentation fault" message there. '((' could
119
+ # trigger a bug in pdksh 5.2.14.
120
+ for as_var in BASH_ENV ENV MAIL MAILPATH
121
+ do eval test x\${$as_var+set} = xset \
122
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
123
+ done
124
+ PS1='$ '
125
+ PS2='> '
126
+ PS4='+ '
127
+
128
+ # NLS nuisances.
129
+ LC_ALL=C
130
+ export LC_ALL
131
+ LANGUAGE=C
132
+ export LANGUAGE
133
+
134
+ # CDPATH.
135
+ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
136
+
137
+
138
+ # as_fn_error STATUS ERROR [LINENO LOG_FD]
139
+ # ----------------------------------------
140
+ # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
141
+ # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
142
+ # script with STATUS, using 1 if that was 0.
143
+ as_fn_error ()
144
+ {
145
+ as_status=$1; test $as_status -eq 0 && as_status=1
146
+ if test "$4"; then
147
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
148
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
149
+ fi
150
+ $as_echo "$as_me: error: $2" >&2
151
+ as_fn_exit $as_status
152
+ } # as_fn_error
153
+
154
+
155
+ # as_fn_set_status STATUS
156
+ # -----------------------
157
+ # Set $? to STATUS, without forking.
158
+ as_fn_set_status ()
159
+ {
160
+ return $1
161
+ } # as_fn_set_status
162
+
163
+ # as_fn_exit STATUS
164
+ # -----------------
165
+ # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
166
+ as_fn_exit ()
167
+ {
168
+ set +e
169
+ as_fn_set_status $1
170
+ exit $1
171
+ } # as_fn_exit
172
+
173
+ # as_fn_unset VAR
174
+ # ---------------
175
+ # Portably unset VAR.
176
+ as_fn_unset ()
177
+ {
178
+ { eval $1=; unset $1;}
179
+ }
180
+ as_unset=as_fn_unset
181
+ # as_fn_append VAR VALUE
182
+ # ----------------------
183
+ # Append the text in VALUE to the end of the definition contained in VAR. Take
184
+ # advantage of any shell optimizations that allow amortized linear growth over
185
+ # repeated appends, instead of the typical quadratic growth present in naive
186
+ # implementations.
187
+ if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
188
+ eval 'as_fn_append ()
189
+ {
190
+ eval $1+=\$2
191
+ }'
192
+ else
193
+ as_fn_append ()
194
+ {
195
+ eval $1=\$$1\$2
196
+ }
197
+ fi # as_fn_append
198
+
199
+ # as_fn_arith ARG...
200
+ # ------------------
201
+ # Perform arithmetic evaluation on the ARGs, and store the result in the
202
+ # global $as_val. Take advantage of shells that can avoid forks. The arguments
203
+ # must be portable across $(()) and expr.
204
+ if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
205
+ eval 'as_fn_arith ()
206
+ {
207
+ as_val=$(( $* ))
208
+ }'
209
+ else
210
+ as_fn_arith ()
211
+ {
212
+ as_val=`expr "$@" || test $? -eq 1`
213
+ }
214
+ fi # as_fn_arith
215
+
216
+
217
+ if expr a : '\(a\)' >/dev/null 2>&1 &&
218
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
219
+ as_expr=expr
220
+ else
221
+ as_expr=false
222
+ fi
223
+
224
+ if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
225
+ as_basename=basename
226
+ else
227
+ as_basename=false
228
+ fi
229
+
230
+ if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
231
+ as_dirname=dirname
232
+ else
233
+ as_dirname=false
234
+ fi
235
+
236
+ as_me=`$as_basename -- "$0" ||
237
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
238
+ X"$0" : 'X\(//\)$' \| \
239
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
240
+ $as_echo X/"$0" |
241
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
242
+ s//\1/
243
+ q
244
+ }
245
+ /^X\/\(\/\/\)$/{
246
+ s//\1/
247
+ q
248
+ }
249
+ /^X\/\(\/\).*/{
250
+ s//\1/
251
+ q
252
+ }
253
+ s/.*/./; q'`
254
+
255
+ # Avoid depending upon Character Ranges.
256
+ as_cr_letters='abcdefghijklmnopqrstuvwxyz'
257
+ as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
258
+ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
259
+ as_cr_digits='0123456789'
260
+ as_cr_alnum=$as_cr_Letters$as_cr_digits
261
+
262
+ ECHO_C= ECHO_N= ECHO_T=
263
+ case `echo -n x` in #(((((
264
+ -n*)
265
+ case `echo 'xy\c'` in
266
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
267
+ xy) ECHO_C='\c';;
268
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
269
+ ECHO_T=' ';;
270
+ esac;;
271
+ *)
272
+ ECHO_N='-n';;
273
+ esac
274
+
275
+ rm -f conf$$ conf$$.exe conf$$.file
276
+ if test -d conf$$.dir; then
277
+ rm -f conf$$.dir/conf$$.file
278
+ else
279
+ rm -f conf$$.dir
280
+ mkdir conf$$.dir 2>/dev/null
281
+ fi
282
+ if (echo >conf$$.file) 2>/dev/null; then
283
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
284
+ as_ln_s='ln -s'
285
+ # ... but there are two gotchas:
286
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
287
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
288
+ # In both cases, we have to default to `cp -p'.
289
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
290
+ as_ln_s='cp -p'
291
+ elif ln conf$$.file conf$$ 2>/dev/null; then
292
+ as_ln_s=ln
293
+ else
294
+ as_ln_s='cp -p'
295
+ fi
296
+ else
297
+ as_ln_s='cp -p'
298
+ fi
299
+ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
300
+ rmdir conf$$.dir 2>/dev/null
301
+
302
+
303
+ # as_fn_mkdir_p
304
+ # -------------
305
+ # Create "$as_dir" as a directory, including parents if necessary.
306
+ as_fn_mkdir_p ()
307
+ {
308
+
309
+ case $as_dir in #(
310
+ -*) as_dir=./$as_dir;;
311
+ esac
312
+ test -d "$as_dir" || eval $as_mkdir_p || {
313
+ as_dirs=
314
+ while :; do
315
+ case $as_dir in #(
316
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
317
+ *) as_qdir=$as_dir;;
318
+ esac
319
+ as_dirs="'$as_qdir' $as_dirs"
320
+ as_dir=`$as_dirname -- "$as_dir" ||
321
+ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
322
+ X"$as_dir" : 'X\(//\)[^/]' \| \
323
+ X"$as_dir" : 'X\(//\)$' \| \
324
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
325
+ $as_echo X"$as_dir" |
326
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
327
+ s//\1/
328
+ q
329
+ }
330
+ /^X\(\/\/\)[^/].*/{
331
+ s//\1/
332
+ q
333
+ }
334
+ /^X\(\/\/\)$/{
335
+ s//\1/
336
+ q
337
+ }
338
+ /^X\(\/\).*/{
339
+ s//\1/
340
+ q
341
+ }
342
+ s/.*/./; q'`
343
+ test -d "$as_dir" && break
344
+ done
345
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
346
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
347
+
348
+
349
+ } # as_fn_mkdir_p
350
+ if mkdir -p . 2>/dev/null; then
351
+ as_mkdir_p='mkdir -p "$as_dir"'
352
+ else
353
+ test -d ./-p && rmdir ./-p
354
+ as_mkdir_p=false
355
+ fi
356
+
357
+ if test -x / >/dev/null 2>&1; then
358
+ as_test_x='test -x'
359
+ else
360
+ if ls -dL / >/dev/null 2>&1; then
361
+ as_ls_L_option=L
362
+ else
363
+ as_ls_L_option=
364
+ fi
365
+ as_test_x='
366
+ eval sh -c '\''
367
+ if test -d "$1"; then
368
+ test -d "$1/.";
369
+ else
370
+ case $1 in #(
371
+ -*)set "./$1";;
372
+ esac;
373
+ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
374
+ ???[sx]*):;;*)false;;esac;fi
375
+ '\'' sh
376
+ '
377
+ fi
378
+ as_executable_p=$as_test_x
379
+
380
+ # Sed expression to map a string onto a valid CPP name.
381
+ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
382
+
383
+ # Sed expression to map a string onto a valid variable name.
384
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
385
+
386
+
387
+ exec 6>&1
388
+ ## ----------------------------------- ##
389
+ ## Main body of $CONFIG_STATUS script. ##
390
+ ## ----------------------------------- ##
391
+ # Save the log message, to keep $0 and so on meaningful, and to
392
+ # report actual input values of CONFIG_FILES etc. instead of their
393
+ # values after options handling.
394
+ ac_log="
395
+ This file was extended by libmemcached $as_me 0.32, which was
396
+ generated by GNU Autoconf 2.68. Invocation command line was
397
+
398
+ CONFIG_FILES = $CONFIG_FILES
399
+ CONFIG_HEADERS = $CONFIG_HEADERS
400
+ CONFIG_LINKS = $CONFIG_LINKS
401
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
402
+ $ $0 $@
403
+
404
+ on `(hostname || uname -n) 2>/dev/null | sed 1q`
405
+ "
406
+
407
+ # Files that config.status was made for.
408
+ config_files=" Makefile clients/Makefile tests/Makefile docs/Makefile libmemcached/Makefile libmemcached/memcached_configure.h libmemcachedutil/Makefile support/Makefile support/libmemcached.pc support/libmemcached.spec support/libmemcached-fc.spec"
409
+ config_headers=" config.h"
410
+ config_commands=" depfiles libtool"
411
+
412
+ ac_cs_usage="\
413
+ \`$as_me' instantiates files and other configuration actions
414
+ from templates according to the current configuration. Unless the files
415
+ and actions are specified as TAGs, all are instantiated by default.
416
+
417
+ Usage: $0 [OPTION]... [TAG]...
418
+
419
+ -h, --help print this help, then exit
420
+ -V, --version print version number and configuration settings, then exit
421
+ --config print configuration, then exit
422
+ -q, --quiet, --silent
423
+ do not print progress messages
424
+ -d, --debug don't remove temporary files
425
+ --recheck update $as_me by reconfiguring in the same conditions
426
+ --file=FILE[:TEMPLATE]
427
+ instantiate the configuration file FILE
428
+ --header=FILE[:TEMPLATE]
429
+ instantiate the configuration header FILE
430
+
431
+ Configuration files:
432
+ $config_files
433
+
434
+ Configuration headers:
435
+ $config_headers
436
+
437
+ Configuration commands:
438
+ $config_commands
439
+
440
+ Report bugs to <http://tangent.org/552/libmemcached.html>."
441
+
442
+ ac_cs_config="'--prefix=/Users/tom/Code/Ruby/memcached/ext' '--without-memcached' '--disable-shared' '--disable-utils' '--disable-dependency-tracking' 'CC=/usr/bin/gcc-4.2' 'CFLAGS=-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' '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'"
443
+ ac_cs_version="\
444
+ libmemcached config.status 0.32
445
+ configured by ./configure, generated by GNU Autoconf 2.68,
446
+ with options \"$ac_cs_config\"
447
+
448
+ Copyright (C) 2010 Free Software Foundation, Inc.
449
+ This config.status script is free software; the Free Software Foundation
450
+ gives unlimited permission to copy, distribute and modify it."
451
+
452
+ ac_pwd='/Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32'
453
+ srcdir='.'
454
+ INSTALL='/usr/bin/install -c'
455
+ MKDIR_P='config/install-sh -c -d'
456
+ AWK='awk'
457
+ test -n "$AWK" || AWK=awk
458
+ # The default lists apply if the user does not specify any file.
459
+ ac_need_defaults=:
460
+ while test $# != 0
461
+ do
462
+ case $1 in
463
+ --*=?*)
464
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
465
+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
466
+ ac_shift=:
467
+ ;;
468
+ --*=)
469
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
470
+ ac_optarg=
471
+ ac_shift=:
472
+ ;;
473
+ *)
474
+ ac_option=$1
475
+ ac_optarg=$2
476
+ ac_shift=shift
477
+ ;;
478
+ esac
479
+
480
+ case $ac_option in
481
+ # Handling of the options.
482
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
483
+ ac_cs_recheck=: ;;
484
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
485
+ $as_echo "$ac_cs_version"; exit ;;
486
+ --config | --confi | --conf | --con | --co | --c )
487
+ $as_echo "$ac_cs_config"; exit ;;
488
+ --debug | --debu | --deb | --de | --d | -d )
489
+ debug=: ;;
490
+ --file | --fil | --fi | --f )
491
+ $ac_shift
492
+ case $ac_optarg in
493
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
494
+ '') as_fn_error $? "missing file argument" ;;
495
+ esac
496
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
497
+ ac_need_defaults=false;;
498
+ --header | --heade | --head | --hea )
499
+ $ac_shift
500
+ case $ac_optarg in
501
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
502
+ esac
503
+ as_fn_append CONFIG_HEADERS " '$ac_optarg'"
504
+ ac_need_defaults=false;;
505
+ --he | --h)
506
+ # Conflict between --help and --header
507
+ as_fn_error $? "ambiguous option: \`$1'
508
+ Try \`$0 --help' for more information.";;
509
+ --help | --hel | -h )
510
+ $as_echo "$ac_cs_usage"; exit ;;
511
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
512
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
513
+ ac_cs_silent=: ;;
514
+
515
+ # This is an error.
516
+ -*) as_fn_error $? "unrecognized option: \`$1'
517
+ Try \`$0 --help' for more information." ;;
518
+
519
+ *) as_fn_append ac_config_targets " $1"
520
+ ac_need_defaults=false ;;
521
+
522
+ esac
523
+ shift
524
+ done
525
+
526
+ ac_configure_extra_args=
527
+
528
+ if $ac_cs_silent; then
529
+ exec 6>/dev/null
530
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
531
+ fi
532
+
533
+ if $ac_cs_recheck; then
534
+ set X '/bin/sh' './configure' '--prefix=/Users/tom/Code/Ruby/memcached/ext' '--without-memcached' '--disable-shared' '--disable-utils' '--disable-dependency-tracking' 'CC=/usr/bin/gcc-4.2' 'CFLAGS=-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' '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' $ac_configure_extra_args --no-create --no-recursion
535
+ shift
536
+ $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
537
+ CONFIG_SHELL='/bin/sh'
538
+ export CONFIG_SHELL
539
+ exec "$@"
540
+ fi
541
+
542
+ exec 5>>config.log
543
+ {
544
+ echo
545
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
546
+ ## Running $as_me. ##
547
+ _ASBOX
548
+ $as_echo "$ac_log"
549
+ } >&5
550
+
551
+ #
552
+ # INIT-COMMANDS
553
+ #
554
+ AMDEP_TRUE="#" ac_aux_dir="config"
555
+
556
+
557
+ # The HP-UX ksh and POSIX shell print the target directory to stdout
558
+ # if CDPATH is set.
559
+ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
560
+
561
+ sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
562
+ double_quote_subst='s/\(["`\\]\)/\\\1/g'
563
+ delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
564
+ macro_version='2.4'
565
+ macro_revision='1.3293'
566
+ enable_shared='no'
567
+ enable_static='yes'
568
+ pic_mode='default'
569
+ enable_fast_install='needless'
570
+ SHELL='/bin/sh'
571
+ ECHO='printf %s\n'
572
+ host_alias=''
573
+ host='i386-apple-darwin11.4.0'
574
+ host_os='darwin11.4.0'
575
+ build_alias=''
576
+ build='i386-apple-darwin11.4.0'
577
+ build_os='darwin11.4.0'
578
+ SED='/usr/bin/sed'
579
+ Xsed='/usr/bin/sed -e 1s/^X//'
580
+ GREP='/usr/bin/grep'
581
+ EGREP='/usr/bin/grep -E'
582
+ FGREP='/usr/bin/grep -F'
583
+ LD='/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld'
584
+ NM='/usr/bin/nm'
585
+ LN_S='ln -s'
586
+ max_cmd_len='196608'
587
+ ac_objext='o'
588
+ exeext=''
589
+ lt_unset='unset'
590
+ lt_SP2NL='tr \040 \012'
591
+ lt_NL2SP='tr \015\012 \040\040'
592
+ lt_cv_to_host_file_cmd='func_convert_file_noop'
593
+ lt_cv_to_tool_file_cmd='func_convert_file_noop'
594
+ reload_flag=' -r'
595
+ reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
596
+ OBJDUMP='false'
597
+ deplibs_check_method='pass_all'
598
+ file_magic_cmd='$MAGIC_CMD'
599
+ file_magic_glob=''
600
+ want_nocaseglob='no'
601
+ DLLTOOL='false'
602
+ sharedlib_from_linklib_cmd='printf %s\n'
603
+ AR='ar'
604
+ AR_FLAGS='cru'
605
+ archiver_list_spec=''
606
+ STRIP='strip'
607
+ RANLIB='ranlib'
608
+ old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $oldlib'
609
+ old_postuninstall_cmds=''
610
+ old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
611
+ lock_old_archive_extraction='yes'
612
+ CC='/usr/bin/gcc-4.2 -std=gnu99'
613
+ 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'
614
+ compiler='g++'
615
+ GCC='yes'
616
+ 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'\'''
617
+ lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\'''
618
+ lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
619
+ 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'\'''
620
+ nm_file_list_spec=''
621
+ lt_sysroot=''
622
+ objdir='.libs'
623
+ MAGIC_CMD='file'
624
+ lt_prog_compiler_no_builtin_flag=' -fno-builtin'
625
+ lt_prog_compiler_pic=' -fno-common -DPIC'
626
+ lt_prog_compiler_wl='-Wl,'
627
+ lt_prog_compiler_static=''
628
+ lt_cv_prog_compiler_c_o='yes'
629
+ need_locks='no'
630
+ MANIFEST_TOOL=':'
631
+ DSYMUTIL='dsymutil'
632
+ NMEDIT='nmedit'
633
+ LIPO='lipo'
634
+ OTOOL='otool'
635
+ OTOOL64=':'
636
+ libext='a'
637
+ shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
638
+ extract_expsyms_cmds=''
639
+ archive_cmds_need_lc='no'
640
+ enable_shared_with_static_runtimes='no'
641
+ export_dynamic_flag_spec=''
642
+ whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
643
+ compiler_needs_object='no'
644
+ old_archive_from_new_cmds=''
645
+ old_archive_from_expsyms_cmds=''
646
+ archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module'
647
+ archive_expsym_cmds='sed '\''s,^,_,'\'' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
648
+ module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags'
649
+ module_expsym_cmds='sed -e '\''s,^,_,'\'' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
650
+ with_gnu_ld='no'
651
+ allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup'
652
+ no_undefined_flag=''
653
+ hardcode_libdir_flag_spec=''
654
+ hardcode_libdir_flag_spec_ld=''
655
+ hardcode_libdir_separator=''
656
+ hardcode_direct='no'
657
+ hardcode_direct_absolute='no'
658
+ hardcode_minus_L='no'
659
+ hardcode_shlibpath_var='unsupported'
660
+ hardcode_automatic='yes'
661
+ inherit_rpath='no'
662
+ link_all_deplibs='yes'
663
+ always_export_symbols='no'
664
+ export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
665
+ exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
666
+ include_expsyms=''
667
+ prelink_cmds=''
668
+ postlink_cmds=''
669
+ file_list_spec=''
670
+ variables_saved_for_relink='PATH DYLD_LIBRARY_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
671
+ need_lib_prefix='no'
672
+ need_version='no'
673
+ version_type='darwin'
674
+ runpath_var=''
675
+ shlibpath_var='DYLD_LIBRARY_PATH'
676
+ shlibpath_overrides_runpath='yes'
677
+ libname_spec='lib$name'
678
+ library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
679
+ soname_spec='${libname}${release}${major}$shared_ext'
680
+ install_override_mode=''
681
+ postinstall_cmds=''
682
+ postuninstall_cmds=''
683
+ finish_cmds=''
684
+ finish_eval=''
685
+ hardcode_into_libs='no'
686
+ sys_lib_search_path_spec='/usr/lib/gcc/i686-apple-darwin11/4.2.1/x86_64 /usr/lib/i686-apple-darwin11/4.2.1 /usr/lib /usr/local/lib'
687
+ sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
688
+ hardcode_action='immediate'
689
+ enable_dlopen='unknown'
690
+ enable_dlopen_self='unknown'
691
+ enable_dlopen_self_static='unknown'
692
+ old_striplib='strip -S'
693
+ striplib='strip -x'
694
+ compiler_lib_search_dirs=''
695
+ predep_objects=''
696
+ postdep_objects=''
697
+ predeps=''
698
+ postdeps=''
699
+ compiler_lib_search_path=''
700
+ LD_CXX='/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld'
701
+ reload_flag_CXX=' -r'
702
+ reload_cmds_CXX='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
703
+ old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
704
+ compiler_CXX='g++'
705
+ GCC_CXX='yes'
706
+ lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
707
+ lt_prog_compiler_pic_CXX=' -fno-common -DPIC'
708
+ lt_prog_compiler_wl_CXX='-Wl,'
709
+ lt_prog_compiler_static_CXX=''
710
+ lt_cv_prog_compiler_c_o_CXX='yes'
711
+ archive_cmds_need_lc_CXX='no'
712
+ enable_shared_with_static_runtimes_CXX='no'
713
+ export_dynamic_flag_spec_CXX=''
714
+ whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
715
+ compiler_needs_object_CXX='no'
716
+ old_archive_from_new_cmds_CXX=''
717
+ old_archive_from_expsyms_cmds_CXX=''
718
+ archive_cmds_CXX='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module'
719
+ archive_expsym_cmds_CXX='sed '\''s,^,_,'\'' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $single_module ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
720
+ module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags'
721
+ module_expsym_cmds_CXX='sed -e '\''s,^,_,'\'' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
722
+ with_gnu_ld_CXX='no'
723
+ allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup'
724
+ no_undefined_flag_CXX=''
725
+ hardcode_libdir_flag_spec_CXX=''
726
+ hardcode_libdir_flag_spec_ld_CXX=''
727
+ hardcode_libdir_separator_CXX=''
728
+ hardcode_direct_CXX='no'
729
+ hardcode_direct_absolute_CXX='no'
730
+ hardcode_minus_L_CXX='no'
731
+ hardcode_shlibpath_var_CXX='unsupported'
732
+ hardcode_automatic_CXX='yes'
733
+ inherit_rpath_CXX='no'
734
+ link_all_deplibs_CXX='yes'
735
+ always_export_symbols_CXX='no'
736
+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
737
+ exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
738
+ include_expsyms_CXX=''
739
+ prelink_cmds_CXX=''
740
+ postlink_cmds_CXX=''
741
+ file_list_spec_CXX=''
742
+ hardcode_action_CXX='immediate'
743
+ compiler_lib_search_dirs_CXX=''
744
+ predep_objects_CXX=''
745
+ postdep_objects_CXX=''
746
+ predeps_CXX=''
747
+ postdeps_CXX=''
748
+ compiler_lib_search_path_CXX=''
749
+
750
+ LTCC='/usr/bin/gcc-4.2'
751
+ LTCFLAGS='-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'
752
+ compiler='/usr/bin/gcc-4.2'
753
+
754
+ # A function that is used when there is no print builtin or printf.
755
+ func_fallback_echo ()
756
+ {
757
+ eval 'cat <<_LTECHO_EOF
758
+ $1
759
+ _LTECHO_EOF'
760
+ }
761
+
762
+ # Quote evaled strings.
763
+ for var in SHELL ECHO SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix nm_file_list_spec lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_flag_spec_ld hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX reload_flag_CXX compiler_CXX lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_pic_CXX lt_prog_compiler_wl_CXX lt_prog_compiler_static_CXX lt_cv_prog_compiler_c_o_CXX export_dynamic_flag_spec_CXX whole_archive_flag_spec_CXX compiler_needs_object_CXX with_gnu_ld_CXX allow_undefined_flag_CXX no_undefined_flag_CXX hardcode_libdir_flag_spec_CXX hardcode_libdir_flag_spec_ld_CXX hardcode_libdir_separator_CXX exclude_expsyms_CXX include_expsyms_CXX file_list_spec_CXX compiler_lib_search_dirs_CXX predep_objects_CXX postdep_objects_CXX predeps_CXX postdeps_CXX compiler_lib_search_path_CXX; do
764
+ case `eval \\$ECHO \\""\\$$var"\\"` in
765
+ *[\\\`\"\$]*)
766
+ eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
767
+ ;;
768
+ *)
769
+ eval "lt_$var=\\\"\$$var\\\""
770
+ ;;
771
+ esac
772
+ done
773
+
774
+ # Double-quote double-evaled strings.
775
+ for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec reload_cmds_CXX old_archive_cmds_CXX old_archive_from_new_cmds_CXX old_archive_from_expsyms_cmds_CXX archive_cmds_CXX archive_expsym_cmds_CXX module_cmds_CXX module_expsym_cmds_CXX export_symbols_cmds_CXX prelink_cmds_CXX postlink_cmds_CXX; do
776
+ case `eval \\$ECHO \\""\\$$var"\\"` in
777
+ *[\\\`\"\$]*)
778
+ eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
779
+ ;;
780
+ *)
781
+ eval "lt_$var=\\\"\$$var\\\""
782
+ ;;
783
+ esac
784
+ done
785
+
786
+ ac_aux_dir='config'
787
+ xsi_shell='yes'
788
+ lt_shell_append='yes'
789
+
790
+ # See if we are running on zsh, and set the options which allow our
791
+ # commands through without removal of \ escapes INIT.
792
+ if test -n "${ZSH_VERSION+set}" ; then
793
+ setopt NO_GLOB_SUBST
794
+ fi
795
+
796
+
797
+ PACKAGE='libmemcached'
798
+ VERSION='0.32'
799
+ TIMESTAMP=''
800
+ RM='rm -f'
801
+ ofile='libtool'
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+ # Handling of arguments.
810
+ for ac_config_target in $ac_config_targets
811
+ do
812
+ case $ac_config_target in
813
+ "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
814
+ "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
815
+ "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
816
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
817
+ "clients/Makefile") CONFIG_FILES="$CONFIG_FILES clients/Makefile" ;;
818
+ "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
819
+ "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
820
+ "libmemcached/Makefile") CONFIG_FILES="$CONFIG_FILES libmemcached/Makefile" ;;
821
+ "libmemcached/memcached_configure.h") CONFIG_FILES="$CONFIG_FILES libmemcached/memcached_configure.h" ;;
822
+ "libmemcachedutil/Makefile") CONFIG_FILES="$CONFIG_FILES libmemcachedutil/Makefile" ;;
823
+ "support/Makefile") CONFIG_FILES="$CONFIG_FILES support/Makefile" ;;
824
+ "support/libmemcached.pc") CONFIG_FILES="$CONFIG_FILES support/libmemcached.pc" ;;
825
+ "support/libmemcached.spec") CONFIG_FILES="$CONFIG_FILES support/libmemcached.spec" ;;
826
+ "support/libmemcached-fc.spec") CONFIG_FILES="$CONFIG_FILES support/libmemcached-fc.spec" ;;
827
+
828
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
829
+ esac
830
+ done
831
+
832
+
833
+ # If the user did not use the arguments to specify the items to instantiate,
834
+ # then the envvar interface is used. Set only those that are not.
835
+ # We use the long form for the default assignment because of an extremely
836
+ # bizarre bug on SunOS 4.1.3.
837
+ if $ac_need_defaults; then
838
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
839
+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
840
+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
841
+ fi
842
+
843
+ # Have a temporary directory for convenience. Make it in the build tree
844
+ # simply because there is no reason against having it here, and in addition,
845
+ # creating and moving files from /tmp can sometimes cause problems.
846
+ # Hook for its removal unless debugging.
847
+ # Note that there is a small window in which the directory will not be cleaned:
848
+ # after its creation but before its name has been assigned to `$tmp'.
849
+ $debug ||
850
+ {
851
+ tmp= ac_tmp=
852
+ trap 'exit_status=$?
853
+ : "${ac_tmp:=$tmp}"
854
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
855
+ ' 0
856
+ trap 'as_fn_exit 1' 1 2 13 15
857
+ }
858
+ # Create a (secure) tmp directory for tmp files.
859
+
860
+ {
861
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
862
+ test -d "$tmp"
863
+ } ||
864
+ {
865
+ tmp=./conf$$-$RANDOM
866
+ (umask 077 && mkdir "$tmp")
867
+ } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
868
+ ac_tmp=$tmp
869
+
870
+ # Set up the scripts for CONFIG_FILES section.
871
+ # No need to generate them if there are no CONFIG_FILES.
872
+ # This happens for instance with `./config.status config.h'.
873
+ if test -n "$CONFIG_FILES"; then
874
+
875
+
876
+ ac_cr=`echo X | tr X '\015'`
877
+ # On cygwin, bash can eat \r inside `` if the user requested igncr.
878
+ # But we know of no other shell where ac_cr would be empty at this
879
+ # point, so we can use a bashism as a fallback.
880
+ if test "x$ac_cr" = x; then
881
+ eval ac_cr=\$\'\\r\'
882
+ fi
883
+ ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
884
+ if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
885
+ ac_cs_awk_cr='\\r'
886
+ else
887
+ ac_cs_awk_cr=$ac_cr
888
+ fi
889
+
890
+ echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
891
+ cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
892
+ S["am__EXEEXT_FALSE"]=""
893
+ S["am__EXEEXT_TRUE"]="#"
894
+ S["LTLIBOBJS"]=""
895
+ S["LIBMEMCACHED_WITH_SASL_SUPPORT"]="#define LIBMEMCACHED_WITH_SASL_SUPPORT 1"
896
+ S["HAVE_SASL_FALSE"]="#"
897
+ S["HAVE_SASL_TRUE"]=""
898
+ S["HAVE_LIBSASL2_FALSE"]="#"
899
+ S["HAVE_LIBSASL2_TRUE"]=""
900
+ S["HAVE_LIBSASL_FALSE"]=""
901
+ S["HAVE_LIBSASL_TRUE"]="#"
902
+ S["LIBSASL2_PREFIX"]=""
903
+ S["LTLIBSASL2"]="-lsasl2"
904
+ S["LIBSASL2"]="-lsasl2"
905
+ S["HAVE_LIBSASL2"]="yes"
906
+ S["LIBSASL_PREFIX"]=""
907
+ S["LTLIBSASL"]="-lsasl2"
908
+ S["LIBSASL"]="-lsasl2"
909
+ S["HAVE_LIBSASL"]="yes"
910
+ S["DEPRECATED"]=""
911
+ S["MEMC_BINARY"]="memcached"
912
+ S["POD2MAN"]="/usr/bin/pod2man"
913
+ S["INCLUDE_HSIEH_SRC_FALSE"]=""
914
+ S["INCLUDE_HSIEH_SRC_TRUE"]="#"
915
+ S["BUILD_LIBMEMCACHEDUTIL_FALSE"]=""
916
+ S["BUILD_LIBMEMCACHEDUTIL_TRUE"]="#"
917
+ S["BUILD_BYTEORDER_FALSE"]="#"
918
+ S["BUILD_BYTEORDER_TRUE"]=""
919
+ S["LIBM"]=""
920
+ S["PTHREAD_CFLAGS"]="-D_THREAD_SAFE "
921
+ S["PTHREAD_LIBS"]=""
922
+ S["PTHREAD_CC"]="/usr/bin/gcc-4.2 -std=gnu99"
923
+ S["acx_pthread_config"]=""
924
+ S["LD_UTIL_VERSION_SCRIPT"]=""
925
+ S["LD_VERSION_SCRIPT"]=""
926
+ S["MEMCACHEDUTIL_LIBRARY_VERSION"]="0:0:0"
927
+ S["MEMCACHED_LIBRARY_VERSION"]="2:0:0"
928
+ S["AM_CPPFLAGS"]="-I${top_srcdir} -I${top_builddir} -ggdb3 "
929
+ S["AM_CXXFLAGS"]=" -O3 -pedantic -Wall -Wextra -Wundef -Wshadow -fdiagnostics-show-option -fvisibility=hidden -Wformat=2 -Wstrict-aliasing -Woverloaded-virtual -Wn"\
930
+ "on-virtual-dtor -Wctor-dtor-privacy -Wno-long-long -Weffc++ -Wold-style-cast -Wredundant-decls "
931
+ S["AM_CFLAGS"]=" -O3 -pedantic -Wall -Wextra -Wundef -Wshadow -fdiagnostics-show-option -fvisibility=hidden -Wformat=2 -Wstrict-aliasing -Wstrict-prototypes -Wmi"\
932
+ "ssing-prototypes -Wredundant-decls -Wmissing-declarations -Wcast-align -Wswitch-default -Wswitch-enum -Wwrite-strings "
933
+ S["PERL"]="perl"
934
+ S["DOXYGEN"]=""
935
+ S["BETTER_MALLOC_LIBS"]=""
936
+ S["LIBOBJS"]=""
937
+ S["DTRACE_NEEDS_OBJECTS_FALSE"]=""
938
+ S["DTRACE_NEEDS_OBJECTS_TRUE"]="#"
939
+ S["HAVE_DTRACE_FALSE"]=""
940
+ S["HAVE_DTRACE_TRUE"]="#"
941
+ S["DTRACEFLAGS"]=""
942
+ S["DTRACE"]=""
943
+ S["PROTOSKIP_WARNINGS"]="-Wno-effc++ -Wno-shadow"
944
+ S["NO_STRICT_ALIASING"]="-fno-strict-aliasing -Wno-strict-aliasing"
945
+ S["NO_SHADOW"]="-Wno-shadow"
946
+ S["NO_UNREACHED"]=""
947
+ S["NO_REDUNDANT_DECLS"]="-Wno-redundant-decls"
948
+ S["NO_CONVERSION"]=""
949
+ S["LIBC_P"]=""
950
+ S["HAVE_VISIBILITY"]="1"
951
+ S["CFLAG_VISIBILITY"]="-fvisibility=hidden"
952
+ S["CXX_VERSION"]="i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00)"
953
+ S["CC_VERSION"]="i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)"
954
+ S["CXXCPP"]="g++ -E"
955
+ S["OTOOL64"]=":"
956
+ S["OTOOL"]="otool"
957
+ S["LIPO"]="lipo"
958
+ S["NMEDIT"]="nmedit"
959
+ S["DSYMUTIL"]="dsymutil"
960
+ S["MANIFEST_TOOL"]=":"
961
+ S["RANLIB"]="ranlib"
962
+ S["ac_ct_AR"]="ar"
963
+ S["AR"]="ar"
964
+ S["DLLTOOL"]="false"
965
+ S["OBJDUMP"]="false"
966
+ S["LN_S"]="ln -s"
967
+ S["NM"]="/usr/bin/nm"
968
+ S["ac_ct_DUMPBIN"]=""
969
+ S["DUMPBIN"]=""
970
+ S["LD"]="/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld"
971
+ S["FGREP"]="/usr/bin/grep -F"
972
+ S["SED"]="/usr/bin/sed"
973
+ S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
974
+ S["EGREP"]="/usr/bin/grep -E"
975
+ S["GREP"]="/usr/bin/grep"
976
+ S["CPP"]="/usr/bin/gcc-4.2 -E"
977
+ S["am__fastdepCXX_FALSE"]=""
978
+ S["am__fastdepCXX_TRUE"]="#"
979
+ S["CXXDEPMODE"]="depmode=none"
980
+ S["ac_ct_CXX"]="g++"
981
+ S["CXXFLAGS"]="-std=gnu++98"
982
+ S["CXX"]="g++"
983
+ S["ISAINFO"]="no"
984
+ S["am__fastdepCC_FALSE"]=""
985
+ S["am__fastdepCC_TRUE"]="#"
986
+ S["CCDEPMODE"]="depmode=none"
987
+ S["AMDEPBACKSLASH"]=""
988
+ S["AMDEP_FALSE"]=""
989
+ S["AMDEP_TRUE"]="#"
990
+ S["am__quote"]=""
991
+ S["am__include"]="include"
992
+ S["DEPDIR"]=".deps"
993
+ S["OBJEXT"]="o"
994
+ S["EXEEXT"]=""
995
+ S["ac_ct_CC"]="/usr/bin/gcc-4.2"
996
+ S["CPPFLAGS"]="-I/Users/tom/Code/Ruby/memcached/ext/include"
997
+ S["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"\
998
+ "-p125-perf/lib -L/Users/tom/Code/Ruby/memcached/ext/lib"
999
+ S["CFLAGS"]="-D_THREAD_SAFE -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith"\
1000
+ " -Werror=write-strings -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -pipe -pipe"
1001
+ S["CC"]="/usr/bin/gcc-4.2 -std=gnu99"
1002
+ S["am__untar"]="${AMTAR} xf -"
1003
+ S["am__tar"]="${AMTAR} chof - \"$$tardir\""
1004
+ S["AMTAR"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run tar"
1005
+ S["am__leading_dot"]="."
1006
+ S["SET_MAKE"]=""
1007
+ S["AWK"]="awk"
1008
+ S["mkdir_p"]="$(top_builddir)/config/install-sh -c -d"
1009
+ S["MKDIR_P"]="config/install-sh -c -d"
1010
+ S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
1011
+ S["STRIP"]="strip"
1012
+ S["install_sh"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/install-sh"
1013
+ S["MAKEINFO"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run makeinfo"
1014
+ S["AUTOHEADER"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run autoheader"
1015
+ S["AUTOMAKE"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run automake-1.11"
1016
+ S["AUTOCONF"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run autoconf"
1017
+ S["ACLOCAL"]="${SHELL} /Users/tom/Code/Ruby/memcached/ext/libmemcached-0.32/config/missing --run aclocal-1.11"
1018
+ S["VERSION"]="0.32"
1019
+ S["PACKAGE"]="libmemcached"
1020
+ S["CYGPATH_W"]="echo"
1021
+ S["am__isrc"]=""
1022
+ S["INSTALL_DATA"]="${INSTALL} -m 644"
1023
+ S["INSTALL_SCRIPT"]="${INSTALL}"
1024
+ S["INSTALL_PROGRAM"]="${INSTALL}"
1025
+ S["target_os"]="darwin11.4.0"
1026
+ S["target_vendor"]="apple"
1027
+ S["target_cpu"]="i386"
1028
+ S["target"]="i386-apple-darwin11.4.0"
1029
+ S["host_os"]="darwin11.4.0"
1030
+ S["host_vendor"]="apple"
1031
+ S["host_cpu"]="i386"
1032
+ S["host"]="i386-apple-darwin11.4.0"
1033
+ S["build_os"]="darwin11.4.0"
1034
+ S["build_vendor"]="apple"
1035
+ S["build_cpu"]="i386"
1036
+ S["build"]="i386-apple-darwin11.4.0"
1037
+ S["target_alias"]=""
1038
+ S["host_alias"]=""
1039
+ S["build_alias"]=""
1040
+ S["LIBS"]=" "
1041
+ S["ECHO_T"]=""
1042
+ S["ECHO_N"]=""
1043
+ S["ECHO_C"]="\\c"
1044
+ S["DEFS"]="-DHAVE_CONFIG_H"
1045
+ S["mandir"]="${datarootdir}/man"
1046
+ S["localedir"]="${datarootdir}/locale"
1047
+ S["libdir"]="${exec_prefix}/lib"
1048
+ S["psdir"]="${docdir}"
1049
+ S["pdfdir"]="${docdir}"
1050
+ S["dvidir"]="${docdir}"
1051
+ S["htmldir"]="${docdir}"
1052
+ S["infodir"]="${datarootdir}/info"
1053
+ S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
1054
+ S["oldincludedir"]="/usr/include"
1055
+ S["includedir"]="${prefix}/include"
1056
+ S["localstatedir"]="${prefix}/var"
1057
+ S["sharedstatedir"]="${prefix}/com"
1058
+ S["sysconfdir"]="${prefix}/etc"
1059
+ S["datadir"]="${datarootdir}"
1060
+ S["datarootdir"]="${prefix}/share"
1061
+ S["libexecdir"]="${exec_prefix}/libexec"
1062
+ S["sbindir"]="${exec_prefix}/sbin"
1063
+ S["bindir"]="${exec_prefix}/bin"
1064
+ S["program_transform_name"]="s,x,x,"
1065
+ S["prefix"]="/Users/tom/Code/Ruby/memcached/ext"
1066
+ S["exec_prefix"]="${prefix}"
1067
+ S["PACKAGE_URL"]=""
1068
+ S["PACKAGE_BUGREPORT"]="http://tangent.org/552/libmemcached.html"
1069
+ S["PACKAGE_STRING"]="libmemcached 0.32"
1070
+ S["PACKAGE_VERSION"]="0.32"
1071
+ S["PACKAGE_TARNAME"]="libmemcached"
1072
+ S["PACKAGE_NAME"]="libmemcached"
1073
+ S["PATH_SEPARATOR"]=":"
1074
+ S["SHELL"]="/bin/sh"
1075
+ _ACAWK
1076
+ cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
1077
+ for (key in S) S_is_set[key] = 1
1078
+ FS = ""
1079
+
1080
+ }
1081
+ {
1082
+ line = $ 0
1083
+ nfields = split(line, field, "@")
1084
+ substed = 0
1085
+ len = length(field[1])
1086
+ for (i = 2; i < nfields; i++) {
1087
+ key = field[i]
1088
+ keylen = length(key)
1089
+ if (S_is_set[key]) {
1090
+ value = S[key]
1091
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
1092
+ len += length(value) + length(field[++i])
1093
+ substed = 1
1094
+ } else
1095
+ len += 1 + keylen
1096
+ }
1097
+
1098
+ print line
1099
+ }
1100
+
1101
+ _ACAWK
1102
+ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
1103
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
1104
+ else
1105
+ cat
1106
+ fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
1107
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
1108
+ fi # test -n "$CONFIG_FILES"
1109
+
1110
+ # Set up the scripts for CONFIG_HEADERS section.
1111
+ # No need to generate them if there are no CONFIG_HEADERS.
1112
+ # This happens for instance with `./config.status Makefile'.
1113
+ if test -n "$CONFIG_HEADERS"; then
1114
+ cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
1115
+ BEGIN {
1116
+ D["PACKAGE_NAME"]=" \"libmemcached\""
1117
+ D["PACKAGE_TARNAME"]=" \"libmemcached\""
1118
+ D["PACKAGE_VERSION"]=" \"0.32\""
1119
+ D["PACKAGE_STRING"]=" \"libmemcached 0.32\""
1120
+ D["PACKAGE_BUGREPORT"]=" \"http://tangent.org/552/libmemcached.html\""
1121
+ D["PACKAGE_URL"]=" \"\""
1122
+ D["STDC_HEADERS"]=" 1"
1123
+ D["HAVE_SYS_TYPES_H"]=" 1"
1124
+ D["HAVE_SYS_STAT_H"]=" 1"
1125
+ D["HAVE_STDLIB_H"]=" 1"
1126
+ D["HAVE_STRING_H"]=" 1"
1127
+ D["HAVE_MEMORY_H"]=" 1"
1128
+ D["HAVE_STRINGS_H"]=" 1"
1129
+ D["HAVE_INTTYPES_H"]=" 1"
1130
+ D["HAVE_STDINT_H"]=" 1"
1131
+ D["HAVE_UNISTD_H"]=" 1"
1132
+ D["__EXTENSIONS__"]=" 1"
1133
+ D["_ALL_SOURCE"]=" 1"
1134
+ D["_GNU_SOURCE"]=" 1"
1135
+ D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
1136
+ D["_TANDEM_SOURCE"]=" 1"
1137
+ D["HAVE_DLFCN_H"]=" 1"
1138
+ D["LT_OBJDIR"]=" \".libs/\""
1139
+ D["HAVE_STDLIB_H"]=" 1"
1140
+ D["HAVE_MALLOC"]=" 1"
1141
+ D["HAVE_STDLIB_H"]=" 1"
1142
+ D["HAVE_REALLOC"]=" 1"
1143
+ D["PACKAGE"]=" \"libmemcached\""
1144
+ D["VERSION"]=" \"0.32\""
1145
+ D["STDCXX_98_HEADERS"]=" /**/"
1146
+ D["HAVE_MEMORY"]=" 1"
1147
+ D["HAVE_TR1_MEMORY"]=" 1"
1148
+ D["SHARED_PTR_NAMESPACE"]=" std::tr1"
1149
+ D["restrict"]=" __restrict"
1150
+ D["TIME_WITH_SYS_TIME"]=" 1"
1151
+ D["HAVE_VISIBILITY"]=" 1"
1152
+ D["HAVE_ASSERT_H"]=" 1"
1153
+ D["HAVE_PTHREAD"]=" 1"
1154
+ D["BYTEORDER_LITTLE_ENDIAN"]=" 1"
1155
+ D["HAVE_SNDTIMEO"]=" 1"
1156
+ D["HAVE_RCVTIMEO"]=" 1"
1157
+ D["MEMCACHED_BINARY"]=" \"memcached\""
1158
+ D["HAVE_LIBSASL2"]=" 1"
1159
+ for (key in D) D_is_set[key] = 1
1160
+ FS = ""
1161
+ }
1162
+ /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
1163
+ line = $ 0
1164
+ split(line, arg, " ")
1165
+ if (arg[1] == "#") {
1166
+ defundef = arg[2]
1167
+ mac1 = arg[3]
1168
+ } else {
1169
+ defundef = substr(arg[1], 2)
1170
+ mac1 = arg[2]
1171
+ }
1172
+ split(mac1, mac2, "(") #)
1173
+ macro = mac2[1]
1174
+ prefix = substr(line, 1, index(line, defundef) - 1)
1175
+ if (D_is_set[macro]) {
1176
+ # Preserve the white space surrounding the "#".
1177
+ print prefix "define", macro P[macro] D[macro]
1178
+ next
1179
+ } else {
1180
+ # Replace #undef with comments. This is necessary, for example,
1181
+ # in the case of _POSIX_SOURCE, which is predefined and required
1182
+ # on some systems where configure will not decide to define it.
1183
+ if (defundef == "undef") {
1184
+ print "/*", prefix defundef, macro, "*/"
1185
+ next
1186
+ }
1187
+ }
1188
+ }
1189
+ { print }
1190
+ _ACAWK
1191
+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
1192
+ fi # test -n "$CONFIG_HEADERS"
1193
+
1194
+
1195
+ eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
1196
+ shift
1197
+ for ac_tag
1198
+ do
1199
+ case $ac_tag in
1200
+ :[FHLC]) ac_mode=$ac_tag; continue;;
1201
+ esac
1202
+ case $ac_mode$ac_tag in
1203
+ :[FHL]*:*);;
1204
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
1205
+ :[FH]-) ac_tag=-:-;;
1206
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1207
+ esac
1208
+ ac_save_IFS=$IFS
1209
+ IFS=:
1210
+ set x $ac_tag
1211
+ IFS=$ac_save_IFS
1212
+ shift
1213
+ ac_file=$1
1214
+ shift
1215
+
1216
+ case $ac_mode in
1217
+ :L) ac_source=$1;;
1218
+ :[FH])
1219
+ ac_file_inputs=
1220
+ for ac_f
1221
+ do
1222
+ case $ac_f in
1223
+ -) ac_f="$ac_tmp/stdin";;
1224
+ *) # Look for the file first in the build tree, then in the source tree
1225
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
1226
+ # because $ac_f cannot contain `:'.
1227
+ test -f "$ac_f" ||
1228
+ case $ac_f in
1229
+ [\\/$]*) false;;
1230
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1231
+ esac ||
1232
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1233
+ esac
1234
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1235
+ as_fn_append ac_file_inputs " '$ac_f'"
1236
+ done
1237
+
1238
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
1239
+ # use $as_me), people would be surprised to read:
1240
+ # /* config.h. Generated by config.status. */
1241
+ configure_input='Generated from '`
1242
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1243
+ `' by configure.'
1244
+ if test x"$ac_file" != x-; then
1245
+ configure_input="$ac_file. $configure_input"
1246
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1247
+ $as_echo "$as_me: creating $ac_file" >&6;}
1248
+ fi
1249
+ # Neutralize special characters interpreted by sed in replacement strings.
1250
+ case $configure_input in #(
1251
+ *\&* | *\|* | *\\* )
1252
+ ac_sed_conf_input=`$as_echo "$configure_input" |
1253
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
1254
+ *) ac_sed_conf_input=$configure_input;;
1255
+ esac
1256
+
1257
+ case $ac_tag in
1258
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
1259
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
1260
+ esac
1261
+ ;;
1262
+ esac
1263
+
1264
+ ac_dir=`$as_dirname -- "$ac_file" ||
1265
+ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1266
+ X"$ac_file" : 'X\(//\)[^/]' \| \
1267
+ X"$ac_file" : 'X\(//\)$' \| \
1268
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1269
+ $as_echo X"$ac_file" |
1270
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1271
+ s//\1/
1272
+ q
1273
+ }
1274
+ /^X\(\/\/\)[^/].*/{
1275
+ s//\1/
1276
+ q
1277
+ }
1278
+ /^X\(\/\/\)$/{
1279
+ s//\1/
1280
+ q
1281
+ }
1282
+ /^X\(\/\).*/{
1283
+ s//\1/
1284
+ q
1285
+ }
1286
+ s/.*/./; q'`
1287
+ as_dir="$ac_dir"; as_fn_mkdir_p
1288
+ ac_builddir=.
1289
+
1290
+ case "$ac_dir" in
1291
+ .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1292
+ *)
1293
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1294
+ # A ".." for each directory in $ac_dir_suffix.
1295
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1296
+ case $ac_top_builddir_sub in
1297
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1298
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1299
+ esac ;;
1300
+ esac
1301
+ ac_abs_top_builddir=$ac_pwd
1302
+ ac_abs_builddir=$ac_pwd$ac_dir_suffix
1303
+ # for backward compatibility:
1304
+ ac_top_builddir=$ac_top_build_prefix
1305
+
1306
+ case $srcdir in
1307
+ .) # We are building in place.
1308
+ ac_srcdir=.
1309
+ ac_top_srcdir=$ac_top_builddir_sub
1310
+ ac_abs_top_srcdir=$ac_pwd ;;
1311
+ [\\/]* | ?:[\\/]* ) # Absolute name.
1312
+ ac_srcdir=$srcdir$ac_dir_suffix;
1313
+ ac_top_srcdir=$srcdir
1314
+ ac_abs_top_srcdir=$srcdir ;;
1315
+ *) # Relative name.
1316
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1317
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
1318
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1319
+ esac
1320
+ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1321
+
1322
+
1323
+ case $ac_mode in
1324
+ :F)
1325
+ #
1326
+ # CONFIG_FILE
1327
+ #
1328
+
1329
+ case $INSTALL in
1330
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1331
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1332
+ esac
1333
+ ac_MKDIR_P=$MKDIR_P
1334
+ case $MKDIR_P in
1335
+ [\\/$]* | ?:[\\/]* ) ;;
1336
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1337
+ esac
1338
+ # If the template does not know about datarootdir, expand it.
1339
+ # FIXME: This hack should be removed a few years after 2.60.
1340
+ ac_datarootdir_hack=; ac_datarootdir_seen=
1341
+ ac_sed_dataroot='
1342
+ /datarootdir/ {
1343
+ p
1344
+ q
1345
+ }
1346
+ /@datadir@/p
1347
+ /@docdir@/p
1348
+ /@infodir@/p
1349
+ /@localedir@/p
1350
+ /@mandir@/p'
1351
+ case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1352
+ *datarootdir*) ac_datarootdir_seen=yes;;
1353
+ *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1354
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1355
+ $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1356
+ ac_datarootdir_hack='
1357
+ s&@datadir@&${datarootdir}&g
1358
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1359
+ s&@infodir@&${datarootdir}/info&g
1360
+ s&@localedir@&${datarootdir}/locale&g
1361
+ s&@mandir@&${datarootdir}/man&g
1362
+ s&\${datarootdir}&${prefix}/share&g' ;;
1363
+ esac
1364
+ ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
1365
+ h
1366
+ s///
1367
+ s/^/:/
1368
+ s/[ ]*$/:/
1369
+ s/:\$(srcdir):/:/g
1370
+ s/:\${srcdir}:/:/g
1371
+ s/:@srcdir@:/:/g
1372
+ s/^:*//
1373
+ s/:*$//
1374
+ x
1375
+ s/\(=[ ]*\).*/\1/
1376
+ G
1377
+ s/\n//
1378
+ s/^[^=]*=[ ]*$//
1379
+ }
1380
+
1381
+ :t
1382
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1383
+ s|@configure_input@|$ac_sed_conf_input|;t t
1384
+ s&@top_builddir@&$ac_top_builddir_sub&;t t
1385
+ s&@top_build_prefix@&$ac_top_build_prefix&;t t
1386
+ s&@srcdir@&$ac_srcdir&;t t
1387
+ s&@abs_srcdir@&$ac_abs_srcdir&;t t
1388
+ s&@top_srcdir@&$ac_top_srcdir&;t t
1389
+ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1390
+ s&@builddir@&$ac_builddir&;t t
1391
+ s&@abs_builddir@&$ac_abs_builddir&;t t
1392
+ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1393
+ s&@INSTALL@&$ac_INSTALL&;t t
1394
+ s&@MKDIR_P@&$ac_MKDIR_P&;t t
1395
+ $ac_datarootdir_hack
1396
+ "
1397
+ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
1398
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1399
+
1400
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1401
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
1402
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
1403
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
1404
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1405
+ which seems to be undefined. Please make sure it is defined" >&5
1406
+ $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1407
+ which seems to be undefined. Please make sure it is defined" >&2;}
1408
+
1409
+ rm -f "$ac_tmp/stdin"
1410
+ case $ac_file in
1411
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
1412
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
1413
+ esac \
1414
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1415
+ ;;
1416
+ :H)
1417
+ #
1418
+ # CONFIG_HEADER
1419
+ #
1420
+ if test x"$ac_file" != x-; then
1421
+ {
1422
+ $as_echo "/* $configure_input */" \
1423
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1424
+ } >"$ac_tmp/config.h" \
1425
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1426
+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1427
+ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1428
+ $as_echo "$as_me: $ac_file is unchanged" >&6;}
1429
+ else
1430
+ rm -f "$ac_file"
1431
+ mv "$ac_tmp/config.h" "$ac_file" \
1432
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1433
+ fi
1434
+ else
1435
+ $as_echo "/* $configure_input */" \
1436
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1437
+ || as_fn_error $? "could not create -" "$LINENO" 5
1438
+ fi
1439
+ # Compute "$ac_file"'s index in $config_headers.
1440
+ _am_arg="$ac_file"
1441
+ _am_stamp_count=1
1442
+ for _am_header in $config_headers :; do
1443
+ case $_am_header in
1444
+ $_am_arg | $_am_arg:* )
1445
+ break ;;
1446
+ * )
1447
+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1448
+ esac
1449
+ done
1450
+ echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1451
+ $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1452
+ X"$_am_arg" : 'X\(//\)[^/]' \| \
1453
+ X"$_am_arg" : 'X\(//\)$' \| \
1454
+ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1455
+ $as_echo X"$_am_arg" |
1456
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1457
+ s//\1/
1458
+ q
1459
+ }
1460
+ /^X\(\/\/\)[^/].*/{
1461
+ s//\1/
1462
+ q
1463
+ }
1464
+ /^X\(\/\/\)$/{
1465
+ s//\1/
1466
+ q
1467
+ }
1468
+ /^X\(\/\).*/{
1469
+ s//\1/
1470
+ q
1471
+ }
1472
+ s/.*/./; q'`/stamp-h$_am_stamp_count
1473
+ ;;
1474
+
1475
+ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1476
+ $as_echo "$as_me: executing $ac_file commands" >&6;}
1477
+ ;;
1478
+ esac
1479
+
1480
+
1481
+ case $ac_file$ac_mode in
1482
+ "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1483
+ # Autoconf 2.62 quotes --file arguments for eval, but not when files
1484
+ # are listed without --file. Let's play safe and only enable the eval
1485
+ # if we detect the quoting.
1486
+ case $CONFIG_FILES in
1487
+ *\'*) eval set x "$CONFIG_FILES" ;;
1488
+ *) set x $CONFIG_FILES ;;
1489
+ esac
1490
+ shift
1491
+ for mf
1492
+ do
1493
+ # Strip MF so we end up with the name of the file.
1494
+ mf=`echo "$mf" | sed -e 's/:.*$//'`
1495
+ # Check whether this is an Automake generated Makefile or not.
1496
+ # We used to match only the files named `Makefile.in', but
1497
+ # some people rename them; so instead we look at the file content.
1498
+ # Grep'ing the first line is not enough: some people post-process
1499
+ # each Makefile.in and add a new line on top of each file to say so.
1500
+ # Grep'ing the whole file is not good either: AIX grep has a line
1501
+ # limit of 2048, but all sed's we know have understand at least 4000.
1502
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1503
+ dirpart=`$as_dirname -- "$mf" ||
1504
+ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1505
+ X"$mf" : 'X\(//\)[^/]' \| \
1506
+ X"$mf" : 'X\(//\)$' \| \
1507
+ X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1508
+ $as_echo X"$mf" |
1509
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1510
+ s//\1/
1511
+ q
1512
+ }
1513
+ /^X\(\/\/\)[^/].*/{
1514
+ s//\1/
1515
+ q
1516
+ }
1517
+ /^X\(\/\/\)$/{
1518
+ s//\1/
1519
+ q
1520
+ }
1521
+ /^X\(\/\).*/{
1522
+ s//\1/
1523
+ q
1524
+ }
1525
+ s/.*/./; q'`
1526
+ else
1527
+ continue
1528
+ fi
1529
+ # Extract the definition of DEPDIR, am__include, and am__quote
1530
+ # from the Makefile without running `make'.
1531
+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1532
+ test -z "$DEPDIR" && continue
1533
+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
1534
+ test -z "am__include" && continue
1535
+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1536
+ # When using ansi2knr, U may be empty or an underscore; expand it
1537
+ U=`sed -n 's/^U = //p' < "$mf"`
1538
+ # Find all dependency output files, they are included files with
1539
+ # $(DEPDIR) in their names. We invoke sed twice because it is the
1540
+ # simplest approach to changing $(DEPDIR) to its actual value in the
1541
+ # expansion.
1542
+ for file in `sed -n "
1543
+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1544
+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1545
+ # Make sure the directory exists.
1546
+ test -f "$dirpart/$file" && continue
1547
+ fdir=`$as_dirname -- "$file" ||
1548
+ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1549
+ X"$file" : 'X\(//\)[^/]' \| \
1550
+ X"$file" : 'X\(//\)$' \| \
1551
+ X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1552
+ $as_echo X"$file" |
1553
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1554
+ s//\1/
1555
+ q
1556
+ }
1557
+ /^X\(\/\/\)[^/].*/{
1558
+ s//\1/
1559
+ q
1560
+ }
1561
+ /^X\(\/\/\)$/{
1562
+ s//\1/
1563
+ q
1564
+ }
1565
+ /^X\(\/\).*/{
1566
+ s//\1/
1567
+ q
1568
+ }
1569
+ s/.*/./; q'`
1570
+ as_dir=$dirpart/$fdir; as_fn_mkdir_p
1571
+ # echo "creating $dirpart/$file"
1572
+ echo '# dummy' > "$dirpart/$file"
1573
+ done
1574
+ done
1575
+ }
1576
+ ;;
1577
+ "libtool":C)
1578
+
1579
+ # See if we are running on zsh, and set the options which allow our
1580
+ # commands through without removal of \ escapes.
1581
+ if test -n "${ZSH_VERSION+set}" ; then
1582
+ setopt NO_GLOB_SUBST
1583
+ fi
1584
+
1585
+ cfgfile="${ofile}T"
1586
+ trap "$RM \"$cfgfile\"; exit 1" 1 2 15
1587
+ $RM "$cfgfile"
1588
+
1589
+ cat <<_LT_EOF >> "$cfgfile"
1590
+ #! $SHELL
1591
+
1592
+ # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
1593
+ # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
1594
+ # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1595
+ # NOTE: Changes made to this file will be lost: look at ltmain.sh.
1596
+ #
1597
+ # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
1598
+ # 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
1599
+ # Inc.
1600
+ # Written by Gordon Matzigkeit, 1996
1601
+ #
1602
+ # This file is part of GNU Libtool.
1603
+ #
1604
+ # GNU Libtool is free software; you can redistribute it and/or
1605
+ # modify it under the terms of the GNU General Public License as
1606
+ # published by the Free Software Foundation; either version 2 of
1607
+ # the License, or (at your option) any later version.
1608
+ #
1609
+ # As a special exception to the GNU General Public License,
1610
+ # if you distribute this file as part of a program or library that
1611
+ # is built using GNU Libtool, you may include this file under the
1612
+ # same distribution terms that you use for the rest of that program.
1613
+ #
1614
+ # GNU Libtool is distributed in the hope that it will be useful,
1615
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
1616
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1617
+ # GNU General Public License for more details.
1618
+ #
1619
+ # You should have received a copy of the GNU General Public License
1620
+ # along with GNU Libtool; see the file COPYING. If not, a copy
1621
+ # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
1622
+ # obtained by writing to the Free Software Foundation, Inc.,
1623
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1624
+
1625
+
1626
+ # The names of the tagged configurations supported by this script.
1627
+ available_tags="CXX "
1628
+
1629
+ # ### BEGIN LIBTOOL CONFIG
1630
+
1631
+ # Which release of libtool.m4 was used?
1632
+ macro_version=$macro_version
1633
+ macro_revision=$macro_revision
1634
+
1635
+ # Whether or not to build shared libraries.
1636
+ build_libtool_libs=$enable_shared
1637
+
1638
+ # Whether or not to build static libraries.
1639
+ build_old_libs=$enable_static
1640
+
1641
+ # What type of objects to build.
1642
+ pic_mode=$pic_mode
1643
+
1644
+ # Whether or not to optimize for fast installation.
1645
+ fast_install=$enable_fast_install
1646
+
1647
+ # Shell to use when invoking shell scripts.
1648
+ SHELL=$lt_SHELL
1649
+
1650
+ # An echo program that protects backslashes.
1651
+ ECHO=$lt_ECHO
1652
+
1653
+ # The host system.
1654
+ host_alias=$host_alias
1655
+ host=$host
1656
+ host_os=$host_os
1657
+
1658
+ # The build system.
1659
+ build_alias=$build_alias
1660
+ build=$build
1661
+ build_os=$build_os
1662
+
1663
+ # A sed program that does not truncate output.
1664
+ SED=$lt_SED
1665
+
1666
+ # Sed that helps us avoid accidentally triggering echo(1) options like -n.
1667
+ Xsed="\$SED -e 1s/^X//"
1668
+
1669
+ # A grep program that handles long lines.
1670
+ GREP=$lt_GREP
1671
+
1672
+ # An ERE matcher.
1673
+ EGREP=$lt_EGREP
1674
+
1675
+ # A literal string matcher.
1676
+ FGREP=$lt_FGREP
1677
+
1678
+ # A BSD- or MS-compatible name lister.
1679
+ NM=$lt_NM
1680
+
1681
+ # Whether we need soft or hard links.
1682
+ LN_S=$lt_LN_S
1683
+
1684
+ # What is the maximum length of a command?
1685
+ max_cmd_len=$max_cmd_len
1686
+
1687
+ # Object file suffix (normally "o").
1688
+ objext=$ac_objext
1689
+
1690
+ # Executable file suffix (normally "").
1691
+ exeext=$exeext
1692
+
1693
+ # whether the shell understands "unset".
1694
+ lt_unset=$lt_unset
1695
+
1696
+ # turn spaces into newlines.
1697
+ SP2NL=$lt_lt_SP2NL
1698
+
1699
+ # turn newlines into spaces.
1700
+ NL2SP=$lt_lt_NL2SP
1701
+
1702
+ # convert \$build file names to \$host format.
1703
+ to_host_file_cmd=$lt_cv_to_host_file_cmd
1704
+
1705
+ # convert \$build files to toolchain format.
1706
+ to_tool_file_cmd=$lt_cv_to_tool_file_cmd
1707
+
1708
+ # An object symbol dumper.
1709
+ OBJDUMP=$lt_OBJDUMP
1710
+
1711
+ # Method to check whether dependent libraries are shared objects.
1712
+ deplibs_check_method=$lt_deplibs_check_method
1713
+
1714
+ # Command to use when deplibs_check_method = "file_magic".
1715
+ file_magic_cmd=$lt_file_magic_cmd
1716
+
1717
+ # How to find potential files when deplibs_check_method = "file_magic".
1718
+ file_magic_glob=$lt_file_magic_glob
1719
+
1720
+ # Find potential files using nocaseglob when deplibs_check_method = "file_magic".
1721
+ want_nocaseglob=$lt_want_nocaseglob
1722
+
1723
+ # DLL creation program.
1724
+ DLLTOOL=$lt_DLLTOOL
1725
+
1726
+ # Command to associate shared and link libraries.
1727
+ sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
1728
+
1729
+ # The archiver.
1730
+ AR=$lt_AR
1731
+
1732
+ # Flags to create an archive.
1733
+ AR_FLAGS=$lt_AR_FLAGS
1734
+
1735
+ # How to feed a file listing to the archiver.
1736
+ archiver_list_spec=$lt_archiver_list_spec
1737
+
1738
+ # A symbol stripping program.
1739
+ STRIP=$lt_STRIP
1740
+
1741
+ # Commands used to install an old-style archive.
1742
+ RANLIB=$lt_RANLIB
1743
+ old_postinstall_cmds=$lt_old_postinstall_cmds
1744
+ old_postuninstall_cmds=$lt_old_postuninstall_cmds
1745
+
1746
+ # Whether to use a lock for old archive extraction.
1747
+ lock_old_archive_extraction=$lock_old_archive_extraction
1748
+
1749
+ # A C compiler.
1750
+ LTCC=$lt_CC
1751
+
1752
+ # LTCC compiler flags.
1753
+ LTCFLAGS=$lt_CFLAGS
1754
+
1755
+ # Take the output of nm and produce a listing of raw symbols and C names.
1756
+ global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
1757
+
1758
+ # Transform the output of nm in a proper C declaration.
1759
+ global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
1760
+
1761
+ # Transform the output of nm in a C name address pair.
1762
+ global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
1763
+
1764
+ # Transform the output of nm in a C name address pair when lib prefix is needed.
1765
+ global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
1766
+
1767
+ # Specify filename containing input files for \$NM.
1768
+ nm_file_list_spec=$lt_nm_file_list_spec
1769
+
1770
+ # The root where to search for dependent libraries,and in which our libraries should be installed.
1771
+ lt_sysroot=$lt_sysroot
1772
+
1773
+ # The name of the directory that contains temporary libtool files.
1774
+ objdir=$objdir
1775
+
1776
+ # Used to examine libraries when file_magic_cmd begins with "file".
1777
+ MAGIC_CMD=$MAGIC_CMD
1778
+
1779
+ # Must we lock files when doing compilation?
1780
+ need_locks=$lt_need_locks
1781
+
1782
+ # Manifest tool.
1783
+ MANIFEST_TOOL=$lt_MANIFEST_TOOL
1784
+
1785
+ # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
1786
+ DSYMUTIL=$lt_DSYMUTIL
1787
+
1788
+ # Tool to change global to local symbols on Mac OS X.
1789
+ NMEDIT=$lt_NMEDIT
1790
+
1791
+ # Tool to manipulate fat objects and archives on Mac OS X.
1792
+ LIPO=$lt_LIPO
1793
+
1794
+ # ldd/readelf like tool for Mach-O binaries on Mac OS X.
1795
+ OTOOL=$lt_OTOOL
1796
+
1797
+ # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
1798
+ OTOOL64=$lt_OTOOL64
1799
+
1800
+ # Old archive suffix (normally "a").
1801
+ libext=$libext
1802
+
1803
+ # Shared library suffix (normally ".so").
1804
+ shrext_cmds=$lt_shrext_cmds
1805
+
1806
+ # The commands to extract the exported symbol list from a shared archive.
1807
+ extract_expsyms_cmds=$lt_extract_expsyms_cmds
1808
+
1809
+ # Variables whose values should be saved in libtool wrapper scripts and
1810
+ # restored at link time.
1811
+ variables_saved_for_relink=$lt_variables_saved_for_relink
1812
+
1813
+ # Do we need the "lib" prefix for modules?
1814
+ need_lib_prefix=$need_lib_prefix
1815
+
1816
+ # Do we need a version for libraries?
1817
+ need_version=$need_version
1818
+
1819
+ # Library versioning type.
1820
+ version_type=$version_type
1821
+
1822
+ # Shared library runtime path variable.
1823
+ runpath_var=$runpath_var
1824
+
1825
+ # Shared library path variable.
1826
+ shlibpath_var=$shlibpath_var
1827
+
1828
+ # Is shlibpath searched before the hard-coded library search path?
1829
+ shlibpath_overrides_runpath=$shlibpath_overrides_runpath
1830
+
1831
+ # Format of library name prefix.
1832
+ libname_spec=$lt_libname_spec
1833
+
1834
+ # List of archive names. First name is the real one, the rest are links.
1835
+ # The last name is the one that the linker finds with -lNAME
1836
+ library_names_spec=$lt_library_names_spec
1837
+
1838
+ # The coded name of the library, if different from the real name.
1839
+ soname_spec=$lt_soname_spec
1840
+
1841
+ # Permission mode override for installation of shared libraries.
1842
+ install_override_mode=$lt_install_override_mode
1843
+
1844
+ # Command to use after installation of a shared archive.
1845
+ postinstall_cmds=$lt_postinstall_cmds
1846
+
1847
+ # Command to use after uninstallation of a shared archive.
1848
+ postuninstall_cmds=$lt_postuninstall_cmds
1849
+
1850
+ # Commands used to finish a libtool library installation in a directory.
1851
+ finish_cmds=$lt_finish_cmds
1852
+
1853
+ # As "finish_cmds", except a single script fragment to be evaled but
1854
+ # not shown.
1855
+ finish_eval=$lt_finish_eval
1856
+
1857
+ # Whether we should hardcode library paths into libraries.
1858
+ hardcode_into_libs=$hardcode_into_libs
1859
+
1860
+ # Compile-time system search path for libraries.
1861
+ sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
1862
+
1863
+ # Run-time system search path for libraries.
1864
+ sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
1865
+
1866
+ # Whether dlopen is supported.
1867
+ dlopen_support=$enable_dlopen
1868
+
1869
+ # Whether dlopen of programs is supported.
1870
+ dlopen_self=$enable_dlopen_self
1871
+
1872
+ # Whether dlopen of statically linked programs is supported.
1873
+ dlopen_self_static=$enable_dlopen_self_static
1874
+
1875
+ # Commands to strip libraries.
1876
+ old_striplib=$lt_old_striplib
1877
+ striplib=$lt_striplib
1878
+
1879
+
1880
+ # The linker used to build libraries.
1881
+ LD=$lt_LD
1882
+
1883
+ # How to create reloadable object files.
1884
+ reload_flag=$lt_reload_flag
1885
+ reload_cmds=$lt_reload_cmds
1886
+
1887
+ # Commands used to build an old-style archive.
1888
+ old_archive_cmds=$lt_old_archive_cmds
1889
+
1890
+ # A language specific compiler.
1891
+ CC=$lt_compiler
1892
+
1893
+ # Is the compiler the GNU compiler?
1894
+ with_gcc=$GCC
1895
+
1896
+ # Compiler flag to turn off builtin functions.
1897
+ no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
1898
+
1899
+ # Additional compiler flags for building library objects.
1900
+ pic_flag=$lt_lt_prog_compiler_pic
1901
+
1902
+ # How to pass a linker flag through the compiler.
1903
+ wl=$lt_lt_prog_compiler_wl
1904
+
1905
+ # Compiler flag to prevent dynamic linking.
1906
+ link_static_flag=$lt_lt_prog_compiler_static
1907
+
1908
+ # Does compiler simultaneously support -c and -o options?
1909
+ compiler_c_o=$lt_lt_cv_prog_compiler_c_o
1910
+
1911
+ # Whether or not to add -lc for building shared libraries.
1912
+ build_libtool_need_lc=$archive_cmds_need_lc
1913
+
1914
+ # Whether or not to disallow shared libs when runtime libs are static.
1915
+ allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
1916
+
1917
+ # Compiler flag to allow reflexive dlopens.
1918
+ export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
1919
+
1920
+ # Compiler flag to generate shared objects directly from archives.
1921
+ whole_archive_flag_spec=$lt_whole_archive_flag_spec
1922
+
1923
+ # Whether the compiler copes with passing no objects directly.
1924
+ compiler_needs_object=$lt_compiler_needs_object
1925
+
1926
+ # Create an old-style archive from a shared archive.
1927
+ old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
1928
+
1929
+ # Create a temporary old-style archive to link instead of a shared archive.
1930
+ old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
1931
+
1932
+ # Commands used to build a shared archive.
1933
+ archive_cmds=$lt_archive_cmds
1934
+ archive_expsym_cmds=$lt_archive_expsym_cmds
1935
+
1936
+ # Commands used to build a loadable module if different from building
1937
+ # a shared archive.
1938
+ module_cmds=$lt_module_cmds
1939
+ module_expsym_cmds=$lt_module_expsym_cmds
1940
+
1941
+ # Whether we are building with GNU ld or not.
1942
+ with_gnu_ld=$lt_with_gnu_ld
1943
+
1944
+ # Flag that allows shared libraries with undefined symbols to be built.
1945
+ allow_undefined_flag=$lt_allow_undefined_flag
1946
+
1947
+ # Flag that enforces no undefined symbols.
1948
+ no_undefined_flag=$lt_no_undefined_flag
1949
+
1950
+ # Flag to hardcode \$libdir into a binary during linking.
1951
+ # This must work even if \$libdir does not exist
1952
+ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
1953
+
1954
+ # If ld is used when linking, flag to hardcode \$libdir into a binary
1955
+ # during linking. This must work even if \$libdir does not exist.
1956
+ hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
1957
+
1958
+ # Whether we need a single "-rpath" flag with a separated argument.
1959
+ hardcode_libdir_separator=$lt_hardcode_libdir_separator
1960
+
1961
+ # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1962
+ # DIR into the resulting binary.
1963
+ hardcode_direct=$hardcode_direct
1964
+
1965
+ # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1966
+ # DIR into the resulting binary and the resulting library dependency is
1967
+ # "absolute",i.e impossible to change by setting \${shlibpath_var} if the
1968
+ # library is relocated.
1969
+ hardcode_direct_absolute=$hardcode_direct_absolute
1970
+
1971
+ # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
1972
+ # into the resulting binary.
1973
+ hardcode_minus_L=$hardcode_minus_L
1974
+
1975
+ # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
1976
+ # into the resulting binary.
1977
+ hardcode_shlibpath_var=$hardcode_shlibpath_var
1978
+
1979
+ # Set to "yes" if building a shared library automatically hardcodes DIR
1980
+ # into the library and all subsequent libraries and executables linked
1981
+ # against it.
1982
+ hardcode_automatic=$hardcode_automatic
1983
+
1984
+ # Set to yes if linker adds runtime paths of dependent libraries
1985
+ # to runtime path list.
1986
+ inherit_rpath=$inherit_rpath
1987
+
1988
+ # Whether libtool must link a program against all its dependency libraries.
1989
+ link_all_deplibs=$link_all_deplibs
1990
+
1991
+ # Set to "yes" if exported symbols are required.
1992
+ always_export_symbols=$always_export_symbols
1993
+
1994
+ # The commands to list exported symbols.
1995
+ export_symbols_cmds=$lt_export_symbols_cmds
1996
+
1997
+ # Symbols that should not be listed in the preloaded symbols.
1998
+ exclude_expsyms=$lt_exclude_expsyms
1999
+
2000
+ # Symbols that must always be exported.
2001
+ include_expsyms=$lt_include_expsyms
2002
+
2003
+ # Commands necessary for linking programs (against libraries) with templates.
2004
+ prelink_cmds=$lt_prelink_cmds
2005
+
2006
+ # Commands necessary for finishing linking programs.
2007
+ postlink_cmds=$lt_postlink_cmds
2008
+
2009
+ # Specify filename containing input files.
2010
+ file_list_spec=$lt_file_list_spec
2011
+
2012
+ # How to hardcode a shared library path into an executable.
2013
+ hardcode_action=$hardcode_action
2014
+
2015
+ # The directories searched by this compiler when creating a shared library.
2016
+ compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
2017
+
2018
+ # Dependencies to place before and after the objects being linked to
2019
+ # create a shared library.
2020
+ predep_objects=$lt_predep_objects
2021
+ postdep_objects=$lt_postdep_objects
2022
+ predeps=$lt_predeps
2023
+ postdeps=$lt_postdeps
2024
+
2025
+ # The library search path used internally by the compiler when linking
2026
+ # a shared library.
2027
+ compiler_lib_search_path=$lt_compiler_lib_search_path
2028
+
2029
+ # ### END LIBTOOL CONFIG
2030
+
2031
+ _LT_EOF
2032
+
2033
+ case $host_os in
2034
+ aix3*)
2035
+ cat <<\_LT_EOF >> "$cfgfile"
2036
+ # AIX sometimes has problems with the GCC collect2 program. For some
2037
+ # reason, if we set the COLLECT_NAMES environment variable, the problems
2038
+ # vanish in a puff of smoke.
2039
+ if test "X${COLLECT_NAMES+set}" != Xset; then
2040
+ COLLECT_NAMES=
2041
+ export COLLECT_NAMES
2042
+ fi
2043
+ _LT_EOF
2044
+ ;;
2045
+ esac
2046
+
2047
+
2048
+ ltmain="$ac_aux_dir/ltmain.sh"
2049
+
2050
+
2051
+ # We use sed instead of cat because bash on DJGPP gets confused if
2052
+ # if finds mixed CR/LF and LF-only lines. Since sed operates in
2053
+ # text mode, it properly converts lines to CR/LF. This bash problem
2054
+ # is reportedly fixed, but why not run on old versions too?
2055
+ sed '$q' "$ltmain" >> "$cfgfile" \
2056
+ || (rm -f "$cfgfile"; exit 1)
2057
+
2058
+ if test x"$xsi_shell" = xyes; then
2059
+ sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
2060
+ func_dirname ()\
2061
+ {\
2062
+ \ case ${1} in\
2063
+ \ */*) func_dirname_result="${1%/*}${2}" ;;\
2064
+ \ * ) func_dirname_result="${3}" ;;\
2065
+ \ esac\
2066
+ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
2067
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2068
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2069
+ test 0 -eq $? || _lt_function_replace_fail=:
2070
+
2071
+
2072
+ sed -e '/^func_basename ()$/,/^} # func_basename /c\
2073
+ func_basename ()\
2074
+ {\
2075
+ \ func_basename_result="${1##*/}"\
2076
+ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
2077
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2078
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2079
+ test 0 -eq $? || _lt_function_replace_fail=:
2080
+
2081
+
2082
+ sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
2083
+ func_dirname_and_basename ()\
2084
+ {\
2085
+ \ case ${1} in\
2086
+ \ */*) func_dirname_result="${1%/*}${2}" ;;\
2087
+ \ * ) func_dirname_result="${3}" ;;\
2088
+ \ esac\
2089
+ \ func_basename_result="${1##*/}"\
2090
+ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
2091
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2092
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2093
+ test 0 -eq $? || _lt_function_replace_fail=:
2094
+
2095
+
2096
+ sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
2097
+ func_stripname ()\
2098
+ {\
2099
+ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
2100
+ \ # positional parameters, so assign one to ordinary parameter first.\
2101
+ \ func_stripname_result=${3}\
2102
+ \ func_stripname_result=${func_stripname_result#"${1}"}\
2103
+ \ func_stripname_result=${func_stripname_result%"${2}"}\
2104
+ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
2105
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2106
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2107
+ test 0 -eq $? || _lt_function_replace_fail=:
2108
+
2109
+
2110
+ sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
2111
+ func_split_long_opt ()\
2112
+ {\
2113
+ \ func_split_long_opt_name=${1%%=*}\
2114
+ \ func_split_long_opt_arg=${1#*=}\
2115
+ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
2116
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2117
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2118
+ test 0 -eq $? || _lt_function_replace_fail=:
2119
+
2120
+
2121
+ sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
2122
+ func_split_short_opt ()\
2123
+ {\
2124
+ \ func_split_short_opt_arg=${1#??}\
2125
+ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
2126
+ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
2127
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2128
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2129
+ test 0 -eq $? || _lt_function_replace_fail=:
2130
+
2131
+
2132
+ sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
2133
+ func_lo2o ()\
2134
+ {\
2135
+ \ case ${1} in\
2136
+ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
2137
+ \ *) func_lo2o_result=${1} ;;\
2138
+ \ esac\
2139
+ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
2140
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2141
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2142
+ test 0 -eq $? || _lt_function_replace_fail=:
2143
+
2144
+
2145
+ sed -e '/^func_xform ()$/,/^} # func_xform /c\
2146
+ func_xform ()\
2147
+ {\
2148
+ func_xform_result=${1%.*}.lo\
2149
+ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
2150
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2151
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2152
+ test 0 -eq $? || _lt_function_replace_fail=:
2153
+
2154
+
2155
+ sed -e '/^func_arith ()$/,/^} # func_arith /c\
2156
+ func_arith ()\
2157
+ {\
2158
+ func_arith_result=$(( $* ))\
2159
+ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
2160
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2161
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2162
+ test 0 -eq $? || _lt_function_replace_fail=:
2163
+
2164
+
2165
+ sed -e '/^func_len ()$/,/^} # func_len /c\
2166
+ func_len ()\
2167
+ {\
2168
+ func_len_result=${#1}\
2169
+ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
2170
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2171
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2172
+ test 0 -eq $? || _lt_function_replace_fail=:
2173
+
2174
+ fi
2175
+
2176
+ if test x"$lt_shell_append" = xyes; then
2177
+ sed -e '/^func_append ()$/,/^} # func_append /c\
2178
+ func_append ()\
2179
+ {\
2180
+ eval "${1}+=\\${2}"\
2181
+ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
2182
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2183
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2184
+ test 0 -eq $? || _lt_function_replace_fail=:
2185
+
2186
+
2187
+ sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
2188
+ func_append_quoted ()\
2189
+ {\
2190
+ \ func_quote_for_eval "${2}"\
2191
+ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
2192
+ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
2193
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2194
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2195
+ test 0 -eq $? || _lt_function_replace_fail=:
2196
+
2197
+
2198
+ # Save a `func_append' function call where possible by direct use of '+='
2199
+ sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
2200
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2201
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2202
+ test 0 -eq $? || _lt_function_replace_fail=:
2203
+ else
2204
+ # Save a `func_append' function call even when '+=' is not available
2205
+ sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
2206
+ && mv -f "$cfgfile.tmp" "$cfgfile" \
2207
+ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
2208
+ test 0 -eq $? || _lt_function_replace_fail=:
2209
+ fi
2210
+
2211
+ if test x"$_lt_function_replace_fail" = x":"; then
2212
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
2213
+ $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
2214
+ fi
2215
+
2216
+
2217
+ mv -f "$cfgfile" "$ofile" ||
2218
+ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
2219
+ chmod +x "$ofile"
2220
+
2221
+
2222
+ cat <<_LT_EOF >> "$ofile"
2223
+
2224
+ # ### BEGIN LIBTOOL TAG CONFIG: CXX
2225
+
2226
+ # The linker used to build libraries.
2227
+ LD=$lt_LD_CXX
2228
+
2229
+ # How to create reloadable object files.
2230
+ reload_flag=$lt_reload_flag_CXX
2231
+ reload_cmds=$lt_reload_cmds_CXX
2232
+
2233
+ # Commands used to build an old-style archive.
2234
+ old_archive_cmds=$lt_old_archive_cmds_CXX
2235
+
2236
+ # A language specific compiler.
2237
+ CC=$lt_compiler_CXX
2238
+
2239
+ # Is the compiler the GNU compiler?
2240
+ with_gcc=$GCC_CXX
2241
+
2242
+ # Compiler flag to turn off builtin functions.
2243
+ no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
2244
+
2245
+ # Additional compiler flags for building library objects.
2246
+ pic_flag=$lt_lt_prog_compiler_pic_CXX
2247
+
2248
+ # How to pass a linker flag through the compiler.
2249
+ wl=$lt_lt_prog_compiler_wl_CXX
2250
+
2251
+ # Compiler flag to prevent dynamic linking.
2252
+ link_static_flag=$lt_lt_prog_compiler_static_CXX
2253
+
2254
+ # Does compiler simultaneously support -c and -o options?
2255
+ compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
2256
+
2257
+ # Whether or not to add -lc for building shared libraries.
2258
+ build_libtool_need_lc=$archive_cmds_need_lc_CXX
2259
+
2260
+ # Whether or not to disallow shared libs when runtime libs are static.
2261
+ allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
2262
+
2263
+ # Compiler flag to allow reflexive dlopens.
2264
+ export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
2265
+
2266
+ # Compiler flag to generate shared objects directly from archives.
2267
+ whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
2268
+
2269
+ # Whether the compiler copes with passing no objects directly.
2270
+ compiler_needs_object=$lt_compiler_needs_object_CXX
2271
+
2272
+ # Create an old-style archive from a shared archive.
2273
+ old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
2274
+
2275
+ # Create a temporary old-style archive to link instead of a shared archive.
2276
+ old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
2277
+
2278
+ # Commands used to build a shared archive.
2279
+ archive_cmds=$lt_archive_cmds_CXX
2280
+ archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
2281
+
2282
+ # Commands used to build a loadable module if different from building
2283
+ # a shared archive.
2284
+ module_cmds=$lt_module_cmds_CXX
2285
+ module_expsym_cmds=$lt_module_expsym_cmds_CXX
2286
+
2287
+ # Whether we are building with GNU ld or not.
2288
+ with_gnu_ld=$lt_with_gnu_ld_CXX
2289
+
2290
+ # Flag that allows shared libraries with undefined symbols to be built.
2291
+ allow_undefined_flag=$lt_allow_undefined_flag_CXX
2292
+
2293
+ # Flag that enforces no undefined symbols.
2294
+ no_undefined_flag=$lt_no_undefined_flag_CXX
2295
+
2296
+ # Flag to hardcode \$libdir into a binary during linking.
2297
+ # This must work even if \$libdir does not exist
2298
+ hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
2299
+
2300
+ # If ld is used when linking, flag to hardcode \$libdir into a binary
2301
+ # during linking. This must work even if \$libdir does not exist.
2302
+ hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
2303
+
2304
+ # Whether we need a single "-rpath" flag with a separated argument.
2305
+ hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
2306
+
2307
+ # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
2308
+ # DIR into the resulting binary.
2309
+ hardcode_direct=$hardcode_direct_CXX
2310
+
2311
+ # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
2312
+ # DIR into the resulting binary and the resulting library dependency is
2313
+ # "absolute",i.e impossible to change by setting \${shlibpath_var} if the
2314
+ # library is relocated.
2315
+ hardcode_direct_absolute=$hardcode_direct_absolute_CXX
2316
+
2317
+ # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
2318
+ # into the resulting binary.
2319
+ hardcode_minus_L=$hardcode_minus_L_CXX
2320
+
2321
+ # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
2322
+ # into the resulting binary.
2323
+ hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
2324
+
2325
+ # Set to "yes" if building a shared library automatically hardcodes DIR
2326
+ # into the library and all subsequent libraries and executables linked
2327
+ # against it.
2328
+ hardcode_automatic=$hardcode_automatic_CXX
2329
+
2330
+ # Set to yes if linker adds runtime paths of dependent libraries
2331
+ # to runtime path list.
2332
+ inherit_rpath=$inherit_rpath_CXX
2333
+
2334
+ # Whether libtool must link a program against all its dependency libraries.
2335
+ link_all_deplibs=$link_all_deplibs_CXX
2336
+
2337
+ # Set to "yes" if exported symbols are required.
2338
+ always_export_symbols=$always_export_symbols_CXX
2339
+
2340
+ # The commands to list exported symbols.
2341
+ export_symbols_cmds=$lt_export_symbols_cmds_CXX
2342
+
2343
+ # Symbols that should not be listed in the preloaded symbols.
2344
+ exclude_expsyms=$lt_exclude_expsyms_CXX
2345
+
2346
+ # Symbols that must always be exported.
2347
+ include_expsyms=$lt_include_expsyms_CXX
2348
+
2349
+ # Commands necessary for linking programs (against libraries) with templates.
2350
+ prelink_cmds=$lt_prelink_cmds_CXX
2351
+
2352
+ # Commands necessary for finishing linking programs.
2353
+ postlink_cmds=$lt_postlink_cmds_CXX
2354
+
2355
+ # Specify filename containing input files.
2356
+ file_list_spec=$lt_file_list_spec_CXX
2357
+
2358
+ # How to hardcode a shared library path into an executable.
2359
+ hardcode_action=$hardcode_action_CXX
2360
+
2361
+ # The directories searched by this compiler when creating a shared library.
2362
+ compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
2363
+
2364
+ # Dependencies to place before and after the objects being linked to
2365
+ # create a shared library.
2366
+ predep_objects=$lt_predep_objects_CXX
2367
+ postdep_objects=$lt_postdep_objects_CXX
2368
+ predeps=$lt_predeps_CXX
2369
+ postdeps=$lt_postdeps_CXX
2370
+
2371
+ # The library search path used internally by the compiler when linking
2372
+ # a shared library.
2373
+ compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
2374
+
2375
+ # ### END LIBTOOL TAG CONFIG: CXX
2376
+ _LT_EOF
2377
+
2378
+ ;;
2379
+
2380
+ esac
2381
+ done # for ac_tag
2382
+
2383
+
2384
+ as_fn_exit 0