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