nutcracker 0.2.4.10mac → 0.2.4.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. data/ext/nutcracker/ChangeLog +0 -0
  2. data/ext/nutcracker/LICENSE +0 -0
  3. data/ext/nutcracker/Makefile.am +0 -0
  4. data/ext/nutcracker/Makefile.in +190 -82
  5. data/ext/nutcracker/NOTICE +0 -0
  6. data/ext/nutcracker/README.md +0 -0
  7. data/ext/nutcracker/aclocal.m4 +231 -122
  8. data/ext/nutcracker/conf/nutcracker.leaf.yml +0 -0
  9. data/ext/nutcracker/conf/nutcracker.root.yml +0 -0
  10. data/ext/nutcracker/conf/nutcracker.yml +0 -0
  11. data/ext/nutcracker/config/config.guess +278 -248
  12. data/ext/nutcracker/config/config.sub +234 -77
  13. data/ext/nutcracker/config/depcomp +143 -39
  14. data/ext/nutcracker/config/install-sh +136 -116
  15. data/ext/nutcracker/config/ltmain.sh +1704 -788
  16. data/ext/nutcracker/config/missing +29 -65
  17. data/ext/nutcracker/config.h.in +0 -15
  18. data/ext/nutcracker/configure +1998 -1052
  19. data/ext/nutcracker/configure.ac +2 -34
  20. data/ext/nutcracker/contrib/Makefile.am +0 -0
  21. data/ext/nutcracker/contrib/Makefile.in +120 -47
  22. data/ext/nutcracker/contrib/yaml-0.1.4.tar.gz +0 -0
  23. data/ext/nutcracker/extconf.rb +5 -0
  24. data/ext/nutcracker/m4/libtool.m4 +960 -396
  25. data/ext/nutcracker/m4/ltoptions.m4 +17 -2
  26. data/ext/nutcracker/m4/ltversion.m4 +6 -6
  27. data/ext/nutcracker/notes/c-styleguide.txt +0 -0
  28. data/ext/nutcracker/notes/debug.txt +0 -0
  29. data/ext/nutcracker/notes/memcache.txt +0 -0
  30. data/ext/nutcracker/notes/recommendation.md +0 -0
  31. data/ext/nutcracker/notes/redis.md +0 -0
  32. data/ext/nutcracker/notes/socket.txt +0 -0
  33. data/ext/nutcracker/scripts/nutcracker.init +0 -0
  34. data/ext/nutcracker/scripts/nutcracker.spec +0 -0
  35. data/ext/nutcracker/scripts/redis-check.py +0 -0
  36. data/ext/nutcracker/src/Makefile.am +1 -1
  37. data/ext/nutcracker/src/Makefile.in +167 -81
  38. data/ext/nutcracker/src/hashkit/Makefile.am +0 -0
  39. data/ext/nutcracker/src/hashkit/Makefile.in +72 -37
  40. data/ext/nutcracker/src/hashkit/nc_crc16.c +0 -0
  41. data/ext/nutcracker/src/hashkit/nc_crc32.c +0 -0
  42. data/ext/nutcracker/src/hashkit/nc_fnv.c +0 -0
  43. data/ext/nutcracker/src/hashkit/nc_hashkit.h +0 -0
  44. data/ext/nutcracker/src/hashkit/nc_hsieh.c +0 -0
  45. data/ext/nutcracker/src/hashkit/nc_jenkins.c +0 -0
  46. data/ext/nutcracker/src/hashkit/nc_ketama.c +0 -0
  47. data/ext/nutcracker/src/hashkit/nc_md5.c +0 -0
  48. data/ext/nutcracker/src/hashkit/nc_modula.c +0 -0
  49. data/ext/nutcracker/src/hashkit/nc_murmur.c +0 -0
  50. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.c +0 -0
  51. data/ext/nutcracker/src/hashkit/nc_random.c +0 -0
  52. data/ext/nutcracker/src/nc.c +0 -0
  53. data/ext/nutcracker/src/nc_array.c +0 -0
  54. data/ext/nutcracker/src/nc_array.h +0 -0
  55. data/ext/nutcracker/src/nc_client.c +0 -0
  56. data/ext/nutcracker/src/nc_client.h +0 -0
  57. data/ext/nutcracker/src/nc_conf.c +0 -0
  58. data/ext/nutcracker/src/nc_conf.h +0 -0
  59. data/ext/nutcracker/src/nc_connection.c +0 -0
  60. data/ext/nutcracker/src/nc_connection.h +0 -0
  61. data/ext/nutcracker/src/nc_core.c +26 -29
  62. data/ext/nutcracker/src/nc_core.h +5 -13
  63. data/ext/nutcracker/src/{nc_epoll.c → nc_event.c} +30 -94
  64. data/ext/nutcracker/src/nc_event.h +13 -33
  65. data/ext/nutcracker/src/nc_log.c +0 -0
  66. data/ext/nutcracker/src/nc_log.h +0 -0
  67. data/ext/nutcracker/src/nc_mbuf.c +0 -0
  68. data/ext/nutcracker/src/nc_mbuf.h +0 -0
  69. data/ext/nutcracker/src/nc_message.c +0 -0
  70. data/ext/nutcracker/src/nc_message.h +0 -0
  71. data/ext/nutcracker/src/nc_proxy.c +8 -8
  72. data/ext/nutcracker/src/nc_proxy.h +0 -0
  73. data/ext/nutcracker/src/nc_queue.h +0 -0
  74. data/ext/nutcracker/src/nc_rbtree.c +0 -0
  75. data/ext/nutcracker/src/nc_rbtree.h +0 -0
  76. data/ext/nutcracker/src/nc_request.c +3 -3
  77. data/ext/nutcracker/src/nc_response.c +6 -4
  78. data/ext/nutcracker/src/nc_server.c +5 -5
  79. data/ext/nutcracker/src/nc_server.h +0 -0
  80. data/ext/nutcracker/src/nc_signal.c +0 -0
  81. data/ext/nutcracker/src/nc_signal.h +0 -0
  82. data/ext/nutcracker/src/nc_stats.c +21 -16
  83. data/ext/nutcracker/src/nc_stats.h +4 -3
  84. data/ext/nutcracker/src/nc_string.c +0 -0
  85. data/ext/nutcracker/src/nc_string.h +0 -0
  86. data/ext/nutcracker/src/nc_util.c +0 -16
  87. data/ext/nutcracker/src/nc_util.h +0 -1
  88. data/ext/nutcracker/src/proto/Makefile.am +0 -0
  89. data/ext/nutcracker/src/proto/Makefile.in +72 -37
  90. data/ext/nutcracker/src/proto/nc_memcache.c +0 -0
  91. data/ext/nutcracker/src/proto/nc_proto.h +0 -0
  92. data/ext/nutcracker/src/proto/nc_redis.c +0 -0
  93. data/lib/nutcracker/version.rb +1 -1
  94. metadata +8 -201
  95. data/ext/nutcracker/Makefile +0 -643
  96. data/ext/nutcracker/autom4te.cache/output.0 +0 -18664
  97. data/ext/nutcracker/autom4te.cache/output.1 +0 -18664
  98. data/ext/nutcracker/autom4te.cache/output.2 +0 -18664
  99. data/ext/nutcracker/autom4te.cache/requests +0 -494
  100. data/ext/nutcracker/autom4te.cache/traces.0 +0 -2415
  101. data/ext/nutcracker/autom4te.cache/traces.1 +0 -945
  102. data/ext/nutcracker/autom4te.cache/traces.2 +0 -2415
  103. data/ext/nutcracker/config.h +0 -332
  104. data/ext/nutcracker/config.log +0 -2684
  105. data/ext/nutcracker/config.status +0 -2317
  106. data/ext/nutcracker/contrib/Makefile +0 -494
  107. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile +0 -736
  108. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +0 -13102
  109. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +0 -13085
  110. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.2 +0 -13085
  111. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +0 -476
  112. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.0 +0 -2339
  113. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +0 -545
  114. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +0 -2339
  115. data/ext/nutcracker/contrib/yaml-0.1.4/config.h +0 -81
  116. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +0 -80
  117. data/ext/nutcracker/contrib/yaml-0.1.4/config.log +0 -688
  118. data/ext/nutcracker/contrib/yaml-0.1.4/config.status +0 -2032
  119. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/annotated.html +0 -51
  120. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/bc_s.png +0 -0
  121. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/classes.html +0 -41
  122. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/closed.png +0 -0
  123. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.css +0 -656
  124. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.png +0 -0
  125. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/files.html +0 -40
  126. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions.html +0 -91
  127. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x62.html +0 -84
  128. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x63.html +0 -87
  129. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x64.html +0 -83
  130. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x65.html +0 -110
  131. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x66.html +0 -79
  132. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x68.html +0 -80
  133. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x69.html +0 -92
  134. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6b.html +0 -71
  135. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6c.html +0 -88
  136. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6d.html +0 -96
  137. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6e.html +0 -71
  138. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6f.html +0 -80
  139. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x70.html +0 -100
  140. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x71.html +0 -71
  141. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x72.html +0 -87
  142. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x73.html +0 -163
  143. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x74.html +0 -115
  144. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x75.html +0 -71
  145. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x76.html +0 -80
  146. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x77.html +0 -77
  147. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars.html +0 -91
  148. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x62.html +0 -84
  149. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x63.html +0 -87
  150. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x64.html +0 -83
  151. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x65.html +0 -110
  152. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x66.html +0 -79
  153. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x68.html +0 -80
  154. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x69.html +0 -92
  155. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6b.html +0 -71
  156. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6c.html +0 -88
  157. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6d.html +0 -96
  158. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6e.html +0 -71
  159. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6f.html +0 -80
  160. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x70.html +0 -100
  161. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x71.html +0 -71
  162. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x72.html +0 -87
  163. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x73.html +0 -163
  164. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x74.html +0 -115
  165. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x75.html +0 -71
  166. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x76.html +0 -80
  167. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x77.html +0 -77
  168. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals.html +0 -667
  169. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_defs.html +0 -81
  170. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_enum.html +0 -78
  171. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_eval.html +0 -373
  172. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_func.html +0 -196
  173. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_type.html +0 -126
  174. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__basic.html +0 -320
  175. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__emitter.html +0 -819
  176. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__events.html +0 -664
  177. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__export.html +0 -60
  178. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__nodes.html +0 -795
  179. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__parser.html +0 -606
  180. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__styles.html +0 -222
  181. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__tokens.html +0 -246
  182. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__version.html +0 -106
  183. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/index.html +0 -31
  184. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/modules.html +0 -42
  185. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_f.png +0 -0
  186. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_h.png +0 -0
  187. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/open.png +0 -0
  188. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__alias__data__s.html +0 -108
  189. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__document__s.html +0 -235
  190. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__emitter__s.html +0 -1300
  191. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__event__s.html +0 -496
  192. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__mark__s.html +0 -108
  193. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__pair__s.html +0 -91
  194. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__s.html +0 -420
  195. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__parser__s.html +0 -1229
  196. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__simple__key__s.html +0 -97
  197. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__tag__directive__s.html +0 -91
  198. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__token__s.html +0 -413
  199. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__version__directive__s.html +0 -91
  200. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_a.png +0 -0
  201. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_b.png +0 -0
  202. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_h.png +0 -0
  203. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_s.png +0 -0
  204. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tabs.css +0 -59
  205. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/yaml_8h.html +0 -525
  206. data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.am +0 -17
  207. data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.in +0 -470
  208. data/ext/nutcracker/contrib/yaml-0.1.4/libtool +0 -8890
  209. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile +0 -484
  210. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.lo +0 -12
  211. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.o +0 -0
  212. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.lo +0 -12
  213. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.o +0 -0
  214. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.lo +0 -12
  215. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.o +0 -0
  216. data/ext/nutcracker/contrib/yaml-0.1.4/src/libyaml.la +0 -41
  217. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.lo +0 -12
  218. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.o +0 -0
  219. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.lo +0 -12
  220. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.o +0 -0
  221. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.lo +0 -12
  222. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.o +0 -0
  223. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.lo +0 -12
  224. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.o +0 -0
  225. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.lo +0 -12
  226. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.o +0 -0
  227. data/ext/nutcracker/contrib/yaml-0.1.4/stamp-h1 +0 -1
  228. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile +0 -675
  229. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor +0 -0
  230. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt +0 -0
  231. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.o +0 -0
  232. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.o +0 -0
  233. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter +0 -0
  234. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt +0 -0
  235. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.o +0 -0
  236. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.o +0 -0
  237. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper +0 -0
  238. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.o +0 -0
  239. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter +0 -0
  240. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.o +0 -0
  241. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader +0 -0
  242. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.o +0 -0
  243. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser +0 -0
  244. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.o +0 -0
  245. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner +0 -0
  246. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.o +0 -0
  247. data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc +0 -10
  248. data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc.in +0 -10
  249. data/ext/nutcracker/libtool +0 -9403
  250. data/ext/nutcracker/src/Makefile +0 -647
  251. data/ext/nutcracker/src/hashkit/Makefile +0 -476
  252. data/ext/nutcracker/src/hashkit/libhashkit.a +0 -0
  253. data/ext/nutcracker/src/hashkit/nc_crc16.o +0 -0
  254. data/ext/nutcracker/src/hashkit/nc_crc32.o +0 -0
  255. data/ext/nutcracker/src/hashkit/nc_fnv.o +0 -0
  256. data/ext/nutcracker/src/hashkit/nc_hsieh.o +0 -0
  257. data/ext/nutcracker/src/hashkit/nc_jenkins.o +0 -0
  258. data/ext/nutcracker/src/hashkit/nc_ketama.o +0 -0
  259. data/ext/nutcracker/src/hashkit/nc_md5.o +0 -0
  260. data/ext/nutcracker/src/hashkit/nc_modula.o +0 -0
  261. data/ext/nutcracker/src/hashkit/nc_murmur.o +0 -0
  262. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.o +0 -0
  263. data/ext/nutcracker/src/hashkit/nc_random.o +0 -0
  264. data/ext/nutcracker/src/nc.o +0 -0
  265. data/ext/nutcracker/src/nc_array.o +0 -0
  266. data/ext/nutcracker/src/nc_client.o +0 -0
  267. data/ext/nutcracker/src/nc_conf.o +0 -0
  268. data/ext/nutcracker/src/nc_connection.o +0 -0
  269. data/ext/nutcracker/src/nc_core.o +0 -0
  270. data/ext/nutcracker/src/nc_epoll.o +0 -0
  271. data/ext/nutcracker/src/nc_kqueue.c +0 -296
  272. data/ext/nutcracker/src/nc_kqueue.o +0 -0
  273. data/ext/nutcracker/src/nc_log.o +0 -0
  274. data/ext/nutcracker/src/nc_mbuf.o +0 -0
  275. data/ext/nutcracker/src/nc_message.o +0 -0
  276. data/ext/nutcracker/src/nc_proxy.o +0 -0
  277. data/ext/nutcracker/src/nc_rbtree.o +0 -0
  278. data/ext/nutcracker/src/nc_request.o +0 -0
  279. data/ext/nutcracker/src/nc_response.o +0 -0
  280. data/ext/nutcracker/src/nc_server.o +0 -0
  281. data/ext/nutcracker/src/nc_signal.o +0 -0
  282. data/ext/nutcracker/src/nc_stats.o +0 -0
  283. data/ext/nutcracker/src/nc_string.o +0 -0
  284. data/ext/nutcracker/src/nc_util.o +0 -0
  285. data/ext/nutcracker/src/nutcracker +0 -0
  286. data/ext/nutcracker/src/proto/Makefile +0 -454
  287. data/ext/nutcracker/src/proto/libproto.a +0 -0
  288. data/ext/nutcracker/src/proto/nc_memcache.o +0 -0
  289. data/ext/nutcracker/src/proto/nc_redis.o +0 -0
  290. data/ext/nutcracker/stamp-h1 +0 -1
@@ -1,2339 +0,0 @@
1
- m4trace:/usr/share/aclocal/argz.m4:12: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ
2
-
3
- AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
4
-
5
- AC_CHECK_TYPES([error_t],
6
- [],
7
- [AC_DEFINE([error_t], [int],
8
- [Define to a type to use for `error_t' if it is not otherwise available.])
9
- AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
10
- does not typedef error_t.])],
11
- [#if defined(HAVE_ARGZ_H)
12
- # include <argz.h>
13
- #endif])
14
-
15
- ARGZ_H=
16
- AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
17
- argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])])
18
-
19
- dnl if have system argz functions, allow forced use of
20
- dnl libltdl-supplied implementation (and default to do so
21
- dnl on "known bad" systems). Could use a runtime check, but
22
- dnl (a) detecting malloc issues is notoriously unreliable
23
- dnl (b) only known system that declares argz functions,
24
- dnl provides them, yet they are broken, is cygwin
25
- dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
26
- dnl So, it's more straightforward simply to special case
27
- dnl this for known bad systems.
28
- AS_IF([test -z "$ARGZ_H"],
29
- [AC_CACHE_CHECK(
30
- [if argz actually works],
31
- [lt_cv_sys_argz_works],
32
- [[case $host_os in #(
33
- *cygwin*)
34
- lt_cv_sys_argz_works=no
35
- if test "$cross_compiling" != no; then
36
- lt_cv_sys_argz_works="guessing no"
37
- else
38
- lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
39
- save_IFS=$IFS
40
- IFS=-.
41
- set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
42
- IFS=$save_IFS
43
- lt_os_major=${2-0}
44
- lt_os_minor=${3-0}
45
- lt_os_micro=${4-0}
46
- if test "$lt_os_major" -gt 1 \
47
- || { test "$lt_os_major" -eq 1 \
48
- && { test "$lt_os_minor" -gt 5 \
49
- || { test "$lt_os_minor" -eq 5 \
50
- && test "$lt_os_micro" -gt 24; }; }; }; then
51
- lt_cv_sys_argz_works=yes
52
- fi
53
- fi
54
- ;; #(
55
- *) lt_cv_sys_argz_works=yes ;;
56
- esac]])
57
- AS_IF([test $lt_cv_sys_argz_works = yes],
58
- [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
59
- [This value is set to 1 to indicate that the system argz facility works])],
60
- [ARGZ_H=argz.h
61
- AC_LIBOBJ([argz])])])
62
-
63
- AC_SUBST([ARGZ_H])
64
- ])
65
- m4trace:/usr/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:])
66
- m4trace:/usr/share/aclocal/libtool.m4:67: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
67
- AC_BEFORE([$0], [LT_LANG])dnl
68
- AC_BEFORE([$0], [LT_OUTPUT])dnl
69
- AC_BEFORE([$0], [LTDL_INIT])dnl
70
- m4_require([_LT_CHECK_BUILDDIR])dnl
71
-
72
- dnl Autoconf doesn't catch unexpanded LT_ macros by default:
73
- m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
74
- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
75
- dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
76
- dnl unless we require an AC_DEFUNed macro:
77
- AC_REQUIRE([LTOPTIONS_VERSION])dnl
78
- AC_REQUIRE([LTSUGAR_VERSION])dnl
79
- AC_REQUIRE([LTVERSION_VERSION])dnl
80
- AC_REQUIRE([LTOBSOLETE_VERSION])dnl
81
- m4_require([_LT_PROG_LTMAIN])dnl
82
-
83
- dnl Parse OPTIONS
84
- _LT_SET_OPTIONS([$0], [$1])
85
-
86
- # This can be used to rebuild libtool when needed
87
- LIBTOOL_DEPS="$ltmain"
88
-
89
- # Always use our own libtool.
90
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
91
- AC_SUBST(LIBTOOL)dnl
92
-
93
- _LT_SETUP
94
-
95
- # Only expand once:
96
- m4_define([LT_INIT])
97
- ])
98
- m4trace:/usr/share/aclocal/libtool.m4:102: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
99
- m4trace:/usr/share/aclocal/libtool.m4:102: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
100
- You should run autoupdate.])dnl
101
- m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
102
- m4trace:/usr/share/aclocal/libtool.m4:103: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
103
- m4trace:/usr/share/aclocal/libtool.m4:103: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
104
- You should run autoupdate.])dnl
105
- m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
106
- m4trace:/usr/share/aclocal/libtool.m4:562: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
107
- AC_MSG_NOTICE([creating $CONFIG_LT])
108
- cat >"$CONFIG_LT" <<_LTEOF
109
- #! $SHELL
110
- # Generated by $as_me.
111
- # Run this file to recreate a libtool stub with the current configuration.
112
-
113
- lt_cl_silent=false
114
- SHELL=\${CONFIG_SHELL-$SHELL}
115
- _LTEOF
116
-
117
- cat >>"$CONFIG_LT" <<\_LTEOF
118
- AS_SHELL_SANITIZE
119
- _AS_PREPARE
120
-
121
- exec AS_MESSAGE_FD>&1
122
- exec AS_MESSAGE_LOG_FD>>config.log
123
- {
124
- echo
125
- AS_BOX([Running $as_me.])
126
- } >&AS_MESSAGE_LOG_FD
127
-
128
- lt_cl_help="\
129
- \`$as_me' creates a local libtool stub from the current configuration,
130
- for use in further configure time tests before the real libtool is
131
- generated.
132
-
133
- Usage: $[0] [[OPTIONS]]
134
-
135
- -h, --help print this help, then exit
136
- -V, --version print version number, then exit
137
- -q, --quiet do not print progress messages
138
- -d, --debug don't remove temporary files
139
-
140
- Report bugs to <bug-libtool@gnu.org>."
141
-
142
- lt_cl_version="\
143
- m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
144
- m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
145
- configured by $[0], generated by m4_PACKAGE_STRING.
146
-
147
- Copyright (C) 2008 Free Software Foundation, Inc.
148
- This config.lt script is free software; the Free Software Foundation
149
- gives unlimited permision to copy, distribute and modify it."
150
-
151
- while test $[#] != 0
152
- do
153
- case $[1] in
154
- --version | --v* | -V )
155
- echo "$lt_cl_version"; exit 0 ;;
156
- --help | --h* | -h )
157
- echo "$lt_cl_help"; exit 0 ;;
158
- --debug | --d* | -d )
159
- debug=: ;;
160
- --quiet | --q* | --silent | --s* | -q )
161
- lt_cl_silent=: ;;
162
-
163
- -*) AC_MSG_ERROR([unrecognized option: $[1]
164
- Try \`$[0] --help' for more information.]) ;;
165
-
166
- *) AC_MSG_ERROR([unrecognized argument: $[1]
167
- Try \`$[0] --help' for more information.]) ;;
168
- esac
169
- shift
170
- done
171
-
172
- if $lt_cl_silent; then
173
- exec AS_MESSAGE_FD>/dev/null
174
- fi
175
- _LTEOF
176
-
177
- cat >>"$CONFIG_LT" <<_LTEOF
178
- _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
179
- _LTEOF
180
-
181
- cat >>"$CONFIG_LT" <<\_LTEOF
182
- AC_MSG_NOTICE([creating $ofile])
183
- _LT_OUTPUT_LIBTOOL_COMMANDS
184
- AS_EXIT(0)
185
- _LTEOF
186
- chmod +x "$CONFIG_LT"
187
-
188
- # configure is writing to config.log, but config.lt does its own redirection,
189
- # appending to config.log, which fails on DOS, as config.log is still kept
190
- # open by configure. Here we exec the FD to /dev/null, effectively closing
191
- # config.log, so it can be properly (re)opened and appended to by config.lt.
192
- if test "$no_create" != yes; then
193
- lt_cl_success=:
194
- test "$silent" = yes &&
195
- lt_config_lt_args="$lt_config_lt_args --quiet"
196
- exec AS_MESSAGE_LOG_FD>/dev/null
197
- $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
198
- exec AS_MESSAGE_LOG_FD>>config.log
199
- $lt_cl_success || AS_EXIT(1)
200
- fi
201
- ])
202
- m4trace:/usr/share/aclocal/libtool.m4:757: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
203
- m4trace:/usr/share/aclocal/libtool.m4:768: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
204
- m4_case([$1],
205
- [C], [_LT_LANG(C)],
206
- [C++], [_LT_LANG(CXX)],
207
- [Java], [_LT_LANG(GCJ)],
208
- [Fortran 77], [_LT_LANG(F77)],
209
- [Fortran], [_LT_LANG(FC)],
210
- [Windows Resource], [_LT_LANG(RC)],
211
- [m4_ifdef([_LT_LANG_]$1[_CONFIG],
212
- [_LT_LANG($1)],
213
- [m4_fatal([$0: unsupported language: "$1"])])])dnl
214
- ])
215
- m4trace:/usr/share/aclocal/libtool.m4:830: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
216
- m4trace:/usr/share/aclocal/libtool.m4:830: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
217
- You should run autoupdate.])dnl
218
- LT_LANG(C++)])
219
- m4trace:/usr/share/aclocal/libtool.m4:831: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
220
- m4trace:/usr/share/aclocal/libtool.m4:831: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
221
- You should run autoupdate.])dnl
222
- LT_LANG(Fortran 77)])
223
- m4trace:/usr/share/aclocal/libtool.m4:832: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
224
- m4trace:/usr/share/aclocal/libtool.m4:832: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
225
- You should run autoupdate.])dnl
226
- LT_LANG(Fortran)])
227
- m4trace:/usr/share/aclocal/libtool.m4:833: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
228
- m4trace:/usr/share/aclocal/libtool.m4:833: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
229
- You should run autoupdate.])dnl
230
- LT_LANG(Java)])
231
- m4trace:/usr/share/aclocal/libtool.m4:1402: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
232
- m4_require([_LT_DECL_SED])dnl
233
- AC_CACHE_CHECK([$1], [$2],
234
- [$2=no
235
- m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
236
- echo "$lt_simple_compile_test_code" > conftest.$ac_ext
237
- lt_compiler_flag="$3"
238
- # Insert the option either (1) after the last *FLAGS variable, or
239
- # (2) before a word containing "conftest.", or (3) at the end.
240
- # Note that $ac_compile itself does not contain backslashes and begins
241
- # with a dollar sign (not a hyphen), so the echo should work correctly.
242
- # The option is referenced via a variable to avoid confusing sed.
243
- lt_compile=`echo "$ac_compile" | $SED \
244
- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
245
- -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
246
- -e 's:$: $lt_compiler_flag:'`
247
- (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
248
- (eval "$lt_compile" 2>conftest.err)
249
- ac_status=$?
250
- cat conftest.err >&AS_MESSAGE_LOG_FD
251
- echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
252
- if (exit $ac_status) && test -s "$ac_outfile"; then
253
- # The compiler can only warn and ignore the option if not recognized
254
- # So say no if there are warnings other than the usual output.
255
- $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
256
- $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
257
- if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
258
- $2=yes
259
- fi
260
- fi
261
- $RM conftest*
262
- ])
263
-
264
- if test x"[$]$2" = xyes; then
265
- m4_if([$5], , :, [$5])
266
- else
267
- m4_if([$6], , :, [$6])
268
- fi
269
- ])
270
- m4trace:/usr/share/aclocal/libtool.m4:1444: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
271
- m4trace:/usr/share/aclocal/libtool.m4:1444: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
272
- You should run autoupdate.])dnl
273
- m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
274
- m4trace:/usr/share/aclocal/libtool.m4:1453: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
275
- m4_require([_LT_DECL_SED])dnl
276
- AC_CACHE_CHECK([$1], [$2],
277
- [$2=no
278
- save_LDFLAGS="$LDFLAGS"
279
- LDFLAGS="$LDFLAGS $3"
280
- echo "$lt_simple_link_test_code" > conftest.$ac_ext
281
- if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
282
- # The linker can only warn and ignore the option if not recognized
283
- # So say no if there are warnings
284
- if test -s conftest.err; then
285
- # Append any errors to the config.log.
286
- cat conftest.err 1>&AS_MESSAGE_LOG_FD
287
- $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
288
- $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
289
- if diff conftest.exp conftest.er2 >/dev/null; then
290
- $2=yes
291
- fi
292
- else
293
- $2=yes
294
- fi
295
- fi
296
- $RM -r conftest*
297
- LDFLAGS="$save_LDFLAGS"
298
- ])
299
-
300
- if test x"[$]$2" = xyes; then
301
- m4_if([$4], , :, [$4])
302
- else
303
- m4_if([$5], , :, [$5])
304
- fi
305
- ])
306
- m4trace:/usr/share/aclocal/libtool.m4:1488: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
307
- m4trace:/usr/share/aclocal/libtool.m4:1488: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
308
- You should run autoupdate.])dnl
309
- m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
310
- m4trace:/usr/share/aclocal/libtool.m4:1495: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
311
- # find the maximum length of command line arguments
312
- AC_MSG_CHECKING([the maximum length of command line arguments])
313
- AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
314
- i=0
315
- teststring="ABCD"
316
-
317
- case $build_os in
318
- msdosdjgpp*)
319
- # On DJGPP, this test can blow up pretty badly due to problems in libc
320
- # (any single argument exceeding 2000 bytes causes a buffer overrun
321
- # during glob expansion). Even if it were fixed, the result of this
322
- # check would be larger than it should be.
323
- lt_cv_sys_max_cmd_len=12288; # 12K is about right
324
- ;;
325
-
326
- gnu*)
327
- # Under GNU Hurd, this test is not required because there is
328
- # no limit to the length of command line arguments.
329
- # Libtool will interpret -1 as no limit whatsoever
330
- lt_cv_sys_max_cmd_len=-1;
331
- ;;
332
-
333
- cygwin* | mingw* | cegcc*)
334
- # On Win9x/ME, this test blows up -- it succeeds, but takes
335
- # about 5 minutes as the teststring grows exponentially.
336
- # Worse, since 9x/ME are not pre-emptively multitasking,
337
- # you end up with a "frozen" computer, even though with patience
338
- # the test eventually succeeds (with a max line length of 256k).
339
- # Instead, let's just punt: use the minimum linelength reported by
340
- # all of the supported platforms: 8192 (on NT/2K/XP).
341
- lt_cv_sys_max_cmd_len=8192;
342
- ;;
343
-
344
- amigaos*)
345
- # On AmigaOS with pdksh, this test takes hours, literally.
346
- # So we just punt and use a minimum line length of 8192.
347
- lt_cv_sys_max_cmd_len=8192;
348
- ;;
349
-
350
- netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
351
- # This has been around since 386BSD, at least. Likely further.
352
- if test -x /sbin/sysctl; then
353
- lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
354
- elif test -x /usr/sbin/sysctl; then
355
- lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
356
- else
357
- lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
358
- fi
359
- # And add a safety zone
360
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
361
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
362
- ;;
363
-
364
- interix*)
365
- # We know the value 262144 and hardcode it with a safety zone (like BSD)
366
- lt_cv_sys_max_cmd_len=196608
367
- ;;
368
-
369
- osf*)
370
- # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
371
- # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
372
- # nice to cause kernel panics so lets avoid the loop below.
373
- # First set a reasonable default.
374
- lt_cv_sys_max_cmd_len=16384
375
- #
376
- if test -x /sbin/sysconfig; then
377
- case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
378
- *1*) lt_cv_sys_max_cmd_len=-1 ;;
379
- esac
380
- fi
381
- ;;
382
- sco3.2v5*)
383
- lt_cv_sys_max_cmd_len=102400
384
- ;;
385
- sysv5* | sco5v6* | sysv4.2uw2*)
386
- kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
387
- if test -n "$kargmax"; then
388
- lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
389
- else
390
- lt_cv_sys_max_cmd_len=32768
391
- fi
392
- ;;
393
- *)
394
- lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
395
- if test -n "$lt_cv_sys_max_cmd_len"; then
396
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
397
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
398
- else
399
- # Make teststring a little bigger before we do anything with it.
400
- # a 1K string should be a reasonable start.
401
- for i in 1 2 3 4 5 6 7 8 ; do
402
- teststring=$teststring$teststring
403
- done
404
- SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
405
- # If test is not a shell built-in, we'll probably end up computing a
406
- # maximum length that is only half of the actual maximum length, but
407
- # we can't tell.
408
- while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \
409
- = "XX$teststring$teststring"; } >/dev/null 2>&1 &&
410
- test $i != 17 # 1/2 MB should be enough
411
- do
412
- i=`expr $i + 1`
413
- teststring=$teststring$teststring
414
- done
415
- # Only check the string length outside the loop.
416
- lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
417
- teststring=
418
- # Add a significant safety factor because C++ compilers can tack on
419
- # massive amounts of additional arguments before passing them to the
420
- # linker. It appears as though 1/2 is a usable value.
421
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
422
- fi
423
- ;;
424
- esac
425
- ])
426
- if test -n $lt_cv_sys_max_cmd_len ; then
427
- AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
428
- else
429
- AC_MSG_RESULT(none)
430
- fi
431
- max_cmd_len=$lt_cv_sys_max_cmd_len
432
- _LT_DECL([], [max_cmd_len], [0],
433
- [What is the maximum length of a command?])
434
- ])
435
- m4trace:/usr/share/aclocal/libtool.m4:1623: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
436
- m4trace:/usr/share/aclocal/libtool.m4:1623: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
437
- You should run autoupdate.])dnl
438
- m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
439
- m4trace:/usr/share/aclocal/libtool.m4:1724: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
440
- if test "x$enable_dlopen" != xyes; then
441
- enable_dlopen=unknown
442
- enable_dlopen_self=unknown
443
- enable_dlopen_self_static=unknown
444
- else
445
- lt_cv_dlopen=no
446
- lt_cv_dlopen_libs=
447
-
448
- case $host_os in
449
- beos*)
450
- lt_cv_dlopen="load_add_on"
451
- lt_cv_dlopen_libs=
452
- lt_cv_dlopen_self=yes
453
- ;;
454
-
455
- mingw* | pw32* | cegcc*)
456
- lt_cv_dlopen="LoadLibrary"
457
- lt_cv_dlopen_libs=
458
- ;;
459
-
460
- cygwin*)
461
- lt_cv_dlopen="dlopen"
462
- lt_cv_dlopen_libs=
463
- ;;
464
-
465
- darwin*)
466
- # if libdl is installed we need to link against it
467
- AC_CHECK_LIB([dl], [dlopen],
468
- [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
469
- lt_cv_dlopen="dyld"
470
- lt_cv_dlopen_libs=
471
- lt_cv_dlopen_self=yes
472
- ])
473
- ;;
474
-
475
- *)
476
- AC_CHECK_FUNC([shl_load],
477
- [lt_cv_dlopen="shl_load"],
478
- [AC_CHECK_LIB([dld], [shl_load],
479
- [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
480
- [AC_CHECK_FUNC([dlopen],
481
- [lt_cv_dlopen="dlopen"],
482
- [AC_CHECK_LIB([dl], [dlopen],
483
- [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
484
- [AC_CHECK_LIB([svld], [dlopen],
485
- [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
486
- [AC_CHECK_LIB([dld], [dld_link],
487
- [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
488
- ])
489
- ])
490
- ])
491
- ])
492
- ])
493
- ;;
494
- esac
495
-
496
- if test "x$lt_cv_dlopen" != xno; then
497
- enable_dlopen=yes
498
- else
499
- enable_dlopen=no
500
- fi
501
-
502
- case $lt_cv_dlopen in
503
- dlopen)
504
- save_CPPFLAGS="$CPPFLAGS"
505
- test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
506
-
507
- save_LDFLAGS="$LDFLAGS"
508
- wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
509
-
510
- save_LIBS="$LIBS"
511
- LIBS="$lt_cv_dlopen_libs $LIBS"
512
-
513
- AC_CACHE_CHECK([whether a program can dlopen itself],
514
- lt_cv_dlopen_self, [dnl
515
- _LT_TRY_DLOPEN_SELF(
516
- lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
517
- lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
518
- ])
519
-
520
- if test "x$lt_cv_dlopen_self" = xyes; then
521
- wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
522
- AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
523
- lt_cv_dlopen_self_static, [dnl
524
- _LT_TRY_DLOPEN_SELF(
525
- lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
526
- lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
527
- ])
528
- fi
529
-
530
- CPPFLAGS="$save_CPPFLAGS"
531
- LDFLAGS="$save_LDFLAGS"
532
- LIBS="$save_LIBS"
533
- ;;
534
- esac
535
-
536
- case $lt_cv_dlopen_self in
537
- yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
538
- *) enable_dlopen_self=unknown ;;
539
- esac
540
-
541
- case $lt_cv_dlopen_self_static in
542
- yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
543
- *) enable_dlopen_self_static=unknown ;;
544
- esac
545
- fi
546
- _LT_DECL([dlopen_support], [enable_dlopen], [0],
547
- [Whether dlopen is supported])
548
- _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
549
- [Whether dlopen of programs is supported])
550
- _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
551
- [Whether dlopen of statically linked programs is supported])
552
- ])
553
- m4trace:/usr/share/aclocal/libtool.m4:1841: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
554
- m4trace:/usr/share/aclocal/libtool.m4:1841: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
555
- You should run autoupdate.])dnl
556
- m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
557
- m4trace:/usr/share/aclocal/libtool.m4:2741: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
558
- AC_MSG_CHECKING([for $1])
559
- AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
560
- [case $MAGIC_CMD in
561
- [[\\/*] | ?:[\\/]*])
562
- lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
563
- ;;
564
- *)
565
- lt_save_MAGIC_CMD="$MAGIC_CMD"
566
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
567
- dnl $ac_dummy forces splitting on constant user-supplied paths.
568
- dnl POSIX.2 word splitting is done only on the output of word expansions,
569
- dnl not every word. This closes a longstanding sh security hole.
570
- ac_dummy="m4_if([$2], , $PATH, [$2])"
571
- for ac_dir in $ac_dummy; do
572
- IFS="$lt_save_ifs"
573
- test -z "$ac_dir" && ac_dir=.
574
- if test -f $ac_dir/$1; then
575
- lt_cv_path_MAGIC_CMD="$ac_dir/$1"
576
- if test -n "$file_magic_test_file"; then
577
- case $deplibs_check_method in
578
- "file_magic "*)
579
- file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
580
- MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
581
- if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
582
- $EGREP "$file_magic_regex" > /dev/null; then
583
- :
584
- else
585
- cat <<_LT_EOF 1>&2
586
-
587
- *** Warning: the command libtool uses to detect shared libraries,
588
- *** $file_magic_cmd, produces output that libtool cannot recognize.
589
- *** The result is that libtool may fail to recognize shared libraries
590
- *** as such. This will affect the creation of libtool libraries that
591
- *** depend on shared libraries, but programs linked with such libtool
592
- *** libraries will work regardless of this problem. Nevertheless, you
593
- *** may want to report the problem to your system manager and/or to
594
- *** bug-libtool@gnu.org
595
-
596
- _LT_EOF
597
- fi ;;
598
- esac
599
- fi
600
- break
601
- fi
602
- done
603
- IFS="$lt_save_ifs"
604
- MAGIC_CMD="$lt_save_MAGIC_CMD"
605
- ;;
606
- esac])
607
- MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
608
- if test -n "$MAGIC_CMD"; then
609
- AC_MSG_RESULT($MAGIC_CMD)
610
- else
611
- AC_MSG_RESULT(no)
612
- fi
613
- _LT_DECL([], [MAGIC_CMD], [0],
614
- [Used to examine libraries when file_magic_cmd begins with "file"])dnl
615
- ])
616
- m4trace:/usr/share/aclocal/libtool.m4:2803: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
617
- m4trace:/usr/share/aclocal/libtool.m4:2803: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
618
- You should run autoupdate.])dnl
619
- m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
620
- m4trace:/usr/share/aclocal/libtool.m4:2826: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
621
- AC_REQUIRE([AC_CANONICAL_HOST])dnl
622
- AC_REQUIRE([AC_CANONICAL_BUILD])dnl
623
- m4_require([_LT_DECL_SED])dnl
624
- m4_require([_LT_DECL_EGREP])dnl
625
-
626
- AC_ARG_WITH([gnu-ld],
627
- [AS_HELP_STRING([--with-gnu-ld],
628
- [assume the C compiler uses GNU ld @<:@default=no@:>@])],
629
- [test "$withval" = no || with_gnu_ld=yes],
630
- [with_gnu_ld=no])dnl
631
-
632
- ac_prog=ld
633
- if test "$GCC" = yes; then
634
- # Check if gcc -print-prog-name=ld gives a path.
635
- AC_MSG_CHECKING([for ld used by $CC])
636
- case $host in
637
- *-*-mingw*)
638
- # gcc leaves a trailing carriage return which upsets mingw
639
- ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
640
- *)
641
- ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
642
- esac
643
- case $ac_prog in
644
- # Accept absolute paths.
645
- [[\\/]]* | ?:[[\\/]]*)
646
- re_direlt='/[[^/]][[^/]]*/\.\./'
647
- # Canonicalize the pathname of ld
648
- ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
649
- while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
650
- ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
651
- done
652
- test -z "$LD" && LD="$ac_prog"
653
- ;;
654
- "")
655
- # If it fails, then pretend we aren't using GCC.
656
- ac_prog=ld
657
- ;;
658
- *)
659
- # If it is relative, then search for the first ld in PATH.
660
- with_gnu_ld=unknown
661
- ;;
662
- esac
663
- elif test "$with_gnu_ld" = yes; then
664
- AC_MSG_CHECKING([for GNU ld])
665
- else
666
- AC_MSG_CHECKING([for non-GNU ld])
667
- fi
668
- AC_CACHE_VAL(lt_cv_path_LD,
669
- [if test -z "$LD"; then
670
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
671
- for ac_dir in $PATH; do
672
- IFS="$lt_save_ifs"
673
- test -z "$ac_dir" && ac_dir=.
674
- if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
675
- lt_cv_path_LD="$ac_dir/$ac_prog"
676
- # Check to see if the program is GNU ld. I'd rather use --version,
677
- # but apparently some variants of GNU ld only accept -v.
678
- # Break only if it was the GNU/non-GNU ld that we prefer.
679
- case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
680
- *GNU* | *'with BFD'*)
681
- test "$with_gnu_ld" != no && break
682
- ;;
683
- *)
684
- test "$with_gnu_ld" != yes && break
685
- ;;
686
- esac
687
- fi
688
- done
689
- IFS="$lt_save_ifs"
690
- else
691
- lt_cv_path_LD="$LD" # Let the user override the test with a path.
692
- fi])
693
- LD="$lt_cv_path_LD"
694
- if test -n "$LD"; then
695
- AC_MSG_RESULT($LD)
696
- else
697
- AC_MSG_RESULT(no)
698
- fi
699
- test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
700
- _LT_PATH_LD_GNU
701
- AC_SUBST([LD])
702
-
703
- _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
704
- ])
705
- m4trace:/usr/share/aclocal/libtool.m4:2914: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
706
- m4trace:/usr/share/aclocal/libtool.m4:2914: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
707
- You should run autoupdate.])dnl
708
- m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
709
- m4trace:/usr/share/aclocal/libtool.m4:2915: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
710
- m4trace:/usr/share/aclocal/libtool.m4:2915: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
711
- You should run autoupdate.])dnl
712
- m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
713
- m4trace:/usr/share/aclocal/libtool.m4:3179: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
714
- AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
715
- [if test -n "$NM"; then
716
- # Let the user override the test.
717
- lt_cv_path_NM="$NM"
718
- else
719
- lt_nm_to_check="${ac_tool_prefix}nm"
720
- if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
721
- lt_nm_to_check="$lt_nm_to_check nm"
722
- fi
723
- for lt_tmp_nm in $lt_nm_to_check; do
724
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
725
- for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
726
- IFS="$lt_save_ifs"
727
- test -z "$ac_dir" && ac_dir=.
728
- tmp_nm="$ac_dir/$lt_tmp_nm"
729
- if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
730
- # Check to see if the nm accepts a BSD-compat flag.
731
- # Adding the `sed 1q' prevents false positives on HP-UX, which says:
732
- # nm: unknown option "B" ignored
733
- # Tru64's nm complains that /dev/null is an invalid object file
734
- case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
735
- */dev/null* | *'Invalid file or object type'*)
736
- lt_cv_path_NM="$tmp_nm -B"
737
- break
738
- ;;
739
- *)
740
- case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
741
- */dev/null*)
742
- lt_cv_path_NM="$tmp_nm -p"
743
- break
744
- ;;
745
- *)
746
- lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
747
- continue # so that we can try to find one that supports BSD flags
748
- ;;
749
- esac
750
- ;;
751
- esac
752
- fi
753
- done
754
- IFS="$lt_save_ifs"
755
- done
756
- : ${lt_cv_path_NM=no}
757
- fi])
758
- if test "$lt_cv_path_NM" != "no"; then
759
- NM="$lt_cv_path_NM"
760
- else
761
- # Didn't find any BSD compatible name lister, look for dumpbin.
762
- AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
763
- AC_SUBST([DUMPBIN])
764
- if test "$DUMPBIN" != ":"; then
765
- NM="$DUMPBIN"
766
- fi
767
- fi
768
- test -z "$NM" && NM=nm
769
- AC_SUBST([NM])
770
- _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
771
-
772
- AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
773
- [lt_cv_nm_interface="BSD nm"
774
- echo "int some_variable = 0;" > conftest.$ac_ext
775
- (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
776
- (eval "$ac_compile" 2>conftest.err)
777
- cat conftest.err >&AS_MESSAGE_LOG_FD
778
- (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
779
- (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
780
- cat conftest.err >&AS_MESSAGE_LOG_FD
781
- (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD)
782
- cat conftest.out >&AS_MESSAGE_LOG_FD
783
- if $GREP 'External.*some_variable' conftest.out > /dev/null; then
784
- lt_cv_nm_interface="MS dumpbin"
785
- fi
786
- rm -f conftest*])
787
- ])
788
- m4trace:/usr/share/aclocal/libtool.m4:3257: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
789
- m4trace:/usr/share/aclocal/libtool.m4:3257: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
790
- You should run autoupdate.])dnl
791
- m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
792
- m4trace:/usr/share/aclocal/libtool.m4:3258: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
793
- m4trace:/usr/share/aclocal/libtool.m4:3258: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
794
- You should run autoupdate.])dnl
795
- m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
796
- m4trace:/usr/share/aclocal/libtool.m4:3267: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
797
- LIBM=
798
- case $host in
799
- *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
800
- # These system don't have libm, or don't need it
801
- ;;
802
- *-ncr-sysv4.3*)
803
- AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
804
- AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
805
- ;;
806
- *)
807
- AC_CHECK_LIB(m, cos, LIBM="-lm")
808
- ;;
809
- esac
810
- AC_SUBST([LIBM])
811
- ])
812
- m4trace:/usr/share/aclocal/libtool.m4:3286: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
813
- m4trace:/usr/share/aclocal/libtool.m4:3286: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
814
- You should run autoupdate.])dnl
815
- m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
816
- m4trace:/usr/share/aclocal/libtool.m4:6986: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
817
- [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
818
- [AC_CHECK_TOOL(GCJ, gcj,)
819
- test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
820
- AC_SUBST(GCJFLAGS)])])[]dnl
821
- ])
822
- m4trace:/usr/share/aclocal/libtool.m4:6995: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
823
- m4trace:/usr/share/aclocal/libtool.m4:6995: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
824
- You should run autoupdate.])dnl
825
- m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
826
- m4trace:/usr/share/aclocal/libtool.m4:7002: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
827
- ])
828
- m4trace:/usr/share/aclocal/libtool.m4:7007: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
829
- m4trace:/usr/share/aclocal/libtool.m4:7007: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
830
- You should run autoupdate.])dnl
831
- m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
832
- m4trace:/usr/share/aclocal/libtool.m4:7118: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
833
- m4trace:/usr/share/aclocal/libtool.m4:7118: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
834
- You should run autoupdate.])dnl
835
- m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
836
- m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
837
- _$0($*)
838
- ])
839
- m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
840
- dnl Although the argument is deprecated and no longer documented,
841
- dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
842
- dnl here make sure it is the same as any other declaration of libltdl's
843
- dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
844
- dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
845
- m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
846
- _$0()
847
- ])
848
- m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
849
- _LTDL_CONVENIENCE])
850
- m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
851
- You should run autoupdate.])dnl
852
- _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
853
- _LTDL_CONVENIENCE])
854
- m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
855
- dnl Although the argument is deprecated and no longer documented,
856
- dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
857
- dnl here make sure it is the same as any other declaration of libltdl's
858
- dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
859
- dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
860
- m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
861
- _$0()
862
- ])
863
- m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
864
- _LTDL_INSTALLABLE])
865
- m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
866
- You should run autoupdate.])dnl
867
- _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
868
- _LTDL_INSTALLABLE])
869
- m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
870
- m4_pattern_allow([^_LT_LIBOBJS$])
871
- _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
872
- ])
873
- m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
874
- _LT_SET_OPTIONS([$0], [$1])
875
-
876
- dnl We need to keep our own list of libobjs separate from our parent project,
877
- dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
878
- dnl we look for our own LIBOBJs.
879
- m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
880
- m4_pushdef([AC_LIBSOURCES])
881
-
882
- dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
883
- m4_if(_LTDL_MODE, [],
884
- [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
885
- m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
886
- [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
887
-
888
- AC_ARG_WITH([included_ltdl],
889
- [AS_HELP_STRING([--with-included-ltdl],
890
- [use the GNU ltdl sources included here])])
891
-
892
- if test "x$with_included_ltdl" != xyes; then
893
- # We are not being forced to use the included libltdl sources, so
894
- # decide whether there is a useful installed version we can use.
895
- AC_CHECK_HEADER([ltdl.h],
896
- [AC_CHECK_DECL([lt_dlinterface_register],
897
- [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
898
- [with_included_ltdl=no],
899
- [with_included_ltdl=yes])],
900
- [with_included_ltdl=yes],
901
- [AC_INCLUDES_DEFAULT
902
- #include <ltdl.h>])],
903
- [with_included_ltdl=yes],
904
- [AC_INCLUDES_DEFAULT]
905
- )
906
- fi
907
-
908
- dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
909
- dnl was called yet, then for old times' sake, we assume libltdl is in an
910
- dnl eponymous directory:
911
- AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
912
-
913
- AC_ARG_WITH([ltdl_include],
914
- [AS_HELP_STRING([--with-ltdl-include=DIR],
915
- [use the ltdl headers installed in DIR])])
916
-
917
- if test -n "$with_ltdl_include"; then
918
- if test -f "$with_ltdl_include/ltdl.h"; then :
919
- else
920
- AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include'])
921
- fi
922
- else
923
- with_ltdl_include=no
924
- fi
925
-
926
- AC_ARG_WITH([ltdl_lib],
927
- [AS_HELP_STRING([--with-ltdl-lib=DIR],
928
- [use the libltdl.la installed in DIR])])
929
-
930
- if test -n "$with_ltdl_lib"; then
931
- if test -f "$with_ltdl_lib/libltdl.la"; then :
932
- else
933
- AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib'])
934
- fi
935
- else
936
- with_ltdl_lib=no
937
- fi
938
-
939
- case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
940
- ,yes,no,no,)
941
- m4_case(m4_default(_LTDL_TYPE, [convenience]),
942
- [convenience], [_LTDL_CONVENIENCE],
943
- [installable], [_LTDL_INSTALLABLE],
944
- [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
945
- ;;
946
- ,no,no,no,)
947
- # If the included ltdl is not to be used, then use the
948
- # preinstalled libltdl we found.
949
- AC_DEFINE([HAVE_LTDL], [1],
950
- [Define this if a modern libltdl is already installed])
951
- LIBLTDL=-lltdl
952
- LTDLDEPS=
953
- LTDLINCL=
954
- ;;
955
- ,no*,no,*)
956
- AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together])
957
- ;;
958
- *) with_included_ltdl=no
959
- LIBLTDL="-L$with_ltdl_lib -lltdl"
960
- LTDLDEPS=
961
- LTDLINCL="-I$with_ltdl_include"
962
- ;;
963
- esac
964
- INCLTDL="$LTDLINCL"
965
-
966
- # Report our decision...
967
- AC_MSG_CHECKING([where to find libltdl headers])
968
- AC_MSG_RESULT([$LTDLINCL])
969
- AC_MSG_CHECKING([where to find libltdl library])
970
- AC_MSG_RESULT([$LIBLTDL])
971
-
972
- _LTDL_SETUP
973
-
974
- dnl restore autoconf definition.
975
- m4_popdef([AC_LIBOBJ])
976
- m4_popdef([AC_LIBSOURCES])
977
-
978
- AC_CONFIG_COMMANDS_PRE([
979
- _ltdl_libobjs=
980
- _ltdl_ltlibobjs=
981
- if test -n "$_LT_LIBOBJS"; then
982
- # Remove the extension.
983
- _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
984
- for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
985
- _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
986
- _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
987
- done
988
- fi
989
- AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
990
- AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
991
- ])
992
-
993
- # Only expand once:
994
- m4_define([LTDL_INIT])
995
- ])
996
- m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
997
- m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
998
- You should run autoupdate.])dnl
999
- LTDL_INIT($@)])
1000
- m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
1001
- m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
1002
- You should run autoupdate.])dnl
1003
- LTDL_INIT($@)])
1004
- m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
1005
- m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
1006
- You should run autoupdate.])dnl
1007
- LTDL_INIT($@)])
1008
- m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
1009
- AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
1010
- AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
1011
- AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
1012
- AC_REQUIRE([LT_LIB_DLLOAD])dnl
1013
- AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1014
- AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
1015
- AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
1016
- AC_REQUIRE([gl_FUNC_ARGZ])dnl
1017
-
1018
- m4_require([_LT_CHECK_OBJDIR])dnl
1019
- m4_require([_LT_HEADER_DLFCN])dnl
1020
- m4_require([_LT_CHECK_DLPREOPEN])dnl
1021
- m4_require([_LT_DECL_SED])dnl
1022
-
1023
- dnl Don't require this, or it will be expanded earlier than the code
1024
- dnl that sets the variables it relies on:
1025
- _LT_ENABLE_INSTALL
1026
-
1027
- dnl _LTDL_MODE specific code must be called at least once:
1028
- _LTDL_MODE_DISPATCH
1029
-
1030
- # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
1031
- # the user used. This is so that ltdl.h can pick up the parent projects
1032
- # config.h file, The first file in AC_CONFIG_HEADERS must contain the
1033
- # definitions required by ltdl.c.
1034
- # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
1035
- AC_CONFIG_COMMANDS_PRE([dnl
1036
- m4_pattern_allow([^LT_CONFIG_H$])dnl
1037
- m4_ifset([AH_HEADER],
1038
- [LT_CONFIG_H=AH_HEADER],
1039
- [m4_ifset([AC_LIST_HEADERS],
1040
- [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`],
1041
- [])])])
1042
- AC_SUBST([LT_CONFIG_H])
1043
-
1044
- AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
1045
- [], [], [AC_INCLUDES_DEFAULT])
1046
-
1047
- AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
1048
- AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
1049
-
1050
- AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
1051
-
1052
- name=ltdl
1053
- LTDLOPEN=`eval "\\$ECHO \"$libname_spec\""`
1054
- AC_SUBST([LTDLOPEN])
1055
- ])
1056
- m4trace:/usr/share/aclocal/ltdl.m4:437: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1057
- AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
1058
- [lt_cv_sys_dlopen_deplibs],
1059
- [# PORTME does your system automatically load deplibs for dlopen?
1060
- # or its logical equivalent (e.g. shl_load for HP-UX < 11)
1061
- # For now, we just catch OSes we know something about -- in the
1062
- # future, we'll try test this programmatically.
1063
- lt_cv_sys_dlopen_deplibs=unknown
1064
- case $host_os in
1065
- aix3*|aix4.1.*|aix4.2.*)
1066
- # Unknown whether this is true for these versions of AIX, but
1067
- # we want this `case' here to explicitly catch those versions.
1068
- lt_cv_sys_dlopen_deplibs=unknown
1069
- ;;
1070
- aix[[4-9]]*)
1071
- lt_cv_sys_dlopen_deplibs=yes
1072
- ;;
1073
- amigaos*)
1074
- case $host_cpu in
1075
- powerpc)
1076
- lt_cv_sys_dlopen_deplibs=no
1077
- ;;
1078
- esac
1079
- ;;
1080
- darwin*)
1081
- # Assuming the user has installed a libdl from somewhere, this is true
1082
- # If you are looking for one http://www.opendarwin.org/projects/dlcompat
1083
- lt_cv_sys_dlopen_deplibs=yes
1084
- ;;
1085
- freebsd* | dragonfly*)
1086
- lt_cv_sys_dlopen_deplibs=yes
1087
- ;;
1088
- gnu* | linux* | k*bsd*-gnu)
1089
- # GNU and its variants, using gnu ld.so (Glibc)
1090
- lt_cv_sys_dlopen_deplibs=yes
1091
- ;;
1092
- hpux10*|hpux11*)
1093
- lt_cv_sys_dlopen_deplibs=yes
1094
- ;;
1095
- interix*)
1096
- lt_cv_sys_dlopen_deplibs=yes
1097
- ;;
1098
- irix[[12345]]*|irix6.[[01]]*)
1099
- # Catch all versions of IRIX before 6.2, and indicate that we don't
1100
- # know how it worked for any of those versions.
1101
- lt_cv_sys_dlopen_deplibs=unknown
1102
- ;;
1103
- irix*)
1104
- # The case above catches anything before 6.2, and it's known that
1105
- # at 6.2 and later dlopen does load deplibs.
1106
- lt_cv_sys_dlopen_deplibs=yes
1107
- ;;
1108
- netbsd* | netbsdelf*-gnu)
1109
- lt_cv_sys_dlopen_deplibs=yes
1110
- ;;
1111
- openbsd*)
1112
- lt_cv_sys_dlopen_deplibs=yes
1113
- ;;
1114
- osf[[1234]]*)
1115
- # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
1116
- # it did *not* use an RPATH in a shared library to find objects the
1117
- # library depends on, so we explicitly say `no'.
1118
- lt_cv_sys_dlopen_deplibs=no
1119
- ;;
1120
- osf5.0|osf5.0a|osf5.1)
1121
- # dlopen *does* load deplibs and with the right loader patch applied
1122
- # it even uses RPATH in a shared library to search for shared objects
1123
- # that the library depends on, but there's no easy way to know if that
1124
- # patch is installed. Since this is the case, all we can really
1125
- # say is unknown -- it depends on the patch being installed. If
1126
- # it is, this changes to `yes'. Without it, it would be `no'.
1127
- lt_cv_sys_dlopen_deplibs=unknown
1128
- ;;
1129
- osf*)
1130
- # the two cases above should catch all versions of osf <= 5.1. Read
1131
- # the comments above for what we know about them.
1132
- # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
1133
- # is used to find them so we can finally say `yes'.
1134
- lt_cv_sys_dlopen_deplibs=yes
1135
- ;;
1136
- qnx*)
1137
- lt_cv_sys_dlopen_deplibs=yes
1138
- ;;
1139
- solaris*)
1140
- lt_cv_sys_dlopen_deplibs=yes
1141
- ;;
1142
- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1143
- libltdl_cv_sys_dlopen_deplibs=yes
1144
- ;;
1145
- esac
1146
- ])
1147
- if test "$lt_cv_sys_dlopen_deplibs" != yes; then
1148
- AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
1149
- [Define if the OS needs help to load dependent libraries for dlopen().])
1150
- fi
1151
- ])
1152
- m4trace:/usr/share/aclocal/ltdl.m4:536: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1153
- m4trace:/usr/share/aclocal/ltdl.m4:536: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
1154
- You should run autoupdate.])dnl
1155
- m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1156
- m4trace:/usr/share/aclocal/ltdl.m4:543: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1157
- AC_CACHE_CHECK([which extension is used for runtime loadable modules],
1158
- [libltdl_cv_shlibext],
1159
- [
1160
- module=yes
1161
- eval libltdl_cv_shlibext=$shrext_cmds
1162
- ])
1163
- if test -n "$libltdl_cv_shlibext"; then
1164
- m4_pattern_allow([LT_MODULE_EXT])dnl
1165
- AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
1166
- [Define to the extension used for runtime loadable modules, say, ".so".])
1167
- fi
1168
- ])
1169
- m4trace:/usr/share/aclocal/ltdl.m4:559: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1170
- m4trace:/usr/share/aclocal/ltdl.m4:559: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
1171
- You should run autoupdate.])dnl
1172
- m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1173
- m4trace:/usr/share/aclocal/ltdl.m4:566: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1174
- AC_CACHE_CHECK([which variable specifies run-time module search path],
1175
- [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"])
1176
- if test -n "$lt_cv_module_path_var"; then
1177
- m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
1178
- AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
1179
- [Define to the name of the environment variable that determines the run-time module search path.])
1180
- fi
1181
- ])
1182
- m4trace:/usr/share/aclocal/ltdl.m4:578: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1183
- m4trace:/usr/share/aclocal/ltdl.m4:578: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
1184
- You should run autoupdate.])dnl
1185
- m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1186
- m4trace:/usr/share/aclocal/ltdl.m4:585: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1187
- AC_CACHE_CHECK([for the default library search path],
1188
- [lt_cv_sys_dlsearch_path],
1189
- [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"])
1190
- if test -n "$lt_cv_sys_dlsearch_path"; then
1191
- sys_dlsearch_path=
1192
- for dir in $lt_cv_sys_dlsearch_path; do
1193
- if test -z "$sys_dlsearch_path"; then
1194
- sys_dlsearch_path="$dir"
1195
- else
1196
- sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir"
1197
- fi
1198
- done
1199
- m4_pattern_allow([LT_DLSEARCH_PATH])dnl
1200
- AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
1201
- [Define to the system default library search path.])
1202
- fi
1203
- ])
1204
- m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1205
- m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
1206
- You should run autoupdate.])dnl
1207
- m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1208
- m4trace:/usr/share/aclocal/ltdl.m4:632: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
1209
- LT_DLLOADERS=
1210
- AC_SUBST([LT_DLLOADERS])
1211
-
1212
- AC_LANG_PUSH([C])
1213
-
1214
- LIBADD_DLOPEN=
1215
- AC_SEARCH_LIBS([dlopen], [dl],
1216
- [AC_DEFINE([HAVE_LIBDL], [1],
1217
- [Define if you have the libdl library or equivalent.])
1218
- if test "$ac_cv_search_dlopen" != "none required" ; then
1219
- LIBADD_DLOPEN="-ldl"
1220
- fi
1221
- libltdl_cv_lib_dl_dlopen="yes"
1222
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1223
- [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
1224
- # include <dlfcn.h>
1225
- #endif
1226
- ]], [[dlopen(0, 0);]])],
1227
- [AC_DEFINE([HAVE_LIBDL], [1],
1228
- [Define if you have the libdl library or equivalent.])
1229
- libltdl_cv_func_dlopen="yes"
1230
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1231
- [AC_CHECK_LIB([svld], [dlopen],
1232
- [AC_DEFINE([HAVE_LIBDL], [1],
1233
- [Define if you have the libdl library or equivalent.])
1234
- LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes"
1235
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
1236
- if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
1237
- then
1238
- lt_save_LIBS="$LIBS"
1239
- LIBS="$LIBS $LIBADD_DLOPEN"
1240
- AC_CHECK_FUNCS([dlerror])
1241
- LIBS="$lt_save_LIBS"
1242
- fi
1243
- AC_SUBST([LIBADD_DLOPEN])
1244
-
1245
- LIBADD_SHL_LOAD=
1246
- AC_CHECK_FUNC([shl_load],
1247
- [AC_DEFINE([HAVE_SHL_LOAD], [1],
1248
- [Define if you have the shl_load function.])
1249
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
1250
- [AC_CHECK_LIB([dld], [shl_load],
1251
- [AC_DEFINE([HAVE_SHL_LOAD], [1],
1252
- [Define if you have the shl_load function.])
1253
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
1254
- LIBADD_SHL_LOAD="-ldld"])])
1255
- AC_SUBST([LIBADD_SHL_LOAD])
1256
-
1257
- case $host_os in
1258
- darwin[[1567]].*)
1259
- # We only want this for pre-Mac OS X 10.4.
1260
- AC_CHECK_FUNC([_dyld_func_lookup],
1261
- [AC_DEFINE([HAVE_DYLD], [1],
1262
- [Define if you have the _dyld_func_lookup function.])
1263
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
1264
- ;;
1265
- beos*)
1266
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
1267
- ;;
1268
- cygwin* | mingw* | os2* | pw32*)
1269
- AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
1270
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
1271
- ;;
1272
- esac
1273
-
1274
- AC_CHECK_LIB([dld], [dld_link],
1275
- [AC_DEFINE([HAVE_DLD], [1],
1276
- [Define if you have the GNU dld library.])
1277
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
1278
- AC_SUBST([LIBADD_DLD_LINK])
1279
-
1280
- m4_pattern_allow([^LT_DLPREOPEN$])
1281
- LT_DLPREOPEN=
1282
- if test -n "$LT_DLLOADERS"
1283
- then
1284
- for lt_loader in $LT_DLLOADERS; do
1285
- LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
1286
- done
1287
- AC_DEFINE([HAVE_LIBDLLOADER], [1],
1288
- [Define if libdlloader will be built on this platform])
1289
- fi
1290
- AC_SUBST([LT_DLPREOPEN])
1291
-
1292
- dnl This isn't used anymore, but set it for backwards compatibility
1293
- LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
1294
- AC_SUBST([LIBADD_DL])
1295
-
1296
- AC_LANG_POP
1297
- ])
1298
- m4trace:/usr/share/aclocal/ltdl.m4:725: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1299
- m4trace:/usr/share/aclocal/ltdl.m4:725: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
1300
- You should run autoupdate.])dnl
1301
- m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1302
- m4trace:/usr/share/aclocal/ltdl.m4:733: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
1303
- AC_CACHE_CHECK([for _ prefix in compiled symbols],
1304
- [lt_cv_sys_symbol_underscore],
1305
- [lt_cv_sys_symbol_underscore=no
1306
- cat > conftest.$ac_ext <<_LT_EOF
1307
- void nm_test_func(){}
1308
- int main(){nm_test_func;return 0;}
1309
- _LT_EOF
1310
- if AC_TRY_EVAL(ac_compile); then
1311
- # Now try to grab the symbols.
1312
- ac_nlist=conftest.nm
1313
- if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
1314
- # See whether the symbols have a leading underscore.
1315
- if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
1316
- lt_cv_sys_symbol_underscore=yes
1317
- else
1318
- if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
1319
- :
1320
- else
1321
- echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
1322
- fi
1323
- fi
1324
- else
1325
- echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
1326
- fi
1327
- else
1328
- echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
1329
- cat conftest.c >&AS_MESSAGE_LOG_FD
1330
- fi
1331
- rm -rf conftest*
1332
- ])
1333
- sys_symbol_underscore=$lt_cv_sys_symbol_underscore
1334
- AC_SUBST([sys_symbol_underscore])
1335
- ])
1336
- m4trace:/usr/share/aclocal/ltdl.m4:770: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1337
- m4trace:/usr/share/aclocal/ltdl.m4:770: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
1338
- You should run autoupdate.])dnl
1339
- m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1340
- m4trace:/usr/share/aclocal/ltdl.m4:777: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1341
- if test x"$lt_cv_sys_symbol_underscore" = xyes; then
1342
- if test x"$libltdl_cv_func_dlopen" = xyes ||
1343
- test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
1344
- AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
1345
- [libltdl_cv_need_uscore],
1346
- [libltdl_cv_need_uscore=unknown
1347
- save_LIBS="$LIBS"
1348
- LIBS="$LIBS $LIBADD_DLOPEN"
1349
- _LT_TRY_DLOPEN_SELF(
1350
- [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
1351
- [], [libltdl_cv_need_uscore=cross])
1352
- LIBS="$save_LIBS"
1353
- ])
1354
- fi
1355
- fi
1356
-
1357
- if test x"$libltdl_cv_need_uscore" = xyes; then
1358
- AC_DEFINE([NEED_USCORE], [1],
1359
- [Define if dlsym() requires a leading underscore in symbol names.])
1360
- fi
1361
- ])
1362
- m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1363
- m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
1364
- You should run autoupdate.])dnl
1365
- m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1366
- m4trace:/usr/share/aclocal/ltoptions.m4:13: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
1367
- m4trace:/usr/share/aclocal/ltoptions.m4:110: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
1368
- AC_DIAGNOSE([obsolete],
1369
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1370
- put the `dlopen' option into LT_INIT's first parameter.])
1371
- ])
1372
- m4trace:/usr/share/aclocal/ltoptions.m4:110: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
1373
- You should run autoupdate.])dnl
1374
- _LT_SET_OPTION([LT_INIT], [dlopen])
1375
- AC_DIAGNOSE([obsolete],
1376
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1377
- put the `dlopen' option into LT_INIT's first parameter.])
1378
- ])
1379
- m4trace:/usr/share/aclocal/ltoptions.m4:145: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1380
- _LT_SET_OPTION([LT_INIT], [win32-dll])
1381
- AC_DIAGNOSE([obsolete],
1382
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1383
- put the `win32-dll' option into LT_INIT's first parameter.])
1384
- ])
1385
- m4trace:/usr/share/aclocal/ltoptions.m4:145: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
1386
- You should run autoupdate.])dnl
1387
- AC_REQUIRE([AC_CANONICAL_HOST])dnl
1388
- _LT_SET_OPTION([LT_INIT], [win32-dll])
1389
- AC_DIAGNOSE([obsolete],
1390
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1391
- put the `win32-dll' option into LT_INIT's first parameter.])
1392
- ])
1393
- m4trace:/usr/share/aclocal/ltoptions.m4:194: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
1394
- ])
1395
- m4trace:/usr/share/aclocal/ltoptions.m4:198: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
1396
- ])
1397
- m4trace:/usr/share/aclocal/ltoptions.m4:202: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
1398
- m4trace:/usr/share/aclocal/ltoptions.m4:202: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
1399
- You should run autoupdate.])dnl
1400
- AC_ENABLE_SHARED($@)])
1401
- m4trace:/usr/share/aclocal/ltoptions.m4:203: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
1402
- m4trace:/usr/share/aclocal/ltoptions.m4:203: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
1403
- You should run autoupdate.])dnl
1404
- AC_DISABLE_SHARED($@)])
1405
- m4trace:/usr/share/aclocal/ltoptions.m4:248: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
1406
- ])
1407
- m4trace:/usr/share/aclocal/ltoptions.m4:252: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
1408
- ])
1409
- m4trace:/usr/share/aclocal/ltoptions.m4:256: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
1410
- m4trace:/usr/share/aclocal/ltoptions.m4:256: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
1411
- You should run autoupdate.])dnl
1412
- AC_ENABLE_STATIC($@)])
1413
- m4trace:/usr/share/aclocal/ltoptions.m4:257: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
1414
- m4trace:/usr/share/aclocal/ltoptions.m4:257: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
1415
- You should run autoupdate.])dnl
1416
- AC_DISABLE_STATIC($@)])
1417
- m4trace:/usr/share/aclocal/ltoptions.m4:302: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1418
- AC_DIAGNOSE([obsolete],
1419
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1420
- the `fast-install' option into LT_INIT's first parameter.])
1421
- ])
1422
- m4trace:/usr/share/aclocal/ltoptions.m4:302: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
1423
- You should run autoupdate.])dnl
1424
- _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1425
- AC_DIAGNOSE([obsolete],
1426
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1427
- the `fast-install' option into LT_INIT's first parameter.])
1428
- ])
1429
- m4trace:/usr/share/aclocal/ltoptions.m4:309: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1430
- AC_DIAGNOSE([obsolete],
1431
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1432
- the `disable-fast-install' option into LT_INIT's first parameter.])
1433
- ])
1434
- m4trace:/usr/share/aclocal/ltoptions.m4:309: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
1435
- You should run autoupdate.])dnl
1436
- _LT_SET_OPTION([LT_INIT], [disable-fast-install])
1437
- AC_DIAGNOSE([obsolete],
1438
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1439
- the `disable-fast-install' option into LT_INIT's first parameter.])
1440
- ])
1441
- m4trace:/usr/share/aclocal/ltoptions.m4:342: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
1442
- AC_DIAGNOSE([obsolete],
1443
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1444
- put the `pic-only' option into LT_INIT's first parameter.])
1445
- ])
1446
- m4trace:/usr/share/aclocal/ltoptions.m4:342: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
1447
- You should run autoupdate.])dnl
1448
- _LT_SET_OPTION([LT_INIT], [pic-only])
1449
- AC_DIAGNOSE([obsolete],
1450
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1451
- put the `pic-only' option into LT_INIT's first parameter.])
1452
- ])
1453
- m4trace:/usr/share/aclocal/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
1454
- m4trace:/usr/share/aclocal/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.2.6'
1455
- macro_revision='1.3012'
1456
- _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
1457
- _LT_DECL(, macro_revision, 0)
1458
- ])
1459
- m4trace:/usr/share/aclocal/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
1460
- m4trace:/usr/share/aclocal/lt~obsolete.m4:40: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
1461
- m4trace:/usr/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
1462
- m4trace:/usr/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
1463
- m4trace:/usr/share/aclocal/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_AC_TAGVAR])
1464
- m4trace:/usr/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
1465
- m4trace:/usr/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_PREOPEN])
1466
- m4trace:/usr/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
1467
- m4trace:/usr/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_LOCK])
1468
- m4trace:/usr/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
1469
- m4trace:/usr/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
1470
- m4trace:/usr/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
1471
- m4trace:/usr/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
1472
- m4trace:/usr/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
1473
- m4trace:/usr/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LTDL_OBJDIR])
1474
- m4trace:/usr/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
1475
- m4trace:/usr/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
1476
- m4trace:/usr/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_PATH_MAGIC])
1477
- m4trace:/usr/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PROG_LD_GNU])
1478
- m4trace:/usr/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
1479
- m4trace:/usr/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
1480
- m4trace:/usr/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
1481
- m4trace:/usr/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
1482
- m4trace:/usr/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
1483
- m4trace:/usr/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
1484
- m4trace:/usr/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
1485
- m4trace:/usr/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([LT_AC_PROG_EGREP])
1486
- m4trace:/usr/share/aclocal/lt~obsolete.m4:71: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
1487
- m4trace:/usr/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
1488
- m4trace:/usr/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
1489
- m4trace:/usr/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
1490
- m4trace:/usr/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
1491
- m4trace:/usr/share/aclocal/lt~obsolete.m4:77: -1- AC_DEFUN([_LT_AC_LANG_CXX])
1492
- m4trace:/usr/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_F77])
1493
- m4trace:/usr/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
1494
- m4trace:/usr/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_RC])
1495
- m4trace:/usr/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
1496
- m4trace:/usr/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
1497
- m4trace:/usr/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
1498
- m4trace:/usr/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
1499
- m4trace:/usr/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
1500
- m4trace:/usr/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
1501
- m4trace:/usr/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
1502
- m4trace:/usr/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
1503
- m4trace:/usr/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
1504
- m4trace:/usr/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
1505
- m4trace:/usr/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
1506
- m4trace:/usr/share/aclocal/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
1507
- m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
1508
- dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1509
- dnl require some minimum version. Point them to the right macro.
1510
- m4_if([$1], [1.11], [],
1511
- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1512
- ])
1513
- m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11])dnl
1514
- m4_ifndef([AC_AUTOCONF_VERSION],
1515
- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1516
- _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1517
- m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
1518
- AC_PREREQ([2.50])dnl
1519
- # expand $ac_aux_dir to an absolute path
1520
- am_aux_dir=`cd $ac_aux_dir && pwd`
1521
- ])
1522
- m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
1523
- ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
1524
- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1525
- AC_SUBST([$1_TRUE])dnl
1526
- AC_SUBST([$1_FALSE])dnl
1527
- _AM_SUBST_NOTMAKE([$1_TRUE])dnl
1528
- _AM_SUBST_NOTMAKE([$1_FALSE])dnl
1529
- m4_define([_AM_COND_VALUE_$1], [$2])dnl
1530
- if $2; then
1531
- $1_TRUE=
1532
- $1_FALSE='#'
1533
- else
1534
- $1_TRUE='#'
1535
- $1_FALSE=
1536
- fi
1537
- AC_CONFIG_COMMANDS_PRE(
1538
- [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
1539
- AC_MSG_ERROR([[conditional "$1" was never defined.
1540
- Usually this means the macro was only invoked conditionally.]])
1541
- fi])])
1542
- m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
1543
- AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1544
- AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1545
- AC_REQUIRE([AM_DEP_TRACK])dnl
1546
-
1547
- ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
1548
- [$1], CXX, [depcc="$CXX" am_compiler_list=],
1549
- [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
1550
- [$1], UPC, [depcc="$UPC" am_compiler_list=],
1551
- [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
1552
- [depcc="$$1" am_compiler_list=])
1553
-
1554
- AC_CACHE_CHECK([dependency style of $depcc],
1555
- [am_cv_$1_dependencies_compiler_type],
1556
- [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1557
- # We make a subdir and do the tests there. Otherwise we can end up
1558
- # making bogus files that we don't know about and never remove. For
1559
- # instance it was reported that on HP-UX the gcc test will end up
1560
- # making a dummy file named `D' -- because `-MD' means `put the output
1561
- # in D'.
1562
- mkdir conftest.dir
1563
- # Copy depcomp to subdir because otherwise we won't find it if we're
1564
- # using a relative directory.
1565
- cp "$am_depcomp" conftest.dir
1566
- cd conftest.dir
1567
- # We will build objects and dependencies in a subdirectory because
1568
- # it helps to detect inapplicable dependency modes. For instance
1569
- # both Tru64's cc and ICC support -MD to output dependencies as a
1570
- # side effect of compilation, but ICC will put the dependencies in
1571
- # the current directory while Tru64 will put them in the object
1572
- # directory.
1573
- mkdir sub
1574
-
1575
- am_cv_$1_dependencies_compiler_type=none
1576
- if test "$am_compiler_list" = ""; then
1577
- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
1578
- fi
1579
- am__universal=false
1580
- m4_case([$1], [CC],
1581
- [case " $depcc " in #(
1582
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1583
- esac],
1584
- [CXX],
1585
- [case " $depcc " in #(
1586
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1587
- esac])
1588
-
1589
- for depmode in $am_compiler_list; do
1590
- # Setup a source with many dependencies, because some compilers
1591
- # like to wrap large dependency lists on column 80 (with \), and
1592
- # we should not choose a depcomp mode which is confused by this.
1593
- #
1594
- # We need to recreate these files for each test, as the compiler may
1595
- # overwrite some of them when testing with obscure command lines.
1596
- # This happens at least with the AIX C compiler.
1597
- : > sub/conftest.c
1598
- for i in 1 2 3 4 5 6; do
1599
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
1600
- # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
1601
- # Solaris 8's {/usr,}/bin/sh.
1602
- touch sub/conftst$i.h
1603
- done
1604
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
1605
-
1606
- # We check with `-c' and `-o' for the sake of the "dashmstdout"
1607
- # mode. It turns out that the SunPro C++ compiler does not properly
1608
- # handle `-M -o', and we need to detect this. Also, some Intel
1609
- # versions had trouble with output in subdirs
1610
- am__obj=sub/conftest.${OBJEXT-o}
1611
- am__minus_obj="-o $am__obj"
1612
- case $depmode in
1613
- gcc)
1614
- # This depmode causes a compiler race in universal mode.
1615
- test "$am__universal" = false || continue
1616
- ;;
1617
- nosideeffect)
1618
- # after this tag, mechanisms are not by side-effect, so they'll
1619
- # only be used when explicitly requested
1620
- if test "x$enable_dependency_tracking" = xyes; then
1621
- continue
1622
- else
1623
- break
1624
- fi
1625
- ;;
1626
- msvisualcpp | msvcmsys)
1627
- # This compiler won't grok `-c -o', but also, the minuso test has
1628
- # not run yet. These depmodes are late enough in the game, and
1629
- # so weak that their functioning should not be impacted.
1630
- am__obj=conftest.${OBJEXT-o}
1631
- am__minus_obj=
1632
- ;;
1633
- none) break ;;
1634
- esac
1635
- if depmode=$depmode \
1636
- source=sub/conftest.c object=$am__obj \
1637
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
1638
- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
1639
- >/dev/null 2>conftest.err &&
1640
- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
1641
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
1642
- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
1643
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
1644
- # icc doesn't choke on unknown options, it will just issue warnings
1645
- # or remarks (even with -Werror). So we grep stderr for any message
1646
- # that says an option was ignored or not supported.
1647
- # When given -MP, icc 7.0 and 7.1 complain thusly:
1648
- # icc: Command line warning: ignoring option '-M'; no argument required
1649
- # The diagnosis changed in icc 8.0:
1650
- # icc: Command line remark: option '-MP' not supported
1651
- if (grep 'ignoring option' conftest.err ||
1652
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
1653
- am_cv_$1_dependencies_compiler_type=$depmode
1654
- break
1655
- fi
1656
- fi
1657
- done
1658
-
1659
- cd ..
1660
- rm -rf conftest.dir
1661
- else
1662
- am_cv_$1_dependencies_compiler_type=none
1663
- fi
1664
- ])
1665
- AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
1666
- AM_CONDITIONAL([am__fastdep$1], [
1667
- test "x$enable_dependency_tracking" != xno \
1668
- && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
1669
- ])
1670
- m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1671
- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
1672
- ])
1673
- m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
1674
- [ --disable-dependency-tracking speeds up one-time build
1675
- --enable-dependency-tracking do not reject slow dependency extractors])
1676
- if test "x$enable_dependency_tracking" != xno; then
1677
- am_depcomp="$ac_aux_dir/depcomp"
1678
- AMDEPBACKSLASH='\'
1679
- fi
1680
- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
1681
- AC_SUBST([AMDEPBACKSLASH])dnl
1682
- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
1683
- ])
1684
- m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
1685
- # Autoconf 2.62 quotes --file arguments for eval, but not when files
1686
- # are listed without --file. Let's play safe and only enable the eval
1687
- # if we detect the quoting.
1688
- case $CONFIG_FILES in
1689
- *\'*) eval set x "$CONFIG_FILES" ;;
1690
- *) set x $CONFIG_FILES ;;
1691
- esac
1692
- shift
1693
- for mf
1694
- do
1695
- # Strip MF so we end up with the name of the file.
1696
- mf=`echo "$mf" | sed -e 's/:.*$//'`
1697
- # Check whether this is an Automake generated Makefile or not.
1698
- # We used to match only the files named `Makefile.in', but
1699
- # some people rename them; so instead we look at the file content.
1700
- # Grep'ing the first line is not enough: some people post-process
1701
- # each Makefile.in and add a new line on top of each file to say so.
1702
- # Grep'ing the whole file is not good either: AIX grep has a line
1703
- # limit of 2048, but all sed's we know have understand at least 4000.
1704
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1705
- dirpart=`AS_DIRNAME("$mf")`
1706
- else
1707
- continue
1708
- fi
1709
- # Extract the definition of DEPDIR, am__include, and am__quote
1710
- # from the Makefile without running `make'.
1711
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1712
- test -z "$DEPDIR" && continue
1713
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
1714
- test -z "am__include" && continue
1715
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1716
- # When using ansi2knr, U may be empty or an underscore; expand it
1717
- U=`sed -n 's/^U = //p' < "$mf"`
1718
- # Find all dependency output files, they are included files with
1719
- # $(DEPDIR) in their names. We invoke sed twice because it is the
1720
- # simplest approach to changing $(DEPDIR) to its actual value in the
1721
- # expansion.
1722
- for file in `sed -n "
1723
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1724
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1725
- # Make sure the directory exists.
1726
- test -f "$dirpart/$file" && continue
1727
- fdir=`AS_DIRNAME(["$file"])`
1728
- AS_MKDIR_P([$dirpart/$fdir])
1729
- # echo "creating $dirpart/$file"
1730
- echo '# dummy' > "$dirpart/$file"
1731
- done
1732
- done
1733
- }
1734
- ])
1735
- m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
1736
- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
1737
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
1738
- ])
1739
- m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
1740
- dnl Autoconf wants to disallow AM_ names. We explicitly allow
1741
- dnl the ones we care about.
1742
- m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
1743
- AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
1744
- AC_REQUIRE([AC_PROG_INSTALL])dnl
1745
- if test "`cd $srcdir && pwd`" != "`pwd`"; then
1746
- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
1747
- # is not polluted with repeated "-I."
1748
- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
1749
- # test to see if srcdir already configured
1750
- if test -f $srcdir/config.status; then
1751
- AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
1752
- fi
1753
- fi
1754
-
1755
- # test whether we have cygpath
1756
- if test -z "$CYGPATH_W"; then
1757
- if (cygpath --version) >/dev/null 2>/dev/null; then
1758
- CYGPATH_W='cygpath -w'
1759
- else
1760
- CYGPATH_W=echo
1761
- fi
1762
- fi
1763
- AC_SUBST([CYGPATH_W])
1764
-
1765
- # Define the identity of the package.
1766
- dnl Distinguish between old-style and new-style calls.
1767
- m4_ifval([$2],
1768
- [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
1769
- AC_SUBST([PACKAGE], [$1])dnl
1770
- AC_SUBST([VERSION], [$2])],
1771
- [_AM_SET_OPTIONS([$1])dnl
1772
- dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
1773
- m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
1774
- [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
1775
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
1776
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
1777
-
1778
- _AM_IF_OPTION([no-define],,
1779
- [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
1780
- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
1781
-
1782
- # Some tools Automake needs.
1783
- AC_REQUIRE([AM_SANITY_CHECK])dnl
1784
- AC_REQUIRE([AC_ARG_PROGRAM])dnl
1785
- AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
1786
- AM_MISSING_PROG(AUTOCONF, autoconf)
1787
- AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
1788
- AM_MISSING_PROG(AUTOHEADER, autoheader)
1789
- AM_MISSING_PROG(MAKEINFO, makeinfo)
1790
- AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1791
- AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
1792
- AC_REQUIRE([AM_PROG_MKDIR_P])dnl
1793
- # We need awk for the "check" target. The system "awk" is bad on
1794
- # some platforms.
1795
- AC_REQUIRE([AC_PROG_AWK])dnl
1796
- AC_REQUIRE([AC_PROG_MAKE_SET])dnl
1797
- AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1798
- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
1799
- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
1800
- [_AM_PROG_TAR([v7])])])
1801
- _AM_IF_OPTION([no-dependencies],,
1802
- [AC_PROVIDE_IFELSE([AC_PROG_CC],
1803
- [_AM_DEPENDENCIES(CC)],
1804
- [define([AC_PROG_CC],
1805
- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
1806
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
1807
- [_AM_DEPENDENCIES(CXX)],
1808
- [define([AC_PROG_CXX],
1809
- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
1810
- AC_PROVIDE_IFELSE([AC_PROG_OBJC],
1811
- [_AM_DEPENDENCIES(OBJC)],
1812
- [define([AC_PROG_OBJC],
1813
- defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
1814
- ])
1815
- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
1816
- dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
1817
- dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
1818
- dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
1819
- AC_CONFIG_COMMANDS_PRE(dnl
1820
- [m4_provide_if([_AM_COMPILER_EXEEXT],
1821
- [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
1822
- ])
1823
- m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
1824
- _am_arg=$1
1825
- _am_stamp_count=1
1826
- for _am_header in $config_headers :; do
1827
- case $_am_header in
1828
- $_am_arg | $_am_arg:* )
1829
- break ;;
1830
- * )
1831
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1832
- esac
1833
- done
1834
- echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
1835
- m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1836
- if test x"${install_sh}" != xset; then
1837
- case $am_aux_dir in
1838
- *\ * | *\ *)
1839
- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
1840
- *)
1841
- install_sh="\${SHELL} $am_aux_dir/install-sh"
1842
- esac
1843
- fi
1844
- AC_SUBST(install_sh)])
1845
- m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
1846
- mkdir .tst 2>/dev/null
1847
- if test -d .tst; then
1848
- am__leading_dot=.
1849
- else
1850
- am__leading_dot=_
1851
- fi
1852
- rmdir .tst 2>/dev/null
1853
- AC_SUBST([am__leading_dot])])
1854
- m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
1855
- cat > confinc << 'END'
1856
- am__doit:
1857
- @echo this is the am__doit target
1858
- .PHONY: am__doit
1859
- END
1860
- # If we don't find an include directive, just comment out the code.
1861
- AC_MSG_CHECKING([for style of include used by $am_make])
1862
- am__include="#"
1863
- am__quote=
1864
- _am_result=none
1865
- # First try GNU make style include.
1866
- echo "include confinc" > confmf
1867
- # Ignore all kinds of additional output from `make'.
1868
- case `$am_make -s -f confmf 2> /dev/null` in #(
1869
- *the\ am__doit\ target*)
1870
- am__include=include
1871
- am__quote=
1872
- _am_result=GNU
1873
- ;;
1874
- esac
1875
- # Now try BSD make style include.
1876
- if test "$am__include" = "#"; then
1877
- echo '.include "confinc"' > confmf
1878
- case `$am_make -s -f confmf 2> /dev/null` in #(
1879
- *the\ am__doit\ target*)
1880
- am__include=.include
1881
- am__quote="\""
1882
- _am_result=BSD
1883
- ;;
1884
- esac
1885
- fi
1886
- AC_SUBST([am__include])
1887
- AC_SUBST([am__quote])
1888
- AC_MSG_RESULT([$_am_result])
1889
- rm -f confinc confmf
1890
- ])
1891
- m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
1892
- $1=${$1-"${am_missing_run}$2"}
1893
- AC_SUBST($1)])
1894
- m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1895
- AC_REQUIRE_AUX_FILE([missing])dnl
1896
- if test x"${MISSING+set}" != xset; then
1897
- case $am_aux_dir in
1898
- *\ * | *\ *)
1899
- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1900
- *)
1901
- MISSING="\${SHELL} $am_aux_dir/missing" ;;
1902
- esac
1903
- fi
1904
- # Use eval to expand $SHELL
1905
- if eval "$MISSING --run true"; then
1906
- am_missing_run="$MISSING --run "
1907
- else
1908
- am_missing_run=
1909
- AC_MSG_WARN([`missing' script is too old or missing])
1910
- fi
1911
- ])
1912
- m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
1913
- AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1914
- dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
1915
- dnl while keeping a definition of mkdir_p for backward compatibility.
1916
- dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
1917
- dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
1918
- dnl Makefile.ins that do not define MKDIR_P, so we do our own
1919
- dnl adjustment using top_builddir (which is defined more often than
1920
- dnl MKDIR_P).
1921
- AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
1922
- case $mkdir_p in
1923
- [[\\/$]]* | ?:[[\\/]]*) ;;
1924
- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
1925
- esac
1926
- ])
1927
- m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1928
- m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
1929
- m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1930
- m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1931
- m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
1932
- ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
1933
- ac_status=$?
1934
- echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1935
- (exit $ac_status); }])
1936
- m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
1937
- # Just in case
1938
- sleep 1
1939
- echo timestamp > conftest.file
1940
- # Reject unsafe characters in $srcdir or the absolute working directory
1941
- # name. Accept space and tab only in the latter.
1942
- am_lf='
1943
- '
1944
- case `pwd` in
1945
- *[[\\\"\#\$\&\'\`$am_lf]]*)
1946
- AC_MSG_ERROR([unsafe absolute working directory name]);;
1947
- esac
1948
- case $srcdir in
1949
- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
1950
- AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
1951
- esac
1952
-
1953
- # Do `set' in a subshell so we don't clobber the current shell's
1954
- # arguments. Must try -L first in case configure is actually a
1955
- # symlink; some systems play weird games with the mod time of symlinks
1956
- # (eg FreeBSD returns the mod time of the symlink's containing
1957
- # directory).
1958
- if (
1959
- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1960
- if test "$[*]" = "X"; then
1961
- # -L didn't work.
1962
- set X `ls -t "$srcdir/configure" conftest.file`
1963
- fi
1964
- rm -f conftest.file
1965
- if test "$[*]" != "X $srcdir/configure conftest.file" \
1966
- && test "$[*]" != "X conftest.file $srcdir/configure"; then
1967
-
1968
- # If neither matched, then we have a broken ls. This can happen
1969
- # if, for instance, CONFIG_SHELL is bash and it inherits a
1970
- # broken ls alias from the environment. This has actually
1971
- # happened. Such a system could not be considered "sane".
1972
- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
1973
- alias in your environment])
1974
- fi
1975
-
1976
- test "$[2]" = conftest.file
1977
- )
1978
- then
1979
- # Ok.
1980
- :
1981
- else
1982
- AC_MSG_ERROR([newly created file is older than distributed files!
1983
- Check your system clock])
1984
- fi
1985
- AC_MSG_RESULT(yes)])
1986
- m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
1987
- [ --enable-silent-rules less verbose build output (undo: `make V=1')
1988
- --disable-silent-rules verbose build output (undo: `make V=0')])
1989
- case $enable_silent_rules in
1990
- yes) AM_DEFAULT_VERBOSITY=0;;
1991
- no) AM_DEFAULT_VERBOSITY=1;;
1992
- *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1993
- esac
1994
- AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1995
- AM_BACKSLASH='\'
1996
- AC_SUBST([AM_BACKSLASH])dnl
1997
- _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1998
- ])
1999
- m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2000
- # Installed binaries are usually stripped using `strip' when the user
2001
- # run `make install-strip'. However `strip' might not be the right
2002
- # tool to use in cross-compilation environments, therefore Automake
2003
- # will honor the `STRIP' environment variable to overrule this program.
2004
- dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
2005
- if test "$cross_compiling" != no; then
2006
- AC_CHECK_TOOL([STRIP], [strip], :)
2007
- fi
2008
- INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2009
- AC_SUBST([INSTALL_STRIP_PROGRAM])])
2010
- m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2011
- m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2012
- m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
2013
- AM_MISSING_PROG([AMTAR], [tar])
2014
- m4_if([$1], [v7],
2015
- [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
2016
- [m4_case([$1], [ustar],, [pax],,
2017
- [m4_fatal([Unknown tar format])])
2018
- AC_MSG_CHECKING([how to create a $1 tar archive])
2019
- # Loop over all known methods to create a tar archive until one works.
2020
- _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
2021
- _am_tools=${am_cv_prog_tar_$1-$_am_tools}
2022
- # Do not fold the above two line into one, because Tru64 sh and
2023
- # Solaris sh will not grok spaces in the rhs of `-'.
2024
- for _am_tool in $_am_tools
2025
- do
2026
- case $_am_tool in
2027
- gnutar)
2028
- for _am_tar in tar gnutar gtar;
2029
- do
2030
- AM_RUN_LOG([$_am_tar --version]) && break
2031
- done
2032
- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2033
- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2034
- am__untar="$_am_tar -xf -"
2035
- ;;
2036
- plaintar)
2037
- # Must skip GNU tar: if it does not support --format= it doesn't create
2038
- # ustar tarball either.
2039
- (tar --version) >/dev/null 2>&1 && continue
2040
- am__tar='tar chf - "$$tardir"'
2041
- am__tar_='tar chf - "$tardir"'
2042
- am__untar='tar xf -'
2043
- ;;
2044
- pax)
2045
- am__tar='pax -L -x $1 -w "$$tardir"'
2046
- am__tar_='pax -L -x $1 -w "$tardir"'
2047
- am__untar='pax -r'
2048
- ;;
2049
- cpio)
2050
- am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2051
- am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2052
- am__untar='cpio -i -H $1 -d'
2053
- ;;
2054
- none)
2055
- am__tar=false
2056
- am__tar_=false
2057
- am__untar=false
2058
- ;;
2059
- esac
2060
-
2061
- # If the value was cached, stop now. We just wanted to have am__tar
2062
- # and am__untar set.
2063
- test -n "${am_cv_prog_tar_$1}" && break
2064
-
2065
- # tar/untar a dummy directory, and stop if the command works
2066
- rm -rf conftest.dir
2067
- mkdir conftest.dir
2068
- echo GrepMe > conftest.dir/file
2069
- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2070
- rm -rf conftest.dir
2071
- if test -s conftest.tar; then
2072
- AM_RUN_LOG([$am__untar <conftest.tar])
2073
- grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2074
- fi
2075
- done
2076
- rm -rf conftest.dir
2077
-
2078
- AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2079
- AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2080
- AC_SUBST([am__tar])
2081
- AC_SUBST([am__untar])
2082
- ])
2083
- m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?A[CHUM]_])
2084
- m4trace:configure.ac:27: -1- m4_pattern_forbid([_AC_])
2085
- m4trace:configure.ac:27: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
2086
- m4trace:configure.ac:27: -1- m4_pattern_allow([^AS_FLAGS$])
2087
- m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?m4_])
2088
- m4trace:configure.ac:27: -1- m4_pattern_forbid([^dnl$])
2089
- m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?AS_])
2090
- m4trace:configure.ac:27: -1- m4_pattern_allow([^SHELL$])
2091
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PATH_SEPARATOR$])
2092
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_NAME$])
2093
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2094
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2095
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_STRING$])
2096
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2097
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_URL$])
2098
- m4trace:configure.ac:27: -1- m4_pattern_allow([^exec_prefix$])
2099
- m4trace:configure.ac:27: -1- m4_pattern_allow([^prefix$])
2100
- m4trace:configure.ac:27: -1- m4_pattern_allow([^program_transform_name$])
2101
- m4trace:configure.ac:27: -1- m4_pattern_allow([^bindir$])
2102
- m4trace:configure.ac:27: -1- m4_pattern_allow([^sbindir$])
2103
- m4trace:configure.ac:27: -1- m4_pattern_allow([^libexecdir$])
2104
- m4trace:configure.ac:27: -1- m4_pattern_allow([^datarootdir$])
2105
- m4trace:configure.ac:27: -1- m4_pattern_allow([^datadir$])
2106
- m4trace:configure.ac:27: -1- m4_pattern_allow([^sysconfdir$])
2107
- m4trace:configure.ac:27: -1- m4_pattern_allow([^sharedstatedir$])
2108
- m4trace:configure.ac:27: -1- m4_pattern_allow([^localstatedir$])
2109
- m4trace:configure.ac:27: -1- m4_pattern_allow([^includedir$])
2110
- m4trace:configure.ac:27: -1- m4_pattern_allow([^oldincludedir$])
2111
- m4trace:configure.ac:27: -1- m4_pattern_allow([^docdir$])
2112
- m4trace:configure.ac:27: -1- m4_pattern_allow([^infodir$])
2113
- m4trace:configure.ac:27: -1- m4_pattern_allow([^htmldir$])
2114
- m4trace:configure.ac:27: -1- m4_pattern_allow([^dvidir$])
2115
- m4trace:configure.ac:27: -1- m4_pattern_allow([^pdfdir$])
2116
- m4trace:configure.ac:27: -1- m4_pattern_allow([^psdir$])
2117
- m4trace:configure.ac:27: -1- m4_pattern_allow([^libdir$])
2118
- m4trace:configure.ac:27: -1- m4_pattern_allow([^localedir$])
2119
- m4trace:configure.ac:27: -1- m4_pattern_allow([^mandir$])
2120
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_NAME$])
2121
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2122
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2123
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_STRING$])
2124
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2125
- m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_URL$])
2126
- m4trace:configure.ac:27: -1- m4_pattern_allow([^DEFS$])
2127
- m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_C$])
2128
- m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_N$])
2129
- m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_T$])
2130
- m4trace:configure.ac:27: -1- m4_pattern_allow([^LIBS$])
2131
- m4trace:configure.ac:27: -1- m4_pattern_allow([^build_alias$])
2132
- m4trace:configure.ac:27: -1- m4_pattern_allow([^host_alias$])
2133
- m4trace:configure.ac:27: -1- m4_pattern_allow([^target_alias$])
2134
- m4trace:configure.ac:32: -1- AM_INIT_AUTOMAKE([1.9 foreign])
2135
- m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
2136
- m4trace:configure.ac:32: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
2137
- m4trace:configure.ac:32: -1- AM_AUTOMAKE_VERSION([1.11])
2138
- m4trace:configure.ac:32: -1- _AM_AUTOCONF_VERSION([2.64])
2139
- m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
2140
- m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
2141
- m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_DATA$])
2142
- m4trace:configure.ac:32: -1- m4_pattern_allow([^am__isrc$])
2143
- m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__isrc])
2144
- m4trace:configure.ac:32: -1- m4_pattern_allow([^CYGPATH_W$])
2145
- m4trace:configure.ac:32: -1- _AM_SET_OPTIONS([1.9 foreign])
2146
- m4trace:configure.ac:32: -1- _AM_SET_OPTION([1.9])
2147
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([1.9])
2148
- m4trace:configure.ac:32: -1- _AM_SET_OPTION([foreign])
2149
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([foreign])
2150
- m4trace:configure.ac:32: -1- m4_pattern_allow([^PACKAGE$])
2151
- m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSION$])
2152
- m4trace:configure.ac:32: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
2153
- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
2154
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([no-define])
2155
- m4trace:configure.ac:32: -1- m4_pattern_allow([^PACKAGE$])
2156
- m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSION$])
2157
- m4trace:configure.ac:32: -1- AM_SANITY_CHECK
2158
- m4trace:configure.ac:32: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2159
- m4trace:configure.ac:32: -1- AM_MISSING_HAS_RUN
2160
- m4trace:configure.ac:32: -1- AM_AUX_DIR_EXPAND
2161
- m4trace:configure.ac:32: -1- m4_pattern_allow([^ACLOCAL$])
2162
- m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
2163
- m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOCONF$])
2164
- m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2165
- m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOMAKE$])
2166
- m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2167
- m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOHEADER$])
2168
- m4trace:configure.ac:32: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2169
- m4trace:configure.ac:32: -1- m4_pattern_allow([^MAKEINFO$])
2170
- m4trace:configure.ac:32: -1- AM_PROG_INSTALL_SH
2171
- m4trace:configure.ac:32: -1- m4_pattern_allow([^install_sh$])
2172
- m4trace:configure.ac:32: -1- AM_PROG_INSTALL_STRIP
2173
- m4trace:configure.ac:32: -1- m4_pattern_allow([^STRIP$])
2174
- m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
2175
- m4trace:configure.ac:32: -1- AM_PROG_MKDIR_P
2176
- m4trace:configure.ac:32: -1- m4_pattern_allow([^MKDIR_P$])
2177
- m4trace:configure.ac:32: -1- m4_pattern_allow([^mkdir_p$])
2178
- m4trace:configure.ac:32: -1- m4_pattern_allow([^AWK$])
2179
- m4trace:configure.ac:32: -1- m4_pattern_allow([^SET_MAKE$])
2180
- m4trace:configure.ac:32: -1- AM_SET_LEADING_DOT
2181
- m4trace:configure.ac:32: -1- m4_pattern_allow([^am__leading_dot$])
2182
- m4trace:configure.ac:32: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2183
- [_AM_PROG_TAR([v7])])])
2184
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([tar-ustar])
2185
- m4trace:configure.ac:32: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
2186
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([tar-pax])
2187
- m4trace:configure.ac:32: -1- _AM_PROG_TAR([v7])
2188
- m4trace:configure.ac:32: -1- AM_MISSING_PROG([AMTAR], [tar])
2189
- m4trace:configure.ac:32: -1- m4_pattern_allow([^AMTAR$])
2190
- m4trace:configure.ac:32: -1- m4_pattern_allow([^am__tar$])
2191
- m4trace:configure.ac:32: -1- m4_pattern_allow([^am__untar$])
2192
- m4trace:configure.ac:32: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
2193
- [_AM_DEPENDENCIES(CC)],
2194
- [define([AC_PROG_CC],
2195
- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
2196
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
2197
- [_AM_DEPENDENCIES(CXX)],
2198
- [define([AC_PROG_CXX],
2199
- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
2200
- AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2201
- [_AM_DEPENDENCIES(OBJC)],
2202
- [define([AC_PROG_OBJC],
2203
- defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
2204
- ])
2205
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([no-dependencies])
2206
- m4trace:configure.ac:32: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
2207
- m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([silent-rules])
2208
- m4trace:configure.ac:35: -1- m4_pattern_allow([^YAML_VERSION_MAJOR$])
2209
- m4trace:configure.ac:36: -1- m4_pattern_allow([^YAML_VERSION_MINOR$])
2210
- m4trace:configure.ac:37: -1- m4_pattern_allow([^YAML_VERSION_PATCH$])
2211
- m4trace:configure.ac:38: -1- m4_pattern_allow([^YAML_VERSION_STRING$])
2212
- m4trace:configure.ac:45: -1- m4_pattern_allow([^YAML_LT_RELEASE$])
2213
- m4trace:configure.ac:46: -1- m4_pattern_allow([^YAML_LT_CURRENT$])
2214
- m4trace:configure.ac:47: -1- m4_pattern_allow([^YAML_LT_REVISION$])
2215
- m4trace:configure.ac:48: -1- m4_pattern_allow([^YAML_LT_AGE$])
2216
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
2217
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CFLAGS$])
2218
- m4trace:configure.ac:53: -1- m4_pattern_allow([^LDFLAGS$])
2219
- m4trace:configure.ac:53: -1- m4_pattern_allow([^LIBS$])
2220
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CPPFLAGS$])
2221
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
2222
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
2223
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
2224
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
2225
- m4trace:configure.ac:53: -1- m4_pattern_allow([^ac_ct_CC$])
2226
- m4trace:configure.ac:53: -1- m4_pattern_allow([^EXEEXT$])
2227
- m4trace:configure.ac:53: -1- m4_pattern_allow([^OBJEXT$])
2228
- m4trace:configure.ac:53: -1- _AM_DEPENDENCIES([CC])
2229
- m4trace:configure.ac:53: -1- AM_SET_DEPDIR
2230
- m4trace:configure.ac:53: -1- m4_pattern_allow([^DEPDIR$])
2231
- m4trace:configure.ac:53: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
2232
- m4trace:configure.ac:53: -1- AM_MAKE_INCLUDE
2233
- m4trace:configure.ac:53: -1- m4_pattern_allow([^am__include$])
2234
- m4trace:configure.ac:53: -1- m4_pattern_allow([^am__quote$])
2235
- m4trace:configure.ac:53: -1- AM_DEP_TRACK
2236
- m4trace:configure.ac:53: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2237
- m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEP_TRUE$])
2238
- m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEP_FALSE$])
2239
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
2240
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
2241
- m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
2242
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
2243
- m4trace:configure.ac:53: -1- m4_pattern_allow([^CCDEPMODE$])
2244
- m4trace:configure.ac:53: -1- AM_CONDITIONAL([am__fastdepCC], [
2245
- test "x$enable_dependency_tracking" != xno \
2246
- && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2247
- m4trace:configure.ac:53: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2248
- m4trace:configure.ac:53: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2249
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2250
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2251
- m4trace:configure.ac:54: -1- m4_pattern_allow([^CPP$])
2252
- m4trace:configure.ac:54: -1- m4_pattern_allow([^CPPFLAGS$])
2253
- m4trace:configure.ac:54: -1- m4_pattern_allow([^CPP$])
2254
- m4trace:configure.ac:56: -1- m4_pattern_allow([^LN_S$])
2255
- m4trace:configure.ac:57: -1- m4_pattern_allow([^SET_MAKE$])
2256
- m4trace:configure.ac:58: -1- AC_PROG_LIBTOOL
2257
- m4trace:configure.ac:58: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
2258
- You should run autoupdate.], [/usr/share/aclocal/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
2259
- configure.ac:58: the top level])
2260
- m4trace:configure.ac:58: -1- LT_INIT
2261
- m4trace:configure.ac:58: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
2262
- m4trace:configure.ac:58: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
2263
- m4trace:configure.ac:58: -1- LTOPTIONS_VERSION
2264
- m4trace:configure.ac:58: -1- LTSUGAR_VERSION
2265
- m4trace:configure.ac:58: -1- LTVERSION_VERSION
2266
- m4trace:configure.ac:58: -1- LTOBSOLETE_VERSION
2267
- m4trace:configure.ac:58: -1- _LT_PROG_LTMAIN
2268
- m4trace:configure.ac:58: -1- m4_pattern_allow([^LIBTOOL$])
2269
- m4trace:configure.ac:58: -1- m4_pattern_allow([^build$])
2270
- m4trace:configure.ac:58: -1- m4_pattern_allow([^build_cpu$])
2271
- m4trace:configure.ac:58: -1- m4_pattern_allow([^build_vendor$])
2272
- m4trace:configure.ac:58: -1- m4_pattern_allow([^build_os$])
2273
- m4trace:configure.ac:58: -1- m4_pattern_allow([^host$])
2274
- m4trace:configure.ac:58: -1- m4_pattern_allow([^host_cpu$])
2275
- m4trace:configure.ac:58: -1- m4_pattern_allow([^host_vendor$])
2276
- m4trace:configure.ac:58: -1- m4_pattern_allow([^host_os$])
2277
- m4trace:configure.ac:58: -1- LT_PATH_LD
2278
- m4trace:configure.ac:58: -1- m4_pattern_allow([^SED$])
2279
- m4trace:configure.ac:58: -1- AC_PROG_EGREP
2280
- m4trace:configure.ac:58: -1- m4_pattern_allow([^GREP$])
2281
- m4trace:configure.ac:58: -1- m4_pattern_allow([^EGREP$])
2282
- m4trace:configure.ac:58: -1- m4_pattern_allow([^FGREP$])
2283
- m4trace:configure.ac:58: -1- m4_pattern_allow([^GREP$])
2284
- m4trace:configure.ac:58: -1- m4_pattern_allow([^LD$])
2285
- m4trace:configure.ac:58: -1- LT_PATH_NM
2286
- m4trace:configure.ac:58: -1- m4_pattern_allow([^DUMPBIN$])
2287
- m4trace:configure.ac:58: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
2288
- m4trace:configure.ac:58: -1- m4_pattern_allow([^DUMPBIN$])
2289
- m4trace:configure.ac:58: -1- m4_pattern_allow([^NM$])
2290
- m4trace:configure.ac:58: -1- LT_CMD_MAX_LEN
2291
- m4trace:configure.ac:58: -1- m4_pattern_allow([^OBJDUMP$])
2292
- m4trace:configure.ac:58: -1- m4_pattern_allow([^OBJDUMP$])
2293
- m4trace:configure.ac:58: -1- m4_pattern_allow([^AR$])
2294
- m4trace:configure.ac:58: -1- m4_pattern_allow([^STRIP$])
2295
- m4trace:configure.ac:58: -1- m4_pattern_allow([^RANLIB$])
2296
- m4trace:configure.ac:58: -1- m4_pattern_allow([LT_OBJDIR])
2297
- m4trace:configure.ac:58: -1- m4_pattern_allow([^LT_OBJDIR$])
2298
- m4trace:configure.ac:58: -1- m4_pattern_allow([^lt_ECHO$])
2299
- m4trace:configure.ac:58: -1- _LT_CC_BASENAME([$compiler])
2300
- m4trace:configure.ac:58: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
2301
- m4trace:configure.ac:58: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
2302
- m4trace:configure.ac:58: -1- LT_SUPPORTED_TAG([CC])
2303
- m4trace:configure.ac:58: -1- _LT_COMPILER_BOILERPLATE
2304
- m4trace:configure.ac:58: -1- _LT_LINKER_BOILERPLATE
2305
- m4trace:configure.ac:58: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
2306
- m4trace:configure.ac:58: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
2307
- "" | " "*) ;;
2308
- *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
2309
- esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
2310
- _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
2311
- m4trace:configure.ac:58: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
2312
- m4trace:configure.ac:58: -1- m4_pattern_allow([^DSYMUTIL$])
2313
- m4trace:configure.ac:58: -1- m4_pattern_allow([^NMEDIT$])
2314
- m4trace:configure.ac:58: -1- m4_pattern_allow([^LIPO$])
2315
- m4trace:configure.ac:58: -1- m4_pattern_allow([^OTOOL$])
2316
- m4trace:configure.ac:58: -1- m4_pattern_allow([^OTOOL64$])
2317
- m4trace:configure.ac:58: -1- LT_SYS_DLOPEN_SELF
2318
- m4trace:configure.ac:58: -1- m4_pattern_allow([^STDC_HEADERS$])
2319
- m4trace:configure.ac:58: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
2320
- m4trace:configure.ac:60: -1- m4_pattern_allow([^DOXYGEN$])
2321
- m4trace:configure.ac:61: -1- AM_CONDITIONAL([DOXYGEN], [test "$DOXYGEN" = true])
2322
- m4trace:configure.ac:61: -1- m4_pattern_allow([^DOXYGEN_TRUE$])
2323
- m4trace:configure.ac:61: -1- m4_pattern_allow([^DOXYGEN_FALSE$])
2324
- m4trace:configure.ac:61: -1- _AM_SUBST_NOTMAKE([DOXYGEN_TRUE])
2325
- m4trace:configure.ac:61: -1- _AM_SUBST_NOTMAKE([DOXYGEN_FALSE])
2326
- m4trace:configure.ac:64: -1- m4_pattern_allow([^STDC_HEADERS$])
2327
- m4trace:configure.ac:65: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
2328
- m4trace:configure.ac:68: -1- m4_pattern_allow([^const$])
2329
- m4trace:configure.ac:69: -1- m4_pattern_allow([^size_t$])
2330
- m4trace:configure.ac:75: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2331
- m4trace:configure.ac:75: -1- m4_pattern_allow([^LTLIBOBJS$])
2332
- m4trace:configure.ac:75: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
2333
- m4trace:configure.ac:75: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
2334
- m4trace:configure.ac:75: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
2335
- m4trace:configure.ac:75: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
2336
- m4trace:configure.ac:75: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
2337
- m4trace:configure.ac:75: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
2338
- m4trace:configure.ac:75: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
2339
- m4trace:configure.ac:75: -1- _LT_PROG_LTMAIN