passenger 5.0.24 → 5.0.25

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of passenger might be problematic. Click here for more details.

Files changed (1796) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +8 -18
  3. data/CHANGELOG +20 -0
  4. data/build/cplusplus_support.rb +3 -3
  5. data/build/cxx_dependency_map.rb +148 -96
  6. data/build/cxx_tests.rb +24 -12
  7. data/build/packaging.rb +1 -2
  8. data/dev/copy_boost_headers +32 -9
  9. data/resources/templates/standalone/config.erb +2 -0
  10. data/resources/templates/standalone/footer.erb +3 -0
  11. data/resources/templates/standalone/server.erb +7 -0
  12. data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +2 -2
  13. data/src/agent/Core/SpawningKit/DirectSpawner.h +3 -0
  14. data/src/agent/Core/UnionStation/Transaction.h +1 -15
  15. data/src/agent/README.md +15 -3
  16. data/src/agent/UstRouter/Controller.h +95 -90
  17. data/src/agent/UstRouter/FileSink.h +3 -2
  18. data/src/agent/UstRouter/LogSink.h +5 -6
  19. data/src/agent/UstRouter/RemoteSender.h +41 -12
  20. data/src/agent/UstRouter/RemoteSink.h +3 -2
  21. data/src/agent/UstRouter/Transaction.h +198 -66
  22. data/src/apache2_module/Configuration.cpp +57 -2
  23. data/src/apache2_module/Configuration.h +3 -1
  24. data/src/apache2_module/Configuration.hpp +3 -1
  25. data/src/apache2_module/Hooks.cpp +4 -2
  26. data/src/cxx_supportlib/Constants.h +1 -1
  27. data/src/cxx_supportlib/MemoryKit/palloc.h +1 -0
  28. data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +1 -0
  29. data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +4 -3
  30. data/src/cxx_supportlib/ServerKit/Server.h +1 -0
  31. data/src/cxx_supportlib/Utils/BufferedIO.h +21 -4
  32. data/src/cxx_supportlib/Utils/IOUtils.cpp +62 -12
  33. data/src/cxx_supportlib/Utils/StrIntUtils.cpp +3 -3
  34. data/src/cxx_supportlib/Utils/StrIntUtils.h +2 -2
  35. data/src/cxx_supportlib/WatchdogLauncher.cpp +13 -1
  36. data/src/cxx_supportlib/WatchdogLauncher.h +4 -1
  37. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/classification.hpp +312 -0
  38. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/concept.hpp +1 -1
  39. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/classification.hpp +353 -0
  40. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format.hpp +1 -1
  41. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format_all.hpp +1 -1
  42. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format_store.hpp +1 -1
  43. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +87 -0
  44. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/finder.hpp +1 -8
  45. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/finder_regex.hpp +122 -0
  46. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/formatter.hpp +1 -1
  47. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/formatter_regex.hpp +61 -0
  48. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/predicate.hpp +77 -0
  49. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/trim.hpp +95 -0
  50. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/util.hpp +1 -1
  51. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/erase.hpp +1 -1
  52. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find.hpp +334 -0
  53. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_format.hpp +1 -1
  54. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +388 -0
  55. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/finder.hpp +1 -1
  56. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/formatter.hpp +1 -1
  57. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/iter_find.hpp +193 -0
  58. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/join.hpp +145 -0
  59. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/predicate.hpp +475 -0
  60. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/predicate_facade.hpp +42 -0
  61. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/regex.hpp +646 -0
  62. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/regex_find_format.hpp +90 -0
  63. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/replace.hpp +1 -1
  64. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/sequence_traits.hpp +0 -73
  65. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/split.hpp +163 -0
  66. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/std/list_traits.hpp +68 -0
  67. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/std/rope_traits.hpp +81 -0
  68. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/std/slist_traits.hpp +69 -0
  69. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/std/string_traits.hpp +44 -0
  70. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/std_containers_traits.hpp +26 -0
  71. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/trim.hpp +398 -0
  72. data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/trim_all.hpp +217 -0
  73. data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +20 -0
  74. data/src/cxx_supportlib/vendor-modified/boost/align/detail/address.hpp +29 -0
  75. data/src/cxx_supportlib/vendor-modified/boost/align/detail/align.hpp +40 -0
  76. data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +22 -0
  77. data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +29 -0
  78. data/src/cxx_supportlib/vendor-modified/boost/aligned_storage.hpp +1 -164
  79. data/src/cxx_supportlib/vendor-modified/boost/assert.hpp +33 -84
  80. data/src/cxx_supportlib/vendor-modified/boost/atomic.hpp +1 -1
  81. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +83 -231
  82. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_flag.hpp +33 -0
  83. data/src/cxx_supportlib/vendor-modified/boost/atomic/capabilities.hpp +161 -0
  84. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag.hpp +70 -0
  85. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_template.hpp +774 -0
  86. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +53 -0
  87. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_alpha.hpp +34 -0
  88. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_arm.hpp +56 -0
  89. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_atomic.hpp +134 -0
  90. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_ppc.hpp +36 -0
  91. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sparc.hpp +34 -0
  92. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sync.hpp +62 -0
  93. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +52 -0
  94. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_linux_arm.hpp +35 -0
  95. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_arm.hpp +34 -0
  96. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_x86.hpp +50 -0
  97. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +57 -36
  98. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/int_sizes.hpp +140 -0
  99. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +297 -16
  100. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/link.hpp +58 -0
  101. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lockpool.hpp +30 -76
  102. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations.hpp +24 -0
  103. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_fwd.hpp +35 -0
  104. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_lockfree.hpp +30 -0
  105. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_cas_based.hpp +105 -0
  106. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +161 -0
  107. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_extending_cas_based.hpp +68 -0
  108. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_alpha.hpp +876 -0
  109. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm.hpp +973 -0
  110. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +395 -0
  111. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc.hpp +802 -0
  112. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sparc.hpp +240 -0
  113. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sync.hpp +270 -0
  114. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +514 -0
  115. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86_dcas.hpp +616 -0
  116. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_linux_arm.hpp +178 -0
  117. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_arm.hpp +824 -0
  118. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_common.hpp +38 -0
  119. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_x86.hpp +928 -0
  120. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +43 -0
  121. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +91 -32
  122. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_type.hpp +280 -0
  123. data/src/cxx_supportlib/vendor-modified/boost/atomic/fences.hpp +67 -0
  124. data/src/cxx_supportlib/vendor-modified/boost/bind.hpp +18 -1
  125. data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +74 -0
  126. data/src/cxx_supportlib/vendor-modified/boost/bind/arg.hpp +5 -5
  127. data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +507 -2
  128. data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf_cc.hpp +214 -0
  129. data/src/cxx_supportlib/vendor-modified/boost/bind/make_adaptable.hpp +187 -0
  130. data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_vw.hpp +130 -0
  131. data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +29 -36
  132. data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +304 -0
  133. data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +13 -65
  134. data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +9 -13
  135. data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +10 -4
  136. data/src/cxx_supportlib/vendor-modified/boost/concept/assert.hpp +1 -2
  137. data/src/cxx_supportlib/vendor-modified/boost/concept/detail/concept_def.hpp +0 -17
  138. data/src/cxx_supportlib/vendor-modified/boost/concept/detail/general.hpp +3 -1
  139. data/src/cxx_supportlib/vendor-modified/boost/concept/usage.hpp +0 -8
  140. data/src/cxx_supportlib/vendor-modified/boost/concept_check.hpp +25 -26
  141. data/src/cxx_supportlib/vendor-modified/boost/config.hpp +9 -12
  142. data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +17 -1
  143. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +36 -6
  144. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +135 -14
  145. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +41 -1
  146. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +48 -9
  147. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +33 -5
  148. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +36 -16
  149. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +121 -87
  150. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +39 -5
  151. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +13 -9
  152. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +327 -64
  153. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +44 -10
  154. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +38 -4
  155. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +0 -12
  156. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +36 -3
  157. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pgi.hpp +37 -1
  158. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +63 -23
  159. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +44 -13
  160. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +102 -128
  161. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +258 -0
  162. data/src/cxx_supportlib/vendor-modified/boost/config/platform/cloudabi.hpp +18 -0
  163. data/src/cxx_supportlib/vendor-modified/boost/config/platform/haiku.hpp +31 -0
  164. data/src/cxx_supportlib/vendor-modified/boost/config/platform/linux.hpp +2 -0
  165. data/src/cxx_supportlib/vendor-modified/boost/config/platform/macos.hpp +1 -1
  166. data/src/cxx_supportlib/vendor-modified/boost/config/platform/solaris.hpp +4 -1
  167. data/src/cxx_supportlib/vendor-modified/boost/config/select_compiler_config.hpp +43 -7
  168. data/src/cxx_supportlib/vendor-modified/boost/config/select_platform_config.hpp +32 -0
  169. data/src/cxx_supportlib/vendor-modified/boost/config/select_stdlib_config.hpp +28 -8
  170. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +58 -15
  171. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +13 -2
  172. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +43 -0
  173. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +129 -14
  174. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +13 -0
  175. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +13 -9
  176. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +12 -0
  177. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +14 -4
  178. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +13 -8
  179. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +13 -3
  180. data/src/cxx_supportlib/vendor-modified/boost/config/suffix.hpp +159 -85
  181. data/src/cxx_supportlib/vendor-modified/boost/config/user.hpp +15 -6
  182. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +351 -0
  183. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +371 -0
  184. data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +283 -213
  185. data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +195 -51
  186. data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +840 -625
  187. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +166 -0
  188. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +24 -13
  189. data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +41 -0
  190. data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +289 -181
  191. data/src/cxx_supportlib/vendor-modified/boost/container/detail/algorithm.hpp +35 -0
  192. data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_helpers.hpp +60 -0
  193. data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_lib.h +314 -0
  194. data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocation_type.hpp +11 -7
  195. data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocator_version_traits.hpp +24 -25
  196. data/src/cxx_supportlib/vendor-modified/boost/container/detail/auto_link.hpp +51 -0
  197. data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_list.hpp +139 -0
  198. data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_slist.hpp +157 -0
  199. data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +74 -0
  200. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +16 -14
  201. data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_end.hpp +1 -5
  202. data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +62 -0
  203. data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +1142 -0
  204. data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +61 -48
  205. data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +293 -0
  206. data/src/cxx_supportlib/vendor-modified/boost/container/detail/dlmalloc.hpp +103 -0
  207. data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +335 -408
  208. data/src/cxx_supportlib/vendor-modified/boost/container/detail/function_detector.hpp +9 -1
  209. data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +383 -0
  210. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +40 -0
  211. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator_to_raw_pointer.hpp +58 -0
  212. data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +300 -83
  213. data/src/cxx_supportlib/vendor-modified/boost/container/detail/math_functions.hpp +13 -3
  214. data/src/cxx_supportlib/vendor-modified/boost/container/detail/min_max.hpp +37 -0
  215. data/src/cxx_supportlib/vendor-modified/boost/container/detail/minimal_char_traits_header.hpp +32 -0
  216. data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +45 -118
  217. data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +22 -10
  218. data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +288 -0
  219. data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +75 -0
  220. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +115 -109
  221. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +157 -0
  222. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +33 -23
  223. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +62 -89
  224. data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +30 -0
  225. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common.hpp +11 -6
  226. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common_alloc.hpp +102 -0
  227. data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +191 -0
  228. data/src/cxx_supportlib/vendor-modified/boost/container/detail/singleton.hpp +121 -0
  229. data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +56 -0
  230. data/src/cxx_supportlib/vendor-modified/boost/container/detail/to_raw_pointer.hpp +33 -0
  231. data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +17 -13
  232. data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +646 -595
  233. data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +44 -184
  234. data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +7 -3
  235. data/src/cxx_supportlib/vendor-modified/boost/container/detail/variadic_templates_tools.hpp +9 -4
  236. data/src/cxx_supportlib/vendor-modified/boost/container/detail/version_type.hpp +23 -5
  237. data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +50 -15
  238. data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +627 -287
  239. data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +608 -657
  240. data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +395 -376
  241. data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +616 -625
  242. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +179 -0
  243. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +344 -0
  244. data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +80 -0
  245. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/deque.hpp +43 -0
  246. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_map.hpp +63 -0
  247. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +59 -0
  248. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/global_resource.hpp +66 -0
  249. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/list.hpp +43 -0
  250. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/map.hpp +63 -0
  251. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +101 -0
  252. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +180 -0
  253. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +166 -0
  254. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/pool_options.hpp +52 -0
  255. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +193 -0
  256. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/set.hpp +59 -0
  257. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/slist.hpp +43 -0
  258. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/small_vector.hpp +43 -0
  259. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/stable_vector.hpp +43 -0
  260. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/string.hpp +48 -0
  261. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +138 -0
  262. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +194 -0
  263. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/vector.hpp +43 -0
  264. data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +423 -1019
  265. data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator_fwd.hpp +23 -35
  266. data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +520 -626
  267. data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +416 -407
  268. data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +574 -0
  269. data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +711 -470
  270. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +314 -145
  271. data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +477 -282
  272. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +63 -3
  273. data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator.hpp +169 -0
  274. data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator_fwd.hpp +73 -0
  275. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +1660 -945
  276. data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +162 -0
  277. data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +69 -0
  278. data/src/cxx_supportlib/vendor-modified/boost/core/demangle.hpp +128 -0
  279. data/src/cxx_supportlib/vendor-modified/boost/core/enable_if.hpp +128 -0
  280. data/src/cxx_supportlib/vendor-modified/boost/core/explicit_operator_bool.hpp +154 -0
  281. data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +70 -0
  282. data/src/cxx_supportlib/vendor-modified/boost/core/is_same.hpp +40 -0
  283. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +171 -0
  284. data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +56 -0
  285. data/src/cxx_supportlib/vendor-modified/boost/core/no_exceptions_support.hpp +44 -0
  286. data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +48 -0
  287. data/src/cxx_supportlib/vendor-modified/boost/core/null_deleter.hpp +44 -0
  288. data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +301 -0
  289. data/src/cxx_supportlib/vendor-modified/boost/{detail/scoped_enum_emulation.hpp → core/scoped_enum.hpp} +19 -164
  290. data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +60 -0
  291. data/src/cxx_supportlib/vendor-modified/boost/core/typeinfo.hpp +151 -0
  292. data/src/cxx_supportlib/vendor-modified/boost/core/underlying_type.hpp +79 -0
  293. data/src/cxx_supportlib/vendor-modified/boost/cstdint.hpp +132 -95
  294. data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +8 -5
  295. data/src/cxx_supportlib/vendor-modified/boost/date_time/adjust_functors.hpp +1 -1
  296. data/src/cxx_supportlib/vendor-modified/boost/date_time/c_local_time_adjustor.hpp +69 -0
  297. data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +3 -3
  298. data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +1 -1
  299. data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +1 -1
  300. data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +3 -3
  301. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_clock_device.hpp +7 -7
  302. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_defs.hpp +1 -1
  303. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +1 -1
  304. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +1 -1
  305. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +1 -1
  306. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_format_simple.hpp +1 -1
  307. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_formatting.hpp +1 -1
  308. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_formatting_limited.hpp +1 -1
  309. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_formatting_locales.hpp +1 -1
  310. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generator_formatter.hpp +1 -1
  311. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generator_parser.hpp +1 -1
  312. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generators.hpp +1 -1
  313. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_iterator.hpp +1 -1
  314. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_names_put.hpp +1 -1
  315. data/src/cxx_supportlib/vendor-modified/boost/date_time/date_parsing.hpp +1 -3
  316. data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_rules.hpp +1 -1
  317. data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_transition_generators.hpp +75 -0
  318. data/src/cxx_supportlib/vendor-modified/boost/date_time/filetime_functions.hpp +1 -1
  319. data/src/cxx_supportlib/vendor-modified/boost/date_time/format_date_parser.hpp +11 -7
  320. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/conversion.hpp +1 -1
  321. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters.hpp +1 -1
  322. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters_limited.hpp +1 -1
  323. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_calendar.hpp +1 -1
  324. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +1 -1
  325. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +1 -1
  326. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day_of_year.hpp +1 -1
  327. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +1 -1
  328. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +1 -1
  329. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_facet.hpp +352 -0
  330. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +1 -1
  331. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +517 -0
  332. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +1 -1
  333. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +1 -1
  334. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_ymd.hpp +1 -1
  335. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/gregorian.hpp +1 -1
  336. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/gregorian_io.hpp +1 -1
  337. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/gregorian_types.hpp +1 -1
  338. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +1 -1
  339. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +1 -1
  340. data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +6 -6
  341. data/src/cxx_supportlib/vendor-modified/boost/date_time/int_adapter.hpp +3 -3
  342. data/src/cxx_supportlib/vendor-modified/boost/date_time/iso_format.hpp +1 -1
  343. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/conversion.hpp +34 -0
  344. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/custom_time_zone.hpp +169 -0
  345. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/date_duration_operators.hpp +115 -0
  346. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/dst_transition_day_rules.hpp +77 -0
  347. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +528 -0
  348. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time.hpp +24 -0
  349. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time_io.hpp +184 -0
  350. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time_types.hpp +52 -0
  351. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/posix_time_zone.hpp +474 -0
  352. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/tz_database.hpp +32 -0
  353. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time_adjustor.hpp +218 -0
  354. data/src/cxx_supportlib/vendor-modified/boost/date_time/local_timezone_defs.hpp +193 -0
  355. data/src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp +1 -1
  356. data/src/cxx_supportlib/vendor-modified/boost/date_time/microsec_time_clock.hpp +2 -2
  357. data/src/cxx_supportlib/vendor-modified/boost/date_time/parse_format_base.hpp +1 -1
  358. data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +1 -1
  359. data/src/cxx_supportlib/vendor-modified/boost/date_time/period_formatter.hpp +1 -1
  360. data/src/cxx_supportlib/vendor-modified/boost/date_time/period_parser.hpp +1 -1
  361. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +9 -1
  362. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +1 -1
  363. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time.hpp +1 -1
  364. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +1 -1
  365. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +4 -4
  366. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -4
  367. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_legacy_io.hpp +153 -0
  368. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_system.hpp +1 -1
  369. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +1 -1
  370. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters.hpp +1 -1
  371. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters_limited.hpp +212 -0
  372. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +1 -1
  373. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_period.hpp +1 -1
  374. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_serialize.hpp +201 -0
  375. data/src/cxx_supportlib/vendor-modified/boost/date_time/special_defs.hpp +1 -1
  376. data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_formatter.hpp +1 -1
  377. data/src/cxx_supportlib/vendor-modified/boost/date_time/string_convert.hpp +1 -2
  378. data/src/cxx_supportlib/vendor-modified/boost/date_time/string_parse_tree.hpp +1 -1
  379. data/src/cxx_supportlib/vendor-modified/boost/date_time/strings_from_facet.hpp +1 -3
  380. data/src/cxx_supportlib/vendor-modified/boost/date_time/time.hpp +3 -1
  381. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_clock.hpp +1 -1
  382. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_defs.hpp +1 -1
  383. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +3 -1
  384. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +3 -3
  385. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_formatting_streams.hpp +1 -1
  386. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_iterator.hpp +1 -1
  387. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +1 -1
  388. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_resolution_traits.hpp +6 -6
  389. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_counted.hpp +2 -2
  390. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_split.hpp +1 -1
  391. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +99 -0
  392. data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_names.hpp +98 -0
  393. data/src/cxx_supportlib/vendor-modified/boost/date_time/tz_db_base.hpp +396 -0
  394. data/src/cxx_supportlib/vendor-modified/boost/date_time/wrapping_int.hpp +1 -1
  395. data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +1 -1
  396. data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +139 -0
  397. data/src/cxx_supportlib/vendor-modified/boost/detail/container_fwd.hpp +1 -6
  398. data/src/cxx_supportlib/vendor-modified/boost/detail/endian.hpp +3 -118
  399. data/src/cxx_supportlib/vendor-modified/boost/detail/fenv.hpp +30 -3
  400. data/src/cxx_supportlib/vendor-modified/boost/detail/indirect_traits.hpp +0 -283
  401. data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +9 -477
  402. data/src/cxx_supportlib/vendor-modified/boost/detail/no_exceptions_support.hpp +12 -82
  403. data/src/cxx_supportlib/vendor-modified/boost/detail/reference_content.hpp +0 -21
  404. data/src/cxx_supportlib/vendor-modified/boost/detail/sp_typeinfo.hpp +8 -107
  405. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +10 -1
  406. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +8 -3
  407. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +7 -9
  408. data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +2 -2
  409. data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +16 -0
  410. data/src/cxx_supportlib/vendor-modified/boost/foreach.hpp +11 -12
  411. data/src/cxx_supportlib/vendor-modified/boost/function/detail/gen_maybe_include.pl +37 -0
  412. data/src/cxx_supportlib/vendor-modified/boost/function/function0.hpp +12 -0
  413. data/src/cxx_supportlib/vendor-modified/boost/function/function1.hpp +12 -0
  414. data/src/cxx_supportlib/vendor-modified/boost/function/function10.hpp +12 -0
  415. data/src/cxx_supportlib/vendor-modified/boost/function/function2.hpp +12 -0
  416. data/src/cxx_supportlib/vendor-modified/boost/function/function3.hpp +12 -0
  417. data/src/cxx_supportlib/vendor-modified/boost/function/function4.hpp +12 -0
  418. data/src/cxx_supportlib/vendor-modified/boost/function/function5.hpp +12 -0
  419. data/src/cxx_supportlib/vendor-modified/boost/function/function6.hpp +12 -0
  420. data/src/cxx_supportlib/vendor-modified/boost/function/function7.hpp +12 -0
  421. data/src/cxx_supportlib/vendor-modified/boost/function/function8.hpp +12 -0
  422. data/src/cxx_supportlib/vendor-modified/boost/function/function9.hpp +12 -0
  423. data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +6 -24
  424. data/src/cxx_supportlib/vendor-modified/boost/function/function_fwd.hpp +1 -2
  425. data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +35 -30
  426. data/src/cxx_supportlib/vendor-modified/boost/function/function_typeof.hpp +45 -0
  427. data/src/cxx_supportlib/vendor-modified/boost/function/gen_function_N.pl +26 -0
  428. data/src/cxx_supportlib/vendor-modified/boost/functional/hash/detail/float_functions.hpp +4 -4
  429. data/src/cxx_supportlib/vendor-modified/boost/functional/hash/detail/hash_float.hpp +22 -28
  430. data/src/cxx_supportlib/vendor-modified/boost/functional/hash/detail/limits.hpp +3 -2
  431. data/src/cxx_supportlib/vendor-modified/boost/functional/hash/extensions.hpp +5 -66
  432. data/src/cxx_supportlib/vendor-modified/boost/functional/hash/hash.hpp +77 -48
  433. data/src/cxx_supportlib/vendor-modified/boost/functional/hash/hash_fwd.hpp +3 -7
  434. data/src/cxx_supportlib/vendor-modified/boost/functional/hash_fwd.hpp +5 -1
  435. data/src/cxx_supportlib/vendor-modified/boost/get_pointer.hpp +28 -0
  436. data/src/cxx_supportlib/vendor-modified/boost/integer.hpp +25 -24
  437. data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_ct.hpp +102 -0
  438. data/src/cxx_supportlib/vendor-modified/boost/integer_fwd.hpp +23 -0
  439. data/src/cxx_supportlib/vendor-modified/boost/integer_traits.hpp +1 -6
  440. data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +47 -55
  441. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +655 -2197
  442. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set_hook.hpp +16 -22
  443. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +376 -1605
  444. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +329 -601
  445. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +982 -0
  446. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set_hook.hpp +17 -27
  447. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +2101 -0
  448. data/src/cxx_supportlib/vendor-modified/boost/intrusive/{detail/tree_algorithms.hpp → bstree_algorithms.hpp} +973 -684
  449. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +121 -66
  450. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +30 -28
  451. data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +22 -15
  452. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algo_type.hpp +50 -0
  453. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algorithm.hpp +90 -0
  454. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +48 -61
  455. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +95 -0
  456. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/assert.hpp +6 -2
  457. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +19 -24
  458. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +184 -0
  459. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +104 -8
  460. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +2 -3
  461. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_end.hpp +1 -1
  462. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +69 -0
  463. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +235 -39
  464. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +44 -0
  465. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +48 -0
  466. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +88 -0
  467. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/function_detector.hpp +8 -4
  468. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +107 -95
  469. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/get_value_traits.hpp +222 -0
  470. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/has_member_function_callable_with.hpp +279 -296
  471. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +122 -85
  472. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +186 -0
  473. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +121 -0
  474. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/is_stateful_value_traits.hpp +9 -5
  475. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +155 -0
  476. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +99 -0
  477. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +133 -0
  478. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +14 -139
  479. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +295 -0
  480. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/minimal_less_equal_header.hpp +30 -0
  481. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/minimal_pair_header.hpp +30 -0
  482. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +160 -337
  483. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +105 -0
  484. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_holder.hpp +35 -0
  485. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +130 -0
  486. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +34 -11
  487. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/pointer_element.hpp +168 -0
  488. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +22 -19
  489. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +144 -0
  490. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +50 -0
  491. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +84 -0
  492. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +124 -0
  493. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +14 -117
  494. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/std_fwd.hpp +43 -0
  495. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/to_raw_pointer.hpp +46 -0
  496. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +18 -20
  497. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +171 -0
  498. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +13 -133
  499. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +89 -0
  500. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/uncast.hpp +55 -0
  501. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +22 -6
  502. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +2006 -1615
  503. data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +450 -229
  504. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +17 -2
  505. data/src/cxx_supportlib/vendor-modified/boost/intrusive/link_mode.hpp +21 -4
  506. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +253 -282
  507. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +17 -20
  508. data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +21 -7
  509. data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +94 -648
  510. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +374 -0
  511. data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +10 -4
  512. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +16 -8
  513. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_rebind.hpp +188 -0
  514. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +97 -44
  515. data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +29 -4
  516. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +366 -1592
  517. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +297 -639
  518. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +619 -2187
  519. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +16 -22
  520. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +661 -2252
  521. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +468 -1493
  522. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +163 -594
  523. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +326 -307
  524. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +16 -21
  525. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +686 -2238
  526. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +425 -1575
  527. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +422 -703
  528. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +440 -1122
  529. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +158 -406
  530. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +558 -2257
  531. data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +14 -2
  532. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +476 -1611
  533. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +36 -27
  534. data/src/cxx_supportlib/vendor-modified/boost/iterator.hpp +3 -42
  535. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +4 -13
  536. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +0 -1
  537. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +2 -5
  538. data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +15 -22
  539. data/src/cxx_supportlib/vendor-modified/boost/iterator/interoperable.hpp +8 -4
  540. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_adaptor.hpp +59 -64
  541. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_categories.hpp +77 -50
  542. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_concepts.hpp +13 -22
  543. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +318 -212
  544. data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_traits.hpp +17 -49
  545. data/src/cxx_supportlib/vendor-modified/boost/iterator/{detail/minimum_category.hpp → minimum_category.hpp} +24 -45
  546. data/src/cxx_supportlib/vendor-modified/boost/iterator/reverse_iterator.hpp +10 -5
  547. data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +17 -18
  548. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +29 -2649
  549. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +101 -0
  550. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +498 -0
  551. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +787 -0
  552. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +194 -0
  553. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +197 -0
  554. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +58 -0
  555. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +46 -0
  556. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +294 -0
  557. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +40 -0
  558. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +212 -0
  559. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/c_regex_traits.cpp +24 -11
  560. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cpp_regex_traits.cpp +3 -3
  561. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cregex.cpp +40 -40
  562. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +14 -17
  563. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +3 -3
  564. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_raw_buffer.cpp +3 -3
  565. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_traits_defaults.cpp +2 -2
  566. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/static_mutex.cpp +8 -4
  567. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wc_regex_traits.cpp +24 -11
  568. data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +11 -14
  569. data/src/cxx_supportlib/vendor-modified/boost/libs/system/src/error_code.cpp +3 -420
  570. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/future.cpp +2 -1
  571. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +3 -5
  572. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once_atomic.cpp +0 -6
  573. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +173 -77
  574. data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +83 -33
  575. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/fp_traits.hpp +11 -1
  576. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +42 -12
  577. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +196 -18
  578. data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/sign.hpp +52 -8
  579. data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +111 -13
  580. data/src/cxx_supportlib/vendor-modified/boost/math/tools/promotion.hpp +40 -8
  581. data/src/cxx_supportlib/vendor-modified/boost/math/tools/real_cast.hpp +3 -1
  582. data/src/cxx_supportlib/vendor-modified/boost/math/tools/user.hpp +8 -0
  583. data/src/cxx_supportlib/vendor-modified/boost/memory_order.hpp +9 -5
  584. data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +233 -0
  585. data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +10 -3
  586. data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +223 -54
  587. data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +201 -0
  588. data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +6 -10
  589. data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_end.hpp +2 -10
  590. data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +661 -0
  591. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +73 -0
  592. data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +468 -62
  593. data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +120 -0
  594. data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +206 -129
  595. data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +30 -0
  596. data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +14 -0
  597. data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +1078 -0
  598. data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +591 -0
  599. data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +55 -0
  600. data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +33 -19
  601. data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +237 -0
  602. data/src/cxx_supportlib/vendor-modified/boost/move/move.hpp +9 -1
  603. data/src/cxx_supportlib/vendor-modified/boost/move/traits.hpp +30 -95
  604. data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +871 -0
  605. data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +53 -98
  606. data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +317 -0
  607. data/src/cxx_supportlib/vendor-modified/boost/mpl/O1_size.hpp +3 -3
  608. data/src/cxx_supportlib/vendor-modified/boost/mpl/O1_size_fwd.hpp +3 -3
  609. data/src/cxx_supportlib/vendor-modified/boost/mpl/accumulate.hpp +3 -3
  610. data/src/cxx_supportlib/vendor-modified/boost/mpl/advance.hpp +3 -3
  611. data/src/cxx_supportlib/vendor-modified/boost/mpl/advance_fwd.hpp +3 -3
  612. data/src/cxx_supportlib/vendor-modified/boost/mpl/alias.hpp +3 -3
  613. data/src/cxx_supportlib/vendor-modified/boost/mpl/always.hpp +6 -7
  614. data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +5 -5
  615. data/src/cxx_supportlib/vendor-modified/boost/mpl/apply.hpp +3 -3
  616. data/src/cxx_supportlib/vendor-modified/boost/mpl/apply_fwd.hpp +3 -3
  617. data/src/cxx_supportlib/vendor-modified/boost/mpl/apply_wrap.hpp +3 -3
  618. data/src/cxx_supportlib/vendor-modified/boost/mpl/arg.hpp +3 -3
  619. data/src/cxx_supportlib/vendor-modified/boost/mpl/arg_fwd.hpp +3 -3
  620. data/src/cxx_supportlib/vendor-modified/boost/mpl/arithmetic.hpp +3 -3
  621. data/src/cxx_supportlib/vendor-modified/boost/mpl/as_sequence.hpp +3 -3
  622. data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +6 -5
  623. data/src/cxx_supportlib/vendor-modified/boost/mpl/at.hpp +3 -3
  624. data/src/cxx_supportlib/vendor-modified/boost/mpl/at_fwd.hpp +3 -3
  625. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/O1_size_impl.hpp +3 -3
  626. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/adl_barrier.hpp +3 -3
  627. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/advance_backward.hpp +3 -3
  628. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/advance_forward.hpp +3 -3
  629. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/apply_1st.hpp +3 -3
  630. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/arg_typedef.hpp +3 -3
  631. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/arithmetic_op.hpp +3 -3
  632. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/arity.hpp +3 -3
  633. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/arity_spec.hpp +3 -3
  634. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/at_impl.hpp +3 -3
  635. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/back_impl.hpp +3 -3
  636. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/basic_bind.hpp +3 -3
  637. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/begin_end_impl.hpp +3 -3
  638. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/clear_impl.hpp +3 -3
  639. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/common_name_wknd.hpp +3 -3
  640. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/comparison_op.hpp +3 -3
  641. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/adl.hpp +3 -3
  642. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/arrays.hpp +3 -3
  643. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bcc.hpp +1 -1
  644. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bind.hpp +3 -3
  645. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/compiler.hpp +3 -3
  646. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ctps.hpp +3 -3
  647. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dependent_nttp.hpp +3 -3
  648. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +3 -3
  649. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dtp.hpp +3 -3
  650. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/eti.hpp +3 -3
  651. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/forwarding.hpp +3 -3
  652. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/gcc.hpp +3 -3
  653. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/gpu.hpp +35 -0
  654. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/has_apply.hpp +3 -3
  655. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/has_xxx.hpp +3 -3
  656. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/integral.hpp +3 -3
  657. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/intel.hpp +3 -3
  658. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/lambda.hpp +3 -3
  659. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/msvc.hpp +3 -3
  660. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/msvc_typename.hpp +3 -3
  661. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/nttp.hpp +3 -3
  662. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/operators.hpp +4 -3
  663. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/overload_resolution.hpp +3 -3
  664. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/pp_counter.hpp +3 -3
  665. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/preprocessor.hpp +3 -3
  666. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/static_constant.hpp +3 -3
  667. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ttp.hpp +3 -3
  668. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/typeof.hpp +3 -3
  669. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/use_preprocessed.hpp +3 -3
  670. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/workaround.hpp +3 -3
  671. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/contains_impl.hpp +3 -3
  672. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/count_args.hpp +3 -3
  673. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/count_impl.hpp +3 -3
  674. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/empty_impl.hpp +3 -3
  675. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/erase_impl.hpp +3 -3
  676. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/erase_key_impl.hpp +3 -3
  677. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/filter_iter.hpp +3 -3
  678. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_impl.hpp +3 -3
  679. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_impl_body.hpp +3 -3
  680. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_op.hpp +3 -3
  681. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_pred.hpp +3 -3
  682. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/front_impl.hpp +3 -3
  683. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/full_lambda.hpp +3 -3
  684. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_apply.hpp +3 -3
  685. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_begin.hpp +3 -3
  686. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_key_impl.hpp +3 -3
  687. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_rebind.hpp +3 -3
  688. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_size.hpp +3 -3
  689. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_tag.hpp +3 -3
  690. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_type.hpp +3 -3
  691. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/include_preprocessed.hpp +3 -3
  692. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/insert_impl.hpp +3 -3
  693. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/insert_range_impl.hpp +22 -19
  694. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/inserter_algorithm.hpp +3 -3
  695. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/integral_wrapper.hpp +4 -4
  696. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/is_msvc_eti_arg.hpp +3 -3
  697. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/iter_apply.hpp +3 -3
  698. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/iter_fold_if_impl.hpp +3 -3
  699. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/iter_fold_impl.hpp +3 -3
  700. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/iter_push_front.hpp +3 -3
  701. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/joint_iter.hpp +3 -3
  702. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_arity_param.hpp +3 -3
  703. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_no_ctps.hpp +3 -3
  704. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_spec.hpp +3 -3
  705. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_support.hpp +3 -3
  706. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/largest_int.hpp +3 -3
  707. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/logical_op.hpp +3 -3
  708. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/msvc_dtw.hpp +3 -3
  709. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/msvc_eti_base.hpp +3 -3
  710. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/msvc_is_class.hpp +3 -3
  711. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/msvc_never_true.hpp +3 -3
  712. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/msvc_type.hpp +3 -3
  713. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/na.hpp +3 -3
  714. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/na_assert.hpp +3 -3
  715. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/na_fwd.hpp +3 -3
  716. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/na_spec.hpp +3 -3
  717. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/nested_type_wknd.hpp +3 -3
  718. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/nttp_decl.hpp +3 -3
  719. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/numeric_cast_utils.hpp +3 -3
  720. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/numeric_op.hpp +3 -3
  721. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/order_impl.hpp +3 -3
  722. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/overload_names.hpp +3 -3
  723. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/partition_op.hpp +3 -3
  724. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/pop_back_impl.hpp +3 -3
  725. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/pop_front_impl.hpp +3 -3
  726. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/add.hpp +3 -3
  727. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/def_params_tail.hpp +3 -3
  728. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/default_params.hpp +3 -3
  729. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/enum.hpp +3 -3
  730. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/ext_params.hpp +3 -3
  731. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/filter_params.hpp +3 -3
  732. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/is_seq.hpp +3 -3
  733. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/params.hpp +3 -3
  734. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +3 -3
  735. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/range.hpp +11 -4
  736. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/repeat.hpp +3 -3
  737. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/sub.hpp +3 -3
  738. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/token_equal.hpp +3 -3
  739. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/tuple.hpp +3 -3
  740. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/ptr_to_ref.hpp +3 -3
  741. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/push_back_impl.hpp +3 -3
  742. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/push_front_impl.hpp +3 -3
  743. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/O1_size.hpp +3 -3
  744. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/back.hpp +3 -3
  745. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/empty.hpp +3 -3
  746. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/front.hpp +3 -3
  747. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/iterator.hpp +3 -3
  748. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/size.hpp +3 -3
  749. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/range_c/tag.hpp +3 -3
  750. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/reverse_fold_impl.hpp +3 -3
  751. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/reverse_fold_impl_body.hpp +3 -3
  752. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/reverse_iter_fold_impl.hpp +3 -3
  753. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/sequence_wrapper.hpp +3 -3
  754. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/shift_op.hpp +3 -3
  755. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/single_element_iter.hpp +3 -3
  756. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/size_impl.hpp +3 -3
  757. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/sort_impl.hpp +3 -3
  758. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/static_cast.hpp +3 -3
  759. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +3 -3
  760. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity_fwd.hpp +3 -3
  761. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/test.hpp +3 -3
  762. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/test/assert.hpp +3 -3
  763. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/test/data.hpp +3 -3
  764. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/test/test_case.hpp +3 -3
  765. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/traits_lambda_spec.hpp +3 -3
  766. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/transform_iter.hpp +3 -3
  767. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/type_wrapper.hpp +3 -3
  768. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/unwrap.hpp +7 -3
  769. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/value_wknd.hpp +3 -3
  770. data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +3 -3
  771. data/src/cxx_supportlib/vendor-modified/boost/mpl/back.hpp +3 -3
  772. data/src/cxx_supportlib/vendor-modified/boost/mpl/back_fwd.hpp +3 -3
  773. data/src/cxx_supportlib/vendor-modified/boost/mpl/back_inserter.hpp +3 -3
  774. data/src/cxx_supportlib/vendor-modified/boost/mpl/base.hpp +3 -3
  775. data/src/cxx_supportlib/vendor-modified/boost/mpl/begin.hpp +3 -3
  776. data/src/cxx_supportlib/vendor-modified/boost/mpl/begin_end.hpp +3 -3
  777. data/src/cxx_supportlib/vendor-modified/boost/mpl/begin_end_fwd.hpp +3 -3
  778. data/src/cxx_supportlib/vendor-modified/boost/mpl/bind.hpp +3 -3
  779. data/src/cxx_supportlib/vendor-modified/boost/mpl/bind_fwd.hpp +3 -3
  780. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +5 -5
  781. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +5 -5
  782. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitwise.hpp +3 -3
  783. data/src/cxx_supportlib/vendor-modified/boost/mpl/bitxor.hpp +3 -3
  784. data/src/cxx_supportlib/vendor-modified/boost/mpl/bool.hpp +4 -4
  785. data/src/cxx_supportlib/vendor-modified/boost/mpl/bool_fwd.hpp +3 -3
  786. data/src/cxx_supportlib/vendor-modified/boost/mpl/clear.hpp +3 -3
  787. data/src/cxx_supportlib/vendor-modified/boost/mpl/clear_fwd.hpp +3 -3
  788. data/src/cxx_supportlib/vendor-modified/boost/mpl/comparison.hpp +3 -3
  789. data/src/cxx_supportlib/vendor-modified/boost/mpl/contains.hpp +3 -3
  790. data/src/cxx_supportlib/vendor-modified/boost/mpl/contains_fwd.hpp +3 -3
  791. data/src/cxx_supportlib/vendor-modified/boost/mpl/copy.hpp +3 -3
  792. data/src/cxx_supportlib/vendor-modified/boost/mpl/copy_if.hpp +3 -3
  793. data/src/cxx_supportlib/vendor-modified/boost/mpl/count.hpp +3 -3
  794. data/src/cxx_supportlib/vendor-modified/boost/mpl/count_fwd.hpp +3 -3
  795. data/src/cxx_supportlib/vendor-modified/boost/mpl/count_if.hpp +3 -3
  796. data/src/cxx_supportlib/vendor-modified/boost/mpl/deque.hpp +3 -3
  797. data/src/cxx_supportlib/vendor-modified/boost/mpl/deref.hpp +3 -3
  798. data/src/cxx_supportlib/vendor-modified/boost/mpl/distance.hpp +3 -3
  799. data/src/cxx_supportlib/vendor-modified/boost/mpl/distance_fwd.hpp +3 -3
  800. data/src/cxx_supportlib/vendor-modified/boost/mpl/divides.hpp +3 -3
  801. data/src/cxx_supportlib/vendor-modified/boost/mpl/empty.hpp +3 -3
  802. data/src/cxx_supportlib/vendor-modified/boost/mpl/empty_base.hpp +13 -9
  803. data/src/cxx_supportlib/vendor-modified/boost/mpl/empty_fwd.hpp +3 -3
  804. data/src/cxx_supportlib/vendor-modified/boost/mpl/empty_sequence.hpp +5 -4
  805. data/src/cxx_supportlib/vendor-modified/boost/mpl/end.hpp +3 -3
  806. data/src/cxx_supportlib/vendor-modified/boost/mpl/equal.hpp +3 -3
  807. data/src/cxx_supportlib/vendor-modified/boost/mpl/equal_to.hpp +3 -3
  808. data/src/cxx_supportlib/vendor-modified/boost/mpl/erase.hpp +3 -3
  809. data/src/cxx_supportlib/vendor-modified/boost/mpl/erase_fwd.hpp +3 -3
  810. data/src/cxx_supportlib/vendor-modified/boost/mpl/erase_key.hpp +3 -3
  811. data/src/cxx_supportlib/vendor-modified/boost/mpl/erase_key_fwd.hpp +3 -3
  812. data/src/cxx_supportlib/vendor-modified/boost/mpl/eval_if.hpp +6 -6
  813. data/src/cxx_supportlib/vendor-modified/boost/mpl/filter_view.hpp +3 -3
  814. data/src/cxx_supportlib/vendor-modified/boost/mpl/find.hpp +3 -3
  815. data/src/cxx_supportlib/vendor-modified/boost/mpl/find_if.hpp +3 -3
  816. data/src/cxx_supportlib/vendor-modified/boost/mpl/fold.hpp +3 -3
  817. data/src/cxx_supportlib/vendor-modified/boost/mpl/for_each.hpp +11 -4
  818. data/src/cxx_supportlib/vendor-modified/boost/mpl/front.hpp +3 -3
  819. data/src/cxx_supportlib/vendor-modified/boost/mpl/front_fwd.hpp +3 -3
  820. data/src/cxx_supportlib/vendor-modified/boost/mpl/front_inserter.hpp +3 -3
  821. data/src/cxx_supportlib/vendor-modified/boost/mpl/greater.hpp +3 -3
  822. data/src/cxx_supportlib/vendor-modified/boost/mpl/greater_equal.hpp +3 -3
  823. data/src/cxx_supportlib/vendor-modified/boost/mpl/has_key.hpp +3 -3
  824. data/src/cxx_supportlib/vendor-modified/boost/mpl/has_key_fwd.hpp +3 -3
  825. data/src/cxx_supportlib/vendor-modified/boost/mpl/has_xxx.hpp +12 -5
  826. data/src/cxx_supportlib/vendor-modified/boost/mpl/identity.hpp +3 -3
  827. data/src/cxx_supportlib/vendor-modified/boost/mpl/if.hpp +3 -3
  828. data/src/cxx_supportlib/vendor-modified/boost/mpl/index_if.hpp +3 -3
  829. data/src/cxx_supportlib/vendor-modified/boost/mpl/index_of.hpp +3 -3
  830. data/src/cxx_supportlib/vendor-modified/boost/mpl/inherit.hpp +3 -3
  831. data/src/cxx_supportlib/vendor-modified/boost/mpl/inherit_linearly.hpp +3 -3
  832. data/src/cxx_supportlib/vendor-modified/boost/mpl/insert.hpp +3 -3
  833. data/src/cxx_supportlib/vendor-modified/boost/mpl/insert_fwd.hpp +3 -3
  834. data/src/cxx_supportlib/vendor-modified/boost/mpl/insert_range.hpp +3 -3
  835. data/src/cxx_supportlib/vendor-modified/boost/mpl/insert_range_fwd.hpp +3 -3
  836. data/src/cxx_supportlib/vendor-modified/boost/mpl/inserter.hpp +3 -3
  837. data/src/cxx_supportlib/vendor-modified/boost/mpl/int.hpp +3 -3
  838. data/src/cxx_supportlib/vendor-modified/boost/mpl/int_fwd.hpp +3 -3
  839. data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c.hpp +3 -3
  840. data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c_fwd.hpp +3 -3
  841. data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c_tag.hpp +3 -3
  842. data/src/cxx_supportlib/vendor-modified/boost/mpl/is_placeholder.hpp +3 -3
  843. data/src/cxx_supportlib/vendor-modified/boost/mpl/is_sequence.hpp +3 -3
  844. data/src/cxx_supportlib/vendor-modified/boost/mpl/iter_fold.hpp +3 -3
  845. data/src/cxx_supportlib/vendor-modified/boost/mpl/iter_fold_if.hpp +3 -3
  846. data/src/cxx_supportlib/vendor-modified/boost/mpl/iterator_category.hpp +3 -3
  847. data/src/cxx_supportlib/vendor-modified/boost/mpl/iterator_range.hpp +3 -3
  848. data/src/cxx_supportlib/vendor-modified/boost/mpl/iterator_tags.hpp +3 -3
  849. data/src/cxx_supportlib/vendor-modified/boost/mpl/joint_view.hpp +3 -3
  850. data/src/cxx_supportlib/vendor-modified/boost/mpl/key_type.hpp +3 -3
  851. data/src/cxx_supportlib/vendor-modified/boost/mpl/key_type_fwd.hpp +3 -3
  852. data/src/cxx_supportlib/vendor-modified/boost/mpl/lambda.hpp +3 -3
  853. data/src/cxx_supportlib/vendor-modified/boost/mpl/lambda_fwd.hpp +3 -3
  854. data/src/cxx_supportlib/vendor-modified/boost/mpl/less.hpp +3 -3
  855. data/src/cxx_supportlib/vendor-modified/boost/mpl/less_equal.hpp +3 -3
  856. data/src/cxx_supportlib/vendor-modified/boost/mpl/limits/arity.hpp +3 -3
  857. data/src/cxx_supportlib/vendor-modified/boost/mpl/limits/list.hpp +3 -3
  858. data/src/cxx_supportlib/vendor-modified/boost/mpl/limits/map.hpp +3 -3
  859. data/src/cxx_supportlib/vendor-modified/boost/mpl/limits/set.hpp +3 -3
  860. data/src/cxx_supportlib/vendor-modified/boost/mpl/limits/unrolling.hpp +3 -3
  861. data/src/cxx_supportlib/vendor-modified/boost/mpl/limits/vector.hpp +3 -3
  862. data/src/cxx_supportlib/vendor-modified/boost/mpl/list.hpp +3 -3
  863. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/O1_size.hpp +3 -3
  864. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/begin_end.hpp +3 -3
  865. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/clear.hpp +3 -3
  866. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/empty.hpp +3 -3
  867. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/front.hpp +3 -3
  868. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/include_preprocessed.hpp +3 -3
  869. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/item.hpp +3 -3
  870. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/iterator.hpp +3 -3
  871. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/numbered.hpp +3 -3
  872. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/numbered_c.hpp +3 -3
  873. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/pop_front.hpp +3 -3
  874. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/push_back.hpp +3 -3
  875. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/push_front.hpp +3 -3
  876. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/size.hpp +3 -3
  877. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/aux_/tag.hpp +3 -3
  878. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list0.hpp +3 -3
  879. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list0_c.hpp +3 -3
  880. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list10.hpp +3 -3
  881. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list10_c.hpp +3 -3
  882. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list20.hpp +3 -3
  883. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list20_c.hpp +3 -3
  884. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list30.hpp +3 -3
  885. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list30_c.hpp +3 -3
  886. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list40.hpp +3 -3
  887. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list40_c.hpp +3 -3
  888. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list50.hpp +3 -3
  889. data/src/cxx_supportlib/vendor-modified/boost/mpl/list/list50_c.hpp +3 -3
  890. data/src/cxx_supportlib/vendor-modified/boost/mpl/list_c.hpp +3 -3
  891. data/src/cxx_supportlib/vendor-modified/boost/mpl/logical.hpp +3 -3
  892. data/src/cxx_supportlib/vendor-modified/boost/mpl/long.hpp +3 -3
  893. data/src/cxx_supportlib/vendor-modified/boost/mpl/long_fwd.hpp +3 -3
  894. data/src/cxx_supportlib/vendor-modified/boost/mpl/lower_bound.hpp +3 -3
  895. data/src/cxx_supportlib/vendor-modified/boost/mpl/map.hpp +3 -3
  896. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/at_impl.hpp +3 -3
  897. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/begin_end_impl.hpp +3 -3
  898. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/clear_impl.hpp +3 -3
  899. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/contains_impl.hpp +3 -3
  900. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/empty_impl.hpp +3 -3
  901. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/erase_impl.hpp +3 -3
  902. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/erase_key_impl.hpp +3 -3
  903. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/has_key_impl.hpp +3 -3
  904. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/include_preprocessed.hpp +3 -3
  905. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/insert_impl.hpp +3 -3
  906. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/insert_range_impl.hpp +41 -0
  907. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/item.hpp +6 -3
  908. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/iterator.hpp +3 -3
  909. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/key_type_impl.hpp +3 -3
  910. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/map0.hpp +3 -3
  911. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/numbered.hpp +3 -3
  912. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/size_impl.hpp +3 -3
  913. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/tag.hpp +3 -3
  914. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/aux_/value_type_impl.hpp +3 -3
  915. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/map0.hpp +4 -3
  916. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/map10.hpp +3 -3
  917. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/map20.hpp +3 -3
  918. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/map30.hpp +3 -3
  919. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/map40.hpp +3 -3
  920. data/src/cxx_supportlib/vendor-modified/boost/mpl/map/map50.hpp +3 -3
  921. data/src/cxx_supportlib/vendor-modified/boost/mpl/math/fixed_c.hpp +3 -3
  922. data/src/cxx_supportlib/vendor-modified/boost/mpl/math/is_even.hpp +3 -3
  923. data/src/cxx_supportlib/vendor-modified/boost/mpl/math/rational_c.hpp +3 -3
  924. data/src/cxx_supportlib/vendor-modified/boost/mpl/max.hpp +3 -3
  925. data/src/cxx_supportlib/vendor-modified/boost/mpl/max_element.hpp +3 -3
  926. data/src/cxx_supportlib/vendor-modified/boost/mpl/min.hpp +3 -3
  927. data/src/cxx_supportlib/vendor-modified/boost/mpl/min_element.hpp +3 -3
  928. data/src/cxx_supportlib/vendor-modified/boost/mpl/min_max.hpp +3 -3
  929. data/src/cxx_supportlib/vendor-modified/boost/mpl/minus.hpp +3 -3
  930. data/src/cxx_supportlib/vendor-modified/boost/mpl/modulus.hpp +3 -3
  931. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiplies.hpp +3 -3
  932. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiset/aux_/count_impl.hpp +3 -3
  933. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiset/aux_/insert_impl.hpp +3 -3
  934. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiset/aux_/item.hpp +3 -3
  935. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiset/aux_/multiset0.hpp +3 -3
  936. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiset/aux_/tag.hpp +3 -3
  937. data/src/cxx_supportlib/vendor-modified/boost/mpl/multiset/multiset0.hpp +3 -3
  938. data/src/cxx_supportlib/vendor-modified/boost/mpl/negate.hpp +3 -3
  939. data/src/cxx_supportlib/vendor-modified/boost/mpl/next.hpp +3 -3
  940. data/src/cxx_supportlib/vendor-modified/boost/mpl/next_prior.hpp +3 -3
  941. data/src/cxx_supportlib/vendor-modified/boost/mpl/not.hpp +3 -3
  942. data/src/cxx_supportlib/vendor-modified/boost/mpl/not_equal_to.hpp +3 -3
  943. data/src/cxx_supportlib/vendor-modified/boost/mpl/numeric_cast.hpp +3 -3
  944. data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +5 -5
  945. data/src/cxx_supportlib/vendor-modified/boost/mpl/order.hpp +3 -3
  946. data/src/cxx_supportlib/vendor-modified/boost/mpl/order_fwd.hpp +3 -3
  947. data/src/cxx_supportlib/vendor-modified/boost/mpl/pair.hpp +3 -3
  948. data/src/cxx_supportlib/vendor-modified/boost/mpl/pair_view.hpp +3 -3
  949. data/src/cxx_supportlib/vendor-modified/boost/mpl/partition.hpp +3 -3
  950. data/src/cxx_supportlib/vendor-modified/boost/mpl/placeholders.hpp +3 -3
  951. data/src/cxx_supportlib/vendor-modified/boost/mpl/plus.hpp +3 -3
  952. data/src/cxx_supportlib/vendor-modified/boost/mpl/pop_back.hpp +3 -3
  953. data/src/cxx_supportlib/vendor-modified/boost/mpl/pop_back_fwd.hpp +3 -3
  954. data/src/cxx_supportlib/vendor-modified/boost/mpl/pop_front.hpp +3 -3
  955. data/src/cxx_supportlib/vendor-modified/boost/mpl/pop_front_fwd.hpp +3 -3
  956. data/src/cxx_supportlib/vendor-modified/boost/mpl/print.hpp +7 -6
  957. data/src/cxx_supportlib/vendor-modified/boost/mpl/prior.hpp +3 -3
  958. data/src/cxx_supportlib/vendor-modified/boost/mpl/protect.hpp +3 -3
  959. data/src/cxx_supportlib/vendor-modified/boost/mpl/push_back.hpp +3 -3
  960. data/src/cxx_supportlib/vendor-modified/boost/mpl/push_back_fwd.hpp +3 -3
  961. data/src/cxx_supportlib/vendor-modified/boost/mpl/push_front.hpp +3 -3
  962. data/src/cxx_supportlib/vendor-modified/boost/mpl/push_front_fwd.hpp +3 -3
  963. data/src/cxx_supportlib/vendor-modified/boost/mpl/quote.hpp +3 -3
  964. data/src/cxx_supportlib/vendor-modified/boost/mpl/range_c.hpp +3 -3
  965. data/src/cxx_supportlib/vendor-modified/boost/mpl/remove.hpp +3 -3
  966. data/src/cxx_supportlib/vendor-modified/boost/mpl/remove_if.hpp +3 -3
  967. data/src/cxx_supportlib/vendor-modified/boost/mpl/replace.hpp +3 -3
  968. data/src/cxx_supportlib/vendor-modified/boost/mpl/replace_if.hpp +3 -3
  969. data/src/cxx_supportlib/vendor-modified/boost/mpl/reverse.hpp +3 -3
  970. data/src/cxx_supportlib/vendor-modified/boost/mpl/reverse_fold.hpp +3 -3
  971. data/src/cxx_supportlib/vendor-modified/boost/mpl/reverse_iter_fold.hpp +3 -3
  972. data/src/cxx_supportlib/vendor-modified/boost/mpl/same_as.hpp +3 -3
  973. data/src/cxx_supportlib/vendor-modified/boost/mpl/sequence_tag.hpp +3 -3
  974. data/src/cxx_supportlib/vendor-modified/boost/mpl/sequence_tag_fwd.hpp +3 -3
  975. data/src/cxx_supportlib/vendor-modified/boost/mpl/set.hpp +3 -3
  976. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/at_impl.hpp +3 -3
  977. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/begin_end_impl.hpp +3 -3
  978. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/clear_impl.hpp +3 -3
  979. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/empty_impl.hpp +3 -3
  980. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/erase_impl.hpp +3 -3
  981. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/erase_key_impl.hpp +3 -3
  982. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/has_key_impl.hpp +3 -3
  983. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/include_preprocessed.hpp +3 -3
  984. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/insert_impl.hpp +3 -3
  985. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/insert_range_impl.hpp +41 -0
  986. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/item.hpp +8 -6
  987. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/iterator.hpp +3 -3
  988. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/key_type_impl.hpp +3 -3
  989. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/numbered.hpp +3 -3
  990. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/numbered_c.hpp +3 -3
  991. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/set0.hpp +3 -3
  992. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/size_impl.hpp +3 -3
  993. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/tag.hpp +3 -3
  994. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/aux_/value_type_impl.hpp +3 -3
  995. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set0.hpp +4 -3
  996. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set0_c.hpp +3 -3
  997. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set10.hpp +3 -3
  998. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set10_c.hpp +3 -3
  999. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set20.hpp +3 -3
  1000. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set20_c.hpp +3 -3
  1001. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set30.hpp +3 -3
  1002. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set30_c.hpp +3 -3
  1003. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set40.hpp +3 -3
  1004. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set40_c.hpp +3 -3
  1005. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set50.hpp +3 -3
  1006. data/src/cxx_supportlib/vendor-modified/boost/mpl/set/set50_c.hpp +3 -3
  1007. data/src/cxx_supportlib/vendor-modified/boost/mpl/set_c.hpp +3 -3
  1008. data/src/cxx_supportlib/vendor-modified/boost/mpl/shift_left.hpp +3 -3
  1009. data/src/cxx_supportlib/vendor-modified/boost/mpl/shift_right.hpp +3 -3
  1010. data/src/cxx_supportlib/vendor-modified/boost/mpl/single_view.hpp +3 -3
  1011. data/src/cxx_supportlib/vendor-modified/boost/mpl/size.hpp +3 -3
  1012. data/src/cxx_supportlib/vendor-modified/boost/mpl/size_fwd.hpp +3 -3
  1013. data/src/cxx_supportlib/vendor-modified/boost/mpl/size_t.hpp +3 -3
  1014. data/src/cxx_supportlib/vendor-modified/boost/mpl/size_t_fwd.hpp +3 -3
  1015. data/src/cxx_supportlib/vendor-modified/boost/mpl/sizeof.hpp +3 -3
  1016. data/src/cxx_supportlib/vendor-modified/boost/mpl/sort.hpp +3 -3
  1017. data/src/cxx_supportlib/vendor-modified/boost/mpl/stable_partition.hpp +3 -3
  1018. data/src/cxx_supportlib/vendor-modified/boost/mpl/string.hpp +2 -2
  1019. data/src/cxx_supportlib/vendor-modified/boost/mpl/switch.hpp +3 -3
  1020. data/src/cxx_supportlib/vendor-modified/boost/mpl/tag.hpp +3 -3
  1021. data/src/cxx_supportlib/vendor-modified/boost/mpl/times.hpp +3 -3
  1022. data/src/cxx_supportlib/vendor-modified/boost/mpl/transform.hpp +3 -3
  1023. data/src/cxx_supportlib/vendor-modified/boost/mpl/transform_view.hpp +3 -3
  1024. data/src/cxx_supportlib/vendor-modified/boost/mpl/unique.hpp +3 -3
  1025. data/src/cxx_supportlib/vendor-modified/boost/mpl/unpack_args.hpp +3 -3
  1026. data/src/cxx_supportlib/vendor-modified/boost/mpl/upper_bound.hpp +3 -3
  1027. data/src/cxx_supportlib/vendor-modified/boost/mpl/value_type.hpp +3 -3
  1028. data/src/cxx_supportlib/vendor-modified/boost/mpl/value_type_fwd.hpp +3 -3
  1029. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector.hpp +3 -3
  1030. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/O1_size.hpp +3 -3
  1031. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/at.hpp +3 -3
  1032. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/back.hpp +3 -3
  1033. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/begin_end.hpp +3 -3
  1034. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/clear.hpp +3 -3
  1035. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/empty.hpp +3 -3
  1036. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/front.hpp +3 -3
  1037. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/include_preprocessed.hpp +3 -3
  1038. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/item.hpp +3 -3
  1039. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/iterator.hpp +3 -3
  1040. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/numbered.hpp +3 -3
  1041. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/numbered_c.hpp +3 -3
  1042. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/pop_back.hpp +3 -3
  1043. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/pop_front.hpp +3 -3
  1044. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/push_back.hpp +3 -3
  1045. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/push_front.hpp +3 -3
  1046. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/size.hpp +3 -3
  1047. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/tag.hpp +3 -3
  1048. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/vector0.hpp +3 -3
  1049. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector0.hpp +3 -3
  1050. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector0_c.hpp +3 -3
  1051. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector10.hpp +3 -3
  1052. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector10_c.hpp +3 -3
  1053. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector20.hpp +3 -3
  1054. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector20_c.hpp +3 -3
  1055. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector30.hpp +3 -3
  1056. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector30_c.hpp +3 -3
  1057. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector40.hpp +3 -3
  1058. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector40_c.hpp +3 -3
  1059. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector50.hpp +3 -3
  1060. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/vector50_c.hpp +3 -3
  1061. data/src/cxx_supportlib/vendor-modified/boost/mpl/vector_c.hpp +3 -3
  1062. data/src/cxx_supportlib/vendor-modified/boost/mpl/void.hpp +3 -3
  1063. data/src/cxx_supportlib/vendor-modified/boost/mpl/void_fwd.hpp +3 -3
  1064. data/src/cxx_supportlib/vendor-modified/boost/mpl/zip_view.hpp +3 -3
  1065. data/src/cxx_supportlib/vendor-modified/boost/next_prior.hpp +118 -4
  1066. data/src/cxx_supportlib/vendor-modified/boost/noncopyable.hpp +12 -43
  1067. data/src/cxx_supportlib/vendor-modified/boost/none.hpp +32 -1
  1068. data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +18 -2
  1069. data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +9 -37
  1070. data/src/cxx_supportlib/vendor-modified/boost/optional/bad_optional_access.hpp +32 -0
  1071. data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +660 -84
  1072. data/src/cxx_supportlib/vendor-modified/boost/optional/optional_fwd.hpp +3 -2
  1073. data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +94 -0
  1074. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/arg_list.hpp +4 -27
  1075. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/cast.hpp +2 -4
  1076. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parenthesized_type.hpp +0 -84
  1077. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/set.hpp +1 -2
  1078. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument.hpp +2 -2
  1079. data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +0 -6
  1080. data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +2 -28
  1081. data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword.hpp +0 -30
  1082. data/src/cxx_supportlib/vendor-modified/boost/parameter/name.hpp +5 -15
  1083. data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor.hpp +6 -107
  1084. data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +2 -28
  1085. data/src/cxx_supportlib/vendor-modified/boost/pool/detail/mutex.hpp +1 -1
  1086. data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +12 -12
  1087. data/src/cxx_supportlib/vendor-modified/boost/predef.h +24 -0
  1088. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +32 -0
  1089. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/alpha.h +59 -0
  1090. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/arm.h +70 -0
  1091. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/blackfin.h +46 -0
  1092. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/convex.h +65 -0
  1093. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ia64.h +49 -0
  1094. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/m68k.h +82 -0
  1095. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/mips.h +73 -0
  1096. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/parisc.h +64 -0
  1097. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ppc.h +72 -0
  1098. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/pyramid.h +42 -0
  1099. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/rs6k.h +56 -0
  1100. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +54 -0
  1101. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/superh.h +67 -0
  1102. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys370.h +43 -0
  1103. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys390.h +43 -0
  1104. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86.h +38 -0
  1105. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/32.h +87 -0
  1106. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/64.h +50 -0
  1107. data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/z.h +42 -0
  1108. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler.h +43 -0
  1109. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/borland.h +63 -0
  1110. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/clang.h +56 -0
  1111. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/comeau.h +61 -0
  1112. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/compaq.h +66 -0
  1113. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/diab.h +56 -0
  1114. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/digitalmars.h +56 -0
  1115. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/dignus.h +56 -0
  1116. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/edg.h +56 -0
  1117. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ekopath.h +57 -0
  1118. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc.h +68 -0
  1119. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc_xml.h +53 -0
  1120. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/greenhills.h +66 -0
  1121. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/hp_acc.h +61 -0
  1122. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/iar.h +56 -0
  1123. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ibm.h +72 -0
  1124. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +65 -0
  1125. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/kai.h +56 -0
  1126. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/llvm.h +57 -0
  1127. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metaware.h +53 -0
  1128. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metrowerks.h +77 -0
  1129. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/microtec.h +53 -0
  1130. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/mpw.h +63 -0
  1131. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/palm.h +56 -0
  1132. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/pgi.h +60 -0
  1133. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sgi_mipspro.h +66 -0
  1134. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sunpro.h +76 -0
  1135. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/tendra.h +53 -0
  1136. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +91 -0
  1137. data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/watcom.h +56 -0
  1138. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/_cassert.h +17 -0
  1139. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/_exception.h +15 -0
  1140. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/comp_detected.h +10 -0
  1141. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/endian_compat.h +26 -0
  1142. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/os_detected.h +10 -0
  1143. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/platform_detected.h +10 -0
  1144. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/test.h +17 -0
  1145. data/src/cxx_supportlib/vendor-modified/boost/predef/detail/test_def.h +71 -0
  1146. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware.h +16 -0
  1147. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +107 -0
  1148. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm.h +57 -0
  1149. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm/versions.h +32 -0
  1150. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc.h +69 -0
  1151. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc/versions.h +51 -0
  1152. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +123 -0
  1153. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86/versions.h +129 -0
  1154. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +87 -0
  1155. data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +51 -0
  1156. data/src/cxx_supportlib/vendor-modified/boost/predef/language.h +17 -0
  1157. data/src/cxx_supportlib/vendor-modified/boost/predef/language/objc.h +42 -0
  1158. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +53 -0
  1159. data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +121 -0
  1160. data/src/cxx_supportlib/vendor-modified/boost/predef/library.h +16 -0
  1161. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c.h +20 -0
  1162. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/_prefix.h +13 -0
  1163. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/gnu.h +61 -0
  1164. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/uc.h +47 -0
  1165. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/vms.h +47 -0
  1166. data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/zos.h +56 -0
  1167. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std.h +25 -0
  1168. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/_prefix.h +23 -0
  1169. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/cxx.h +46 -0
  1170. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/dinkumware.h +52 -0
  1171. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/libcomo.h +47 -0
  1172. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/modena.h +45 -0
  1173. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msl.h +53 -0
  1174. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/roguewave.h +56 -0
  1175. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/sgi.h +51 -0
  1176. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stdcpp3.h +53 -0
  1177. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stlport.h +59 -0
  1178. data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/vacpp.h +44 -0
  1179. data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +89 -0
  1180. data/src/cxx_supportlib/vendor-modified/boost/predef/os.h +33 -0
  1181. data/src/cxx_supportlib/vendor-modified/boost/predef/os/aix.h +66 -0
  1182. data/src/cxx_supportlib/vendor-modified/boost/predef/os/amigaos.h +46 -0
  1183. data/src/cxx_supportlib/vendor-modified/boost/predef/os/android.h +45 -0
  1184. data/src/cxx_supportlib/vendor-modified/boost/predef/os/beos.h +45 -0
  1185. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd.h +103 -0
  1186. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/bsdi.h +48 -0
  1187. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/dragonfly.h +50 -0
  1188. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/free.h +60 -0
  1189. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/net.h +84 -0
  1190. data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/open.h +171 -0
  1191. data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +45 -0
  1192. data/src/cxx_supportlib/vendor-modified/boost/predef/os/haiku.h +46 -0
  1193. data/src/cxx_supportlib/vendor-modified/boost/predef/os/hpux.h +47 -0
  1194. data/src/cxx_supportlib/vendor-modified/boost/predef/os/ios.h +51 -0
  1195. data/src/cxx_supportlib/vendor-modified/boost/predef/os/irix.h +46 -0
  1196. data/src/cxx_supportlib/vendor-modified/boost/predef/os/linux.h +46 -0
  1197. data/src/cxx_supportlib/vendor-modified/boost/predef/os/macos.h +65 -0
  1198. data/src/cxx_supportlib/vendor-modified/boost/predef/os/os400.h +45 -0
  1199. data/src/cxx_supportlib/vendor-modified/boost/predef/os/qnxnto.h +59 -0
  1200. data/src/cxx_supportlib/vendor-modified/boost/predef/os/solaris.h +46 -0
  1201. data/src/cxx_supportlib/vendor-modified/boost/predef/os/unix.h +76 -0
  1202. data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +52 -0
  1203. data/src/cxx_supportlib/vendor-modified/boost/predef/os/windows.h +51 -0
  1204. data/src/cxx_supportlib/vendor-modified/boost/predef/other.h +16 -0
  1205. data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +204 -0
  1206. data/src/cxx_supportlib/vendor-modified/boost/predef/platform.h +21 -0
  1207. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw.h +69 -0
  1208. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_desktop.h +45 -0
  1209. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_phone.h +43 -0
  1210. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_runtime.h +45 -0
  1211. data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_store.h +43 -0
  1212. data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +15 -0
  1213. data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +53 -0
  1214. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/dec.hpp +1 -0
  1215. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/detail/get_data.hpp +55 -0
  1216. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/push_back.hpp +3 -1
  1217. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/push_front.hpp +3 -1
  1218. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp +17 -3
  1219. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_seq.hpp +16 -3
  1220. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_tuple.hpp +12 -1
  1221. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +11 -12
  1222. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/detail/is_empty.hpp +55 -0
  1223. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/empty.hpp +2 -0
  1224. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/identity.hpp +4 -0
  1225. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty.hpp +17 -4
  1226. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_or_1.hpp +2 -1
  1227. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_variadic.hpp +57 -0
  1228. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/library.hpp +1 -0
  1229. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_array.hpp +33 -1
  1230. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_tuple.hpp +27 -4
  1231. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation.hpp +2 -0
  1232. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/detail/is_begin_parens.hpp +48 -0
  1233. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/is_begin_parens.hpp +51 -0
  1234. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/remove_parens.hpp +39 -0
  1235. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/for.hpp +19 -1
  1236. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq.hpp +1 -0
  1237. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +10 -2
  1238. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/is_empty.hpp +49 -0
  1239. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each.hpp +57 -10
  1240. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each_i.hpp +58 -10
  1241. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/replace.hpp +18 -2
  1242. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/rest_n.hpp +19 -3
  1243. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/size.hpp +1 -0
  1244. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/variadic_seq_to_seq.hpp +28 -0
  1245. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple.hpp +8 -1
  1246. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/detail/is_single_return.hpp +28 -0
  1247. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/eat.hpp +10 -1
  1248. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/elem.hpp +12 -2
  1249. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/insert.hpp +37 -0
  1250. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_back.hpp +64 -0
  1251. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_front.hpp +65 -0
  1252. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_back.hpp +31 -0
  1253. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_front.hpp +32 -0
  1254. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/rem.hpp +18 -3
  1255. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/remove.hpp +64 -0
  1256. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/replace.hpp +37 -0
  1257. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/reverse.hpp +4 -1
  1258. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_array.hpp +3 -1
  1259. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_list.hpp +3 -1
  1260. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_seq.hpp +6 -1
  1261. data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/is_single_return.hpp +28 -0
  1262. data/src/cxx_supportlib/vendor-modified/boost/range/algorithm/equal.hpp +5 -3
  1263. data/src/cxx_supportlib/vendor-modified/boost/range/as_literal.hpp +1 -1
  1264. data/src/cxx_supportlib/vendor-modified/boost/range/begin.hpp +5 -13
  1265. data/src/cxx_supportlib/vendor-modified/boost/range/concepts.hpp +35 -15
  1266. data/src/cxx_supportlib/vendor-modified/boost/range/config.hpp +9 -7
  1267. data/src/cxx_supportlib/vendor-modified/boost/range/const_iterator.hpp +39 -30
  1268. data/src/cxx_supportlib/vendor-modified/boost/range/detail/common.hpp +4 -3
  1269. data/src/cxx_supportlib/vendor-modified/boost/range/detail/extract_optional_type.hpp +21 -25
  1270. data/src/cxx_supportlib/vendor-modified/boost/range/detail/has_member_size.hpp +66 -0
  1271. data/src/cxx_supportlib/vendor-modified/boost/range/detail/implementation_help.hpp +11 -0
  1272. data/src/cxx_supportlib/vendor-modified/boost/range/detail/msvc_has_iterator_workaround.hpp +132 -0
  1273. data/src/cxx_supportlib/vendor-modified/boost/range/difference_type.hpp +20 -2
  1274. data/src/cxx_supportlib/vendor-modified/boost/range/distance.hpp +1 -1
  1275. data/src/cxx_supportlib/vendor-modified/boost/range/empty.hpp +1 -1
  1276. data/src/cxx_supportlib/vendor-modified/boost/range/end.hpp +5 -13
  1277. data/src/cxx_supportlib/vendor-modified/boost/range/functions.hpp +1 -1
  1278. data/src/cxx_supportlib/vendor-modified/boost/range/has_range_iterator.hpp +83 -0
  1279. data/src/cxx_supportlib/vendor-modified/boost/range/iterator.hpp +36 -34
  1280. data/src/cxx_supportlib/vendor-modified/boost/range/iterator_range_core.hpp +481 -251
  1281. data/src/cxx_supportlib/vendor-modified/boost/range/mutable_iterator.hpp +41 -29
  1282. data/src/cxx_supportlib/vendor-modified/boost/range/range_fwd.hpp +63 -0
  1283. data/src/cxx_supportlib/vendor-modified/boost/range/rbegin.hpp +1 -1
  1284. data/src/cxx_supportlib/vendor-modified/boost/range/rend.hpp +1 -1
  1285. data/src/cxx_supportlib/vendor-modified/boost/range/reverse_iterator.hpp +5 -3
  1286. data/src/cxx_supportlib/vendor-modified/boost/range/size.hpp +30 -6
  1287. data/src/cxx_supportlib/vendor-modified/boost/range/size_type.hpp +18 -12
  1288. data/src/cxx_supportlib/vendor-modified/boost/range/value_type.hpp +1 -5
  1289. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/abs.hpp +4 -4
  1290. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/gcd.hpp +1 -1
  1291. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/lcm.hpp +1 -1
  1292. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/sign.hpp +4 -4
  1293. data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/overflow_helpers.hpp +1 -1
  1294. data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio.hpp +63 -3
  1295. data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_fwd.hpp +25 -0
  1296. data/src/cxx_supportlib/vendor-modified/boost/ref.hpp +12 -184
  1297. data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +51 -9
  1298. data/src/cxx_supportlib/vendor-modified/boost/regex/mfc.hpp +30 -34
  1299. data/src/cxx_supportlib/vendor-modified/boost/regex/pattern_except.hpp +2 -2
  1300. data/src/cxx_supportlib/vendor-modified/boost/regex/pending/static_mutex.hpp +10 -7
  1301. data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +11 -5
  1302. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex.hpp +18 -19
  1303. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +25 -38
  1304. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +211 -14
  1305. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +161 -106
  1306. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cregex.hpp +7 -7
  1307. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +9 -9
  1308. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +24 -21
  1309. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/iterator_traits.hpp +3 -3
  1310. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +1 -1
  1311. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_results.hpp +24 -19
  1312. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +1 -1
  1313. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +46 -20
  1314. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +38 -14
  1315. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +206 -31
  1316. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +122 -16
  1317. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/primary_transform.hpp +2 -2
  1318. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/protected_call.hpp +1 -1
  1319. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +15 -15
  1320. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_grep.hpp +1 -1
  1321. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_iterator.hpp +3 -3
  1322. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_match.hpp +1 -1
  1323. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_raw_buffer.hpp +2 -2
  1324. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_replace.hpp +4 -4
  1325. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_search.hpp +2 -2
  1326. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_split.hpp +5 -5
  1327. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_token_iterator.hpp +6 -15
  1328. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +10 -10
  1329. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +10 -4
  1330. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +5 -4
  1331. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/states.hpp +23 -3
  1332. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/sub_match.hpp +75 -71
  1333. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_iterator.hpp +2 -2
  1334. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_token_iterator.hpp +6 -15
  1335. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +43 -41
  1336. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +103 -172
  1337. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_allocator.hpp +318 -0
  1338. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_count_impl.hpp +67 -0
  1339. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_traits.hpp +16 -9
  1340. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_utility.hpp +106 -70
  1341. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +36 -59
  1342. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_nt.hpp +59 -0
  1343. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/{atomic_count_pthreads.hpp → atomic_count_pt.hpp} +5 -4
  1344. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_spin.hpp +62 -0
  1345. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_std_atomic.hpp +60 -0
  1346. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/operator_bool.hpp +2 -1
  1347. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +116 -10
  1348. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +1 -0
  1349. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +15 -1
  1350. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +140 -0
  1351. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_pt.hpp +16 -15
  1352. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +137 -0
  1353. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +21 -4
  1354. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_disable_deprecated.hpp +40 -0
  1355. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_forward.hpp +13 -0
  1356. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_if_array.hpp +8 -5
  1357. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_nullptr_t.hpp +1 -1
  1358. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +10 -1
  1359. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +1 -0
  1360. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_pool.hpp +2 -2
  1361. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +83 -0
  1362. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +30 -2
  1363. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +10 -0
  1364. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +12 -0
  1365. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +80 -169
  1366. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +121 -118
  1367. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +10 -0
  1368. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +8 -6
  1369. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +54 -12
  1370. data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +4 -19
  1371. data/src/cxx_supportlib/vendor-modified/boost/swap.hpp +11 -6
  1372. data/src/cxx_supportlib/vendor-modified/boost/system/config.hpp +1 -0
  1373. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.ipp +467 -0
  1374. data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +1 -2
  1375. data/src/cxx_supportlib/vendor-modified/boost/thread/barrier.hpp +222 -36
  1376. data/src/cxx_supportlib/vendor-modified/boost/thread/caller_context.hpp +59 -0
  1377. data/src/cxx_supportlib/vendor-modified/boost/thread/completion_latch.hpp +4 -11
  1378. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_adaptor.hpp +209 -0
  1379. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_base.hpp +202 -0
  1380. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_views.hpp +165 -0
  1381. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_deque_base.hpp +223 -0
  1382. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_queue_base.hpp +223 -0
  1383. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_adaptor.hpp +209 -0
  1384. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_base.hpp +202 -0
  1385. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_op_status.hpp +46 -0
  1386. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_views.hpp +155 -0
  1387. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_bounded_queue.hpp +725 -0
  1388. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_deque.hpp +327 -0
  1389. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_priority_queue.hpp +369 -0
  1390. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_queue.hpp +335 -0
  1391. data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +466 -0
  1392. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/deque.hpp +45 -0
  1393. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/devector.hpp +102 -0
  1394. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/functional.hpp +49 -0
  1395. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/list.hpp +35 -0
  1396. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory.hpp +61 -0
  1397. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_arg.hpp +41 -0
  1398. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_traits.hpp +35 -0
  1399. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/config.hpp +16 -0
  1400. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/default_delete.hpp +41 -0
  1401. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/pointer_traits.hpp +35 -0
  1402. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/scoped_allocator.hpp +35 -0
  1403. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/shared_ptr.hpp +42 -0
  1404. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/unique_ptr.hpp +28 -0
  1405. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +45 -0
  1406. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/tuple.hpp +49 -0
  1407. data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/vector.hpp +35 -0
  1408. data/src/cxx_supportlib/vendor-modified/boost/thread/cv_status.hpp +1 -1
  1409. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +32 -4
  1410. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/counter.hpp +17 -4
  1411. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp +2 -1
  1412. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/function_wrapper.hpp +93 -0
  1413. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +373 -120
  1414. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoker.hpp +762 -0
  1415. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/is_convertible.hpp +4 -3
  1416. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/memory.hpp +11 -119
  1417. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/move.hpp +116 -4
  1418. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/nullary_function.hpp +234 -0
  1419. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +41 -16
  1420. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread_group.hpp +4 -3
  1421. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/variadic_footer.hpp +10 -0
  1422. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/variadic_header.hpp +19 -0
  1423. data/src/cxx_supportlib/vendor-modified/boost/thread/exceptional_ptr.hpp +44 -0
  1424. data/src/cxx_supportlib/vendor-modified/boost/thread/exceptions.hpp +4 -4
  1425. data/src/cxx_supportlib/vendor-modified/boost/thread/executor.hpp +15 -0
  1426. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/basic_thread_pool.hpp +318 -0
  1427. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/detail/priority_executor_base.hpp +77 -0
  1428. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/detail/scheduled_executor_base.hpp +66 -0
  1429. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +148 -0
  1430. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor_adaptor.hpp +136 -0
  1431. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +213 -0
  1432. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/inline_executor.hpp +171 -0
  1433. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +205 -0
  1434. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduled_thread_pool.hpp +48 -0
  1435. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduler.hpp +271 -0
  1436. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduling_adaptor.hpp +51 -0
  1437. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor.hpp +216 -0
  1438. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor_cont.hpp +170 -0
  1439. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/thread_executor.hpp +157 -0
  1440. data/src/cxx_supportlib/vendor-modified/boost/thread/executors/work.hpp +30 -0
  1441. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/config/inline_namespace.hpp +23 -0
  1442. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/exception_list.hpp +16 -0
  1443. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v1/exception_list.hpp +70 -0
  1444. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v1/inline_namespace.hpp +28 -0
  1445. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v2/inline_namespace.hpp +29 -0
  1446. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v2/task_region.hpp +316 -0
  1447. data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/task_region.hpp +16 -0
  1448. data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +2 -2
  1449. data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +3327 -1705
  1450. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/future_error.hpp +98 -0
  1451. data/src/cxx_supportlib/vendor-modified/boost/thread/{future_error_code.hpp → futures/future_error_code.hpp} +7 -7
  1452. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/future_status.hpp +30 -0
  1453. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/is_future_type.hpp +21 -0
  1454. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/launch.hpp +31 -0
  1455. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_all.hpp +74 -0
  1456. data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +161 -0
  1457. data/src/cxx_supportlib/vendor-modified/boost/thread/latch.hpp +43 -15
  1458. data/src/cxx_supportlib/vendor-modified/boost/thread/lock_types.hpp +45 -41
  1459. data/src/cxx_supportlib/vendor-modified/boost/thread/lockable_adapter.hpp +28 -28
  1460. data/src/cxx_supportlib/vendor-modified/boost/thread/once.hpp +1 -1
  1461. data/src/cxx_supportlib/vendor-modified/boost/thread/ostream_buffer.hpp +45 -0
  1462. data/src/cxx_supportlib/vendor-modified/boost/thread/poly_lockable.hpp +2 -2
  1463. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +101 -56
  1464. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +141 -47
  1465. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/mutex.hpp +20 -13
  1466. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once.hpp +4 -4
  1467. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once_atomic.hpp +4 -4
  1468. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/recursive_mutex.hpp +11 -8
  1469. data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +39 -10
  1470. data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +15 -11
  1471. data/src/cxx_supportlib/vendor-modified/boost/thread/shared_mutex.hpp +1 -0
  1472. data/src/cxx_supportlib/vendor-modified/boost/thread/sync_bounded_queue.hpp +2 -580
  1473. data/src/cxx_supportlib/vendor-modified/boost/thread/sync_queue.hpp +2 -502
  1474. data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +78 -11
  1475. data/src/cxx_supportlib/vendor-modified/boost/thread/testable_mutex.hpp +4 -0
  1476. data/src/cxx_supportlib/vendor-modified/boost/thread/thread_pool.hpp +15 -0
  1477. data/src/cxx_supportlib/vendor-modified/boost/thread/tss.hpp +8 -8
  1478. data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +202 -0
  1479. data/src/cxx_supportlib/vendor-modified/boost/thread/v2/shared_mutex.hpp +6 -6
  1480. data/src/cxx_supportlib/vendor-modified/boost/thread/v2/thread.hpp +73 -1
  1481. data/src/cxx_supportlib/vendor-modified/boost/thread/with_lock_guard.hpp +234 -0
  1482. data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +7 -5
  1483. data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +3 -17
  1484. data/src/cxx_supportlib/vendor-modified/boost/token_iterator.hpp +14 -14
  1485. data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +14 -5
  1486. data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +1 -24
  1487. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_const.hpp +9 -10
  1488. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_cv.hpp +2 -9
  1489. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_lvalue_reference.hpp +8 -7
  1490. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_pointer.hpp +6 -17
  1491. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_reference.hpp +14 -62
  1492. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_rvalue_reference.hpp +5 -7
  1493. data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_volatile.hpp +2 -9
  1494. data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +134 -9
  1495. data/src/cxx_supportlib/vendor-modified/boost/type_traits/alignment_of.hpp +9 -18
  1496. data/src/cxx_supportlib/vendor-modified/boost/type_traits/{detail/wrap.hpp → alignment_traits.hpp} +7 -10
  1497. data/src/cxx_supportlib/vendor-modified/boost/type_traits/arithmetic_traits.hpp +20 -0
  1498. data/src/cxx_supportlib/vendor-modified/boost/type_traits/array_traits.hpp +15 -0
  1499. data/src/cxx_supportlib/vendor-modified/boost/type_traits/broken_compiler_spec.hpp +9 -105
  1500. data/src/cxx_supportlib/vendor-modified/boost/type_traits/common_type.hpp +118 -131
  1501. data/src/cxx_supportlib/vendor-modified/boost/type_traits/conditional.hpp +20 -0
  1502. data/src/cxx_supportlib/vendor-modified/boost/type_traits/config.hpp +5 -60
  1503. data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_cv.hpp +34 -0
  1504. data/src/cxx_supportlib/vendor-modified/boost/type_traits/decay.hpp +12 -13
  1505. data/src/cxx_supportlib/vendor-modified/boost/type_traits/declval.hpp +44 -0
  1506. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/bool_trait_def.hpp +9 -26
  1507. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/bool_trait_undef.hpp +2 -2
  1508. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_arithmetic_type.hpp +212 -0
  1509. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_type_impl.hpp +107 -0
  1510. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/composite_member_pointer_type.hpp +113 -0
  1511. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/composite_pointer_type.hpp +153 -0
  1512. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +72 -0
  1513. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_binary_operator.hpp +12 -19
  1514. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_postfix_operator.hpp +12 -19
  1515. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_prefix_operator.hpp +14 -19
  1516. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/ice_and.hpp +7 -0
  1517. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/ice_eq.hpp +7 -0
  1518. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/ice_not.hpp +7 -0
  1519. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/ice_or.hpp +7 -0
  1520. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_helper.hpp +13 -57
  1521. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_tester.hpp +13 -218
  1522. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +13 -107
  1523. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +15 -974
  1524. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/mp_defer.hpp +56 -0
  1525. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/template_arity_spec.hpp +6 -21
  1526. data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +138 -0
  1527. data/src/cxx_supportlib/vendor-modified/boost/type_traits/floating_point_promotion.hpp +20 -0
  1528. data/src/cxx_supportlib/vendor-modified/boost/type_traits/function_traits.hpp +0 -62
  1529. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_bit_and.hpp +49 -0
  1530. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_bit_and_assign.hpp +55 -0
  1531. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_bit_or.hpp +49 -0
  1532. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_bit_or_assign.hpp +55 -0
  1533. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_bit_xor.hpp +49 -0
  1534. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_bit_xor_assign.hpp +55 -0
  1535. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_complement.hpp +32 -0
  1536. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_dereference.hpp +31 -0
  1537. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_divides.hpp +40 -0
  1538. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_divides_assign.hpp +47 -0
  1539. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_equal_to.hpp +49 -0
  1540. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_greater.hpp +49 -0
  1541. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_greater_equal.hpp +49 -0
  1542. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_left_shift.hpp +19 -19
  1543. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_left_shift_assign.hpp +55 -0
  1544. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_less.hpp +49 -0
  1545. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_less_equal.hpp +49 -0
  1546. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_logical_and.hpp +40 -0
  1547. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_logical_not.hpp +32 -0
  1548. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_logical_or.hpp +40 -0
  1549. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus.hpp +60 -0
  1550. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus_assign.hpp +65 -0
  1551. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_modulus.hpp +49 -0
  1552. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_modulus_assign.hpp +55 -0
  1553. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_multiplies.hpp +40 -0
  1554. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_multiplies_assign.hpp +47 -0
  1555. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_negate.hpp +25 -0
  1556. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_new_operator.hpp +147 -0
  1557. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_not_equal_to.hpp +49 -0
  1558. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_assign.hpp +57 -18
  1559. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_constructor.hpp +43 -24
  1560. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_copy.hpp +52 -23
  1561. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_destructor.hpp +47 -0
  1562. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_operator.hpp +51 -0
  1563. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_plus.hpp +54 -0
  1564. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_plus_assign.hpp +66 -0
  1565. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_post_decrement.hpp +44 -0
  1566. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_post_increment.hpp +44 -0
  1567. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_pre_decrement.hpp +44 -0
  1568. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_pre_increment.hpp +44 -0
  1569. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_right_shift.hpp +19 -19
  1570. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_right_shift_assign.hpp +55 -0
  1571. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_assign.hpp +23 -29
  1572. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_constructor.hpp +31 -25
  1573. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_copy.hpp +34 -36
  1574. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_destructor.hpp +21 -22
  1575. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_assign.hpp +40 -25
  1576. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_constructor.hpp +45 -25
  1577. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_unary_minus.hpp +25 -0
  1578. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_unary_plus.hpp +23 -0
  1579. data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_virtual_destructor.hpp +26 -0
  1580. data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_constant.hpp +86 -33
  1581. data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_promotion.hpp +181 -0
  1582. data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +116 -41
  1583. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_abstract.hpp +6 -10
  1584. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_arithmetic.hpp +3 -32
  1585. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +12 -60
  1586. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_assignable.hpp +76 -0
  1587. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_and_derived.hpp +9 -19
  1588. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_of.hpp +8 -20
  1589. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_of_tr1.hpp +37 -0
  1590. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_class.hpp +17 -43
  1591. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complex.hpp +24 -0
  1592. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp +2 -24
  1593. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +8 -127
  1594. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_constructible.hpp +80 -0
  1595. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_convertible.hpp +94 -98
  1596. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_copy_assignable.hpp +141 -0
  1597. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_copy_constructible.hpp +187 -0
  1598. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +64 -0
  1599. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +60 -0
  1600. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_empty.hpp +8 -117
  1601. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_enum.hpp +19 -42
  1602. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_final.hpp +30 -0
  1603. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_float.hpp +2 -9
  1604. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_floating_point.hpp +12 -9
  1605. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +9 -18
  1606. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_fundamental.hpp +2 -21
  1607. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +43 -37
  1608. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_lvalue_reference.hpp +8 -76
  1609. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +18 -34
  1610. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_object_pointer.hpp +24 -0
  1611. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_pointer.hpp +8 -79
  1612. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_assignable.hpp +32 -35
  1613. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_constructible.hpp +43 -41
  1614. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_object.hpp +7 -32
  1615. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pod.hpp +14 -101
  1616. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pointer.hpp +12 -127
  1617. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_polymorphic.hpp +122 -0
  1618. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_reference.hpp +6 -21
  1619. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_rvalue_reference.hpp +4 -8
  1620. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_same.hpp +4 -66
  1621. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_scalar.hpp +3 -31
  1622. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_signed.hpp +83 -60
  1623. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_stateless.hpp +8 -23
  1624. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_union.hpp +6 -32
  1625. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unsigned.hpp +85 -57
  1626. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +105 -0
  1627. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_void.hpp +7 -19
  1628. data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +8 -115
  1629. data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_signed.hpp +35 -57
  1630. data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_unsigned.hpp +34 -57
  1631. data/src/cxx_supportlib/vendor-modified/boost/type_traits/promote.hpp +20 -0
  1632. data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +86 -0
  1633. data/src/cxx_supportlib/vendor-modified/boost/type_traits/reference_traits.hpp +15 -0
  1634. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +35 -0
  1635. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_bounds.hpp +4 -31
  1636. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +8 -65
  1637. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +13 -57
  1638. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +35 -0
  1639. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_pointer.hpp +8 -23
  1640. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_reference.hpp +5 -21
  1641. data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +7 -61
  1642. data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_identity.hpp +22 -0
  1643. data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +101 -239
  1644. data/src/cxx_supportlib/vendor-modified/boost/typeof/dmc/typeof_impl.hpp +100 -0
  1645. data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode.hpp +61 -0
  1646. data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode_params.hpp +34 -0
  1647. data/src/cxx_supportlib/vendor-modified/boost/typeof/incr_registration_group.hpp +14 -0
  1648. data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +118 -0
  1649. data/src/cxx_supportlib/vendor-modified/boost/typeof/integral_template_param.hpp +80 -0
  1650. data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +121 -0
  1651. data/src/cxx_supportlib/vendor-modified/boost/typeof/msvc/typeof_impl.hpp +283 -0
  1652. data/src/cxx_supportlib/vendor-modified/boost/typeof/pointers_data_members.hpp +38 -0
  1653. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions.hpp +50 -0
  1654. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions_iterate.hpp +135 -0
  1655. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +62 -0
  1656. data/src/cxx_supportlib/vendor-modified/boost/typeof/register_mem_functions.hpp +32 -0
  1657. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/bitset.hpp +15 -0
  1658. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/complex.hpp +15 -0
  1659. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/deque.hpp +17 -0
  1660. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/fstream.hpp +27 -0
  1661. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/functional.hpp +55 -0
  1662. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iostream.hpp +18 -0
  1663. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/istream.hpp +21 -0
  1664. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iterator.hpp +58 -0
  1665. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/list.hpp +17 -0
  1666. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/locale.hpp +40 -0
  1667. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/map.hpp +23 -0
  1668. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/memory.hpp +17 -0
  1669. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/ostream.hpp +18 -0
  1670. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/queue.hpp +17 -0
  1671. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/set.hpp +22 -0
  1672. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/sstream.hpp +32 -0
  1673. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/stack.hpp +17 -0
  1674. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/streambuf.hpp +17 -0
  1675. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +24 -0
  1676. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/utility.hpp +15 -0
  1677. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/valarray.hpp +21 -0
  1678. data/src/cxx_supportlib/vendor-modified/boost/typeof/std/vector.hpp +17 -0
  1679. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +160 -0
  1680. data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +149 -0
  1681. data/src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp +27 -0
  1682. data/src/cxx_supportlib/vendor-modified/boost/typeof/type_template_param.hpp +37 -0
  1683. data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +186 -0
  1684. data/src/cxx_supportlib/vendor-modified/boost/typeof/unsupported.hpp +29 -0
  1685. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector.hpp +166 -0
  1686. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector100.hpp +321 -0
  1687. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector150.hpp +471 -0
  1688. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector200.hpp +621 -0
  1689. data/src/cxx_supportlib/vendor-modified/boost/typeof/vector50.hpp +171 -0
  1690. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocate.hpp +42 -34
  1691. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/buckets.hpp +108 -56
  1692. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/equivalent.hpp +30 -24
  1693. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/extract_key.hpp +21 -16
  1694. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +3 -3
  1695. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/table.hpp +45 -33
  1696. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/unique.hpp +21 -15
  1697. data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/util.hpp +8 -2
  1698. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +11 -6
  1699. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +3 -3
  1700. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +11 -6
  1701. data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +3 -3
  1702. data/src/cxx_supportlib/vendor-modified/boost/unordered_map.hpp +3 -2
  1703. data/src/cxx_supportlib/vendor-modified/boost/unordered_set.hpp +3 -2
  1704. data/src/cxx_supportlib/vendor-modified/boost/utility.hpp +21 -0
  1705. data/src/cxx_supportlib/vendor-modified/boost/utility/addressof.hpp +11 -96
  1706. data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +171 -0
  1707. data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +708 -0
  1708. data/src/cxx_supportlib/vendor-modified/boost/utility/declval.hpp +5 -41
  1709. data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_iterate.hpp +18 -5
  1710. data/src/cxx_supportlib/vendor-modified/boost/utility/empty_deleter.hpp +43 -0
  1711. data/src/cxx_supportlib/vendor-modified/boost/utility/enable_if.hpp +10 -112
  1712. data/src/cxx_supportlib/vendor-modified/boost/utility/explicit_operator_bool.hpp +17 -0
  1713. data/src/cxx_supportlib/vendor-modified/boost/utility/identity_type.hpp +46 -0
  1714. data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +2 -4
  1715. data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +25 -9
  1716. data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +536 -0
  1717. data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref_fwd.hpp +37 -0
  1718. data/src/cxx_supportlib/vendor-modified/boost/utility/swap.hpp +10 -48
  1719. data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +77 -0
  1720. data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +281 -0
  1721. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +6 -6
  1722. data/src/cxx_supportlib/vendor-modified/boost/visit_each.hpp +0 -2
  1723. data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +3 -1
  1724. data/src/nginx_module/Configuration.c +157 -6
  1725. data/src/nginx_module/Configuration.h +3 -1
  1726. data/src/nginx_module/ContentHandler.c +2 -1
  1727. data/src/nginx_module/ngx_http_passenger_module.c +27 -46
  1728. data/src/nodejs_supportlib/phusion_passenger/log_express.js +1 -1
  1729. data/src/ruby_supportlib/phusion_passenger.rb +1 -1
  1730. data/src/ruby_supportlib/phusion_passenger/rack_handler.rb +102 -0
  1731. data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +20 -3
  1732. data/src/ruby_supportlib/phusion_passenger/standalone/config_utils.rb +36 -3
  1733. data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +1 -0
  1734. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +3 -1
  1735. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/LICENSE.md +1 -1
  1736. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core.rb +7 -0
  1737. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/api.rb +28 -0
  1738. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/misc.rb +4 -0
  1739. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/spec_helper.rb +18 -0
  1740. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/transaction.rb +1 -10
  1741. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version_data.rb +4 -4
  1742. metadata +609 -62
  1743. data/src/agent/UstRouter/DataStoreId.h +0 -184
  1744. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.0 +0 -15374
  1745. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.1 +0 -15374
  1746. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.2 +0 -15374
  1747. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/requests +0 -568
  1748. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.0 +0 -3104
  1749. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.1 +0 -3104
  1750. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.2 +0 -699
  1751. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/base.hpp +0 -585
  1752. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas32strong.hpp +0 -885
  1753. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas32weak.hpp +0 -947
  1754. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas64strong.hpp +0 -443
  1755. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc-alpha.hpp +0 -368
  1756. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc-armv6plus.hpp +0 -252
  1757. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc-cas.hpp +0 -157
  1758. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc-ppc.hpp +0 -2850
  1759. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc-sparcv9.hpp +0 -1259
  1760. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc-x86.hpp +0 -1766
  1761. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/generic-cas.hpp +0 -206
  1762. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/linux-arm.hpp +0 -189
  1763. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type-classification.hpp +0 -45
  1764. data/src/cxx_supportlib/vendor-modified/boost/container/detail/algorithms.hpp +0 -84
  1765. data/src/cxx_supportlib/vendor-modified/boost/container/detail/memory_util.hpp +0 -83
  1766. data/src/cxx_supportlib/vendor-modified/boost/container/detail/preprocessor.hpp +0 -232
  1767. data/src/cxx_supportlib/vendor-modified/boost/container/detail/utilities.hpp +0 -1141
  1768. data/src/cxx_supportlib/vendor-modified/boost/detail/is_incrementable.hpp +0 -134
  1769. data/src/cxx_supportlib/vendor-modified/boost/detail/is_xxx.hpp +0 -61
  1770. data/src/cxx_supportlib/vendor-modified/boost/detail/limits.hpp +0 -449
  1771. data/src/cxx_supportlib/vendor-modified/boost/exception/detail/attribute_noreturn.hpp +0 -17
  1772. data/src/cxx_supportlib/vendor-modified/boost/indirect_reference.hpp +0 -43
  1773. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/clear_on_destructor_base.hpp +0 -36
  1774. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/memory_util.hpp +0 -288
  1775. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/preprocessor.hpp +0 -52
  1776. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/utilities.hpp +0 -858
  1777. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set_hook.hpp +0 -292
  1778. data/src/cxx_supportlib/vendor-modified/boost/libs/atomic/lockpool.cpp +0 -24
  1779. data/src/cxx_supportlib/vendor-modified/boost/libs/system/src/local_free_on_destruction.hpp +0 -40
  1780. data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/timeconv.inl +0 -151
  1781. data/src/cxx_supportlib/vendor-modified/boost/math/common_factor_ct.hpp +0 -180
  1782. data/src/cxx_supportlib/vendor-modified/boost/math_fwd.hpp +0 -108
  1783. data/src/cxx_supportlib/vendor-modified/boost/parameter.hpp +0 -21
  1784. data/src/cxx_supportlib/vendor-modified/boost/pointee.hpp +0 -74
  1785. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/allocate_array_helper.hpp +0 -169
  1786. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_deleter.hpp +0 -124
  1787. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/make_array_helper.hpp +0 -157
  1788. data/src/cxx_supportlib/vendor-modified/boost/thread/detail/async_func.hpp +0 -571
  1789. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_type_imp.hpp +0 -333
  1790. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/cv_traits_impl.hpp +0 -97
  1791. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/false_result.hpp +0 -28
  1792. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/size_t_trait_def.hpp +0 -60
  1793. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/size_t_trait_undef.hpp +0 -16
  1794. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/type_trait_def.hpp +0 -67
  1795. data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/type_trait_undef.hpp +0 -19
  1796. data/src/cxx_supportlib/vendor-modified/boost/units/detail/utility.hpp +0 -104
@@ -1,3104 +0,0 @@
1
- m4trace:/usr/local/share/aclocal/libtool.m4:96: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
2
- AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
3
- AC_BEFORE([$0], [LT_LANG])dnl
4
- AC_BEFORE([$0], [LT_OUTPUT])dnl
5
- AC_BEFORE([$0], [LTDL_INIT])dnl
6
- m4_require([_LT_CHECK_BUILDDIR])dnl
7
-
8
- dnl Autoconf doesn't catch unexpanded LT_ macros by default:
9
- m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
10
- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
11
- dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
12
- dnl unless we require an AC_DEFUNed macro:
13
- AC_REQUIRE([LTOPTIONS_VERSION])dnl
14
- AC_REQUIRE([LTSUGAR_VERSION])dnl
15
- AC_REQUIRE([LTVERSION_VERSION])dnl
16
- AC_REQUIRE([LTOBSOLETE_VERSION])dnl
17
- m4_require([_LT_PROG_LTMAIN])dnl
18
-
19
- _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
20
-
21
- dnl Parse OPTIONS
22
- _LT_SET_OPTIONS([$0], [$1])
23
-
24
- # This can be used to rebuild libtool when needed
25
- LIBTOOL_DEPS=$ltmain
26
-
27
- # Always use our own libtool.
28
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
29
- AC_SUBST(LIBTOOL)dnl
30
-
31
- _LT_SETUP
32
-
33
- # Only expand once:
34
- m4_define([LT_INIT])
35
- ])
36
- m4trace:/usr/local/share/aclocal/libtool.m4:99: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
37
- m4trace:/usr/local/share/aclocal/libtool.m4:99: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
38
- You should run autoupdate.])dnl
39
- m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
40
- m4trace:/usr/local/share/aclocal/libtool.m4:100: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
41
- m4trace:/usr/local/share/aclocal/libtool.m4:100: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
42
- You should run autoupdate.])dnl
43
- m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
44
- m4trace:/usr/local/share/aclocal/libtool.m4:704: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
45
- AC_MSG_NOTICE([creating $CONFIG_LT])
46
- _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
47
- [# Run this file to recreate a libtool stub with the current configuration.])
48
-
49
- cat >>"$CONFIG_LT" <<\_LTEOF
50
- lt_cl_silent=false
51
- exec AS_MESSAGE_LOG_FD>>config.log
52
- {
53
- echo
54
- AS_BOX([Running $as_me.])
55
- } >&AS_MESSAGE_LOG_FD
56
-
57
- lt_cl_help="\
58
- '$as_me' creates a local libtool stub from the current configuration,
59
- for use in further configure time tests before the real libtool is
60
- generated.
61
-
62
- Usage: $[0] [[OPTIONS]]
63
-
64
- -h, --help print this help, then exit
65
- -V, --version print version number, then exit
66
- -q, --quiet do not print progress messages
67
- -d, --debug don't remove temporary files
68
-
69
- Report bugs to <bug-libtool@gnu.org>."
70
-
71
- lt_cl_version="\
72
- m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
73
- m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
74
- configured by $[0], generated by m4_PACKAGE_STRING.
75
-
76
- Copyright (C) 2011 Free Software Foundation, Inc.
77
- This config.lt script is free software; the Free Software Foundation
78
- gives unlimited permision to copy, distribute and modify it."
79
-
80
- while test 0 != $[#]
81
- do
82
- case $[1] in
83
- --version | --v* | -V )
84
- echo "$lt_cl_version"; exit 0 ;;
85
- --help | --h* | -h )
86
- echo "$lt_cl_help"; exit 0 ;;
87
- --debug | --d* | -d )
88
- debug=: ;;
89
- --quiet | --q* | --silent | --s* | -q )
90
- lt_cl_silent=: ;;
91
-
92
- -*) AC_MSG_ERROR([unrecognized option: $[1]
93
- Try '$[0] --help' for more information.]) ;;
94
-
95
- *) AC_MSG_ERROR([unrecognized argument: $[1]
96
- Try '$[0] --help' for more information.]) ;;
97
- esac
98
- shift
99
- done
100
-
101
- if $lt_cl_silent; then
102
- exec AS_MESSAGE_FD>/dev/null
103
- fi
104
- _LTEOF
105
-
106
- cat >>"$CONFIG_LT" <<_LTEOF
107
- _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
108
- _LTEOF
109
-
110
- cat >>"$CONFIG_LT" <<\_LTEOF
111
- AC_MSG_NOTICE([creating $ofile])
112
- _LT_OUTPUT_LIBTOOL_COMMANDS
113
- AS_EXIT(0)
114
- _LTEOF
115
- chmod +x "$CONFIG_LT"
116
-
117
- # configure is writing to config.log, but config.lt does its own redirection,
118
- # appending to config.log, which fails on DOS, as config.log is still kept
119
- # open by configure. Here we exec the FD to /dev/null, effectively closing
120
- # config.log, so it can be properly (re)opened and appended to by config.lt.
121
- lt_cl_success=:
122
- test yes = "$silent" &&
123
- lt_config_lt_args="$lt_config_lt_args --quiet"
124
- exec AS_MESSAGE_LOG_FD>/dev/null
125
- $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
126
- exec AS_MESSAGE_LOG_FD>>config.log
127
- $lt_cl_success || AS_EXIT(1)
128
- ])
129
- m4trace:/usr/local/share/aclocal/libtool.m4:811: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
130
- m4trace:/usr/local/share/aclocal/libtool.m4:835: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
131
- m4_case([$1],
132
- [C], [_LT_LANG(C)],
133
- [C++], [_LT_LANG(CXX)],
134
- [Go], [_LT_LANG(GO)],
135
- [Java], [_LT_LANG(GCJ)],
136
- [Fortran 77], [_LT_LANG(F77)],
137
- [Fortran], [_LT_LANG(FC)],
138
- [Windows Resource], [_LT_LANG(RC)],
139
- [m4_ifdef([_LT_LANG_]$1[_CONFIG],
140
- [_LT_LANG($1)],
141
- [m4_fatal([$0: unsupported language: "$1"])])])dnl
142
- ])
143
- m4trace:/usr/local/share/aclocal/libtool.m4:914: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
144
- m4trace:/usr/local/share/aclocal/libtool.m4:914: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
145
- You should run autoupdate.])dnl
146
- LT_LANG(C++)])
147
- m4trace:/usr/local/share/aclocal/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
148
- m4trace:/usr/local/share/aclocal/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
149
- You should run autoupdate.])dnl
150
- LT_LANG(Fortran 77)])
151
- m4trace:/usr/local/share/aclocal/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
152
- m4trace:/usr/local/share/aclocal/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
153
- You should run autoupdate.])dnl
154
- LT_LANG(Fortran)])
155
- m4trace:/usr/local/share/aclocal/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
156
- m4trace:/usr/local/share/aclocal/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
157
- You should run autoupdate.])dnl
158
- LT_LANG(Java)])
159
- m4trace:/usr/local/share/aclocal/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
160
- m4trace:/usr/local/share/aclocal/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
161
- You should run autoupdate.])dnl
162
- LT_LANG(Windows Resource)])
163
- m4trace:/usr/local/share/aclocal/libtool.m4:1276: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
164
- AC_ARG_WITH([sysroot],
165
- [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
166
- [Search for dependent libraries within DIR (or the compiler's sysroot
167
- if not specified).])],
168
- [], [with_sysroot=no])
169
-
170
- dnl lt_sysroot will always be passed unquoted. We quote it here
171
- dnl in case the user passed a directory name.
172
- lt_sysroot=
173
- case $with_sysroot in #(
174
- yes)
175
- if test yes = "$GCC"; then
176
- lt_sysroot=`$CC --print-sysroot 2>/dev/null`
177
- fi
178
- ;; #(
179
- /*)
180
- lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
181
- ;; #(
182
- no|'')
183
- ;; #(
184
- *)
185
- AC_MSG_RESULT([$with_sysroot])
186
- AC_MSG_ERROR([The sysroot must be an absolute path.])
187
- ;;
188
- esac
189
-
190
- AC_MSG_RESULT([${lt_sysroot:-no}])
191
- _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
192
- [dependent libraries, and where our libraries should be installed.])])
193
- m4trace:/usr/local/share/aclocal/libtool.m4:1616: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
194
- m4_require([_LT_DECL_SED])dnl
195
- AC_CACHE_CHECK([$1], [$2],
196
- [$2=no
197
- m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
198
- echo "$lt_simple_compile_test_code" > conftest.$ac_ext
199
- lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
200
- # Insert the option either (1) after the last *FLAGS variable, or
201
- # (2) before a word containing "conftest.", or (3) at the end.
202
- # Note that $ac_compile itself does not contain backslashes and begins
203
- # with a dollar sign (not a hyphen), so the echo should work correctly.
204
- # The option is referenced via a variable to avoid confusing sed.
205
- lt_compile=`echo "$ac_compile" | $SED \
206
- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
207
- -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
208
- -e 's:$: $lt_compiler_flag:'`
209
- (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
210
- (eval "$lt_compile" 2>conftest.err)
211
- ac_status=$?
212
- cat conftest.err >&AS_MESSAGE_LOG_FD
213
- echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
214
- if (exit $ac_status) && test -s "$ac_outfile"; then
215
- # The compiler can only warn and ignore the option if not recognized
216
- # So say no if there are warnings other than the usual output.
217
- $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
218
- $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
219
- if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
220
- $2=yes
221
- fi
222
- fi
223
- $RM conftest*
224
- ])
225
-
226
- if test yes = "[$]$2"; then
227
- m4_if([$5], , :, [$5])
228
- else
229
- m4_if([$6], , :, [$6])
230
- fi
231
- ])
232
- m4trace:/usr/local/share/aclocal/libtool.m4:1619: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
233
- m4trace:/usr/local/share/aclocal/libtool.m4:1619: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
234
- You should run autoupdate.])dnl
235
- m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
236
- m4trace:/usr/local/share/aclocal/libtool.m4:1660: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
237
- m4_require([_LT_DECL_SED])dnl
238
- AC_CACHE_CHECK([$1], [$2],
239
- [$2=no
240
- save_LDFLAGS=$LDFLAGS
241
- LDFLAGS="$LDFLAGS $3"
242
- echo "$lt_simple_link_test_code" > conftest.$ac_ext
243
- if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
244
- # The linker can only warn and ignore the option if not recognized
245
- # So say no if there are warnings
246
- if test -s conftest.err; then
247
- # Append any errors to the config.log.
248
- cat conftest.err 1>&AS_MESSAGE_LOG_FD
249
- $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
250
- $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
251
- if diff conftest.exp conftest.er2 >/dev/null; then
252
- $2=yes
253
- fi
254
- else
255
- $2=yes
256
- fi
257
- fi
258
- $RM -r conftest*
259
- LDFLAGS=$save_LDFLAGS
260
- ])
261
-
262
- if test yes = "[$]$2"; then
263
- m4_if([$4], , :, [$4])
264
- else
265
- m4_if([$5], , :, [$5])
266
- fi
267
- ])
268
- m4trace:/usr/local/share/aclocal/libtool.m4:1663: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
269
- m4trace:/usr/local/share/aclocal/libtool.m4:1663: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
270
- You should run autoupdate.])dnl
271
- m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
272
- m4trace:/usr/local/share/aclocal/libtool.m4:1806: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
273
- # find the maximum length of command line arguments
274
- AC_MSG_CHECKING([the maximum length of command line arguments])
275
- AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
276
- i=0
277
- teststring=ABCD
278
-
279
- case $build_os in
280
- msdosdjgpp*)
281
- # On DJGPP, this test can blow up pretty badly due to problems in libc
282
- # (any single argument exceeding 2000 bytes causes a buffer overrun
283
- # during glob expansion). Even if it were fixed, the result of this
284
- # check would be larger than it should be.
285
- lt_cv_sys_max_cmd_len=12288; # 12K is about right
286
- ;;
287
-
288
- gnu*)
289
- # Under GNU Hurd, this test is not required because there is
290
- # no limit to the length of command line arguments.
291
- # Libtool will interpret -1 as no limit whatsoever
292
- lt_cv_sys_max_cmd_len=-1;
293
- ;;
294
-
295
- cygwin* | mingw* | cegcc*)
296
- # On Win9x/ME, this test blows up -- it succeeds, but takes
297
- # about 5 minutes as the teststring grows exponentially.
298
- # Worse, since 9x/ME are not pre-emptively multitasking,
299
- # you end up with a "frozen" computer, even though with patience
300
- # the test eventually succeeds (with a max line length of 256k).
301
- # Instead, let's just punt: use the minimum linelength reported by
302
- # all of the supported platforms: 8192 (on NT/2K/XP).
303
- lt_cv_sys_max_cmd_len=8192;
304
- ;;
305
-
306
- mint*)
307
- # On MiNT this can take a long time and run out of memory.
308
- lt_cv_sys_max_cmd_len=8192;
309
- ;;
310
-
311
- amigaos*)
312
- # On AmigaOS with pdksh, this test takes hours, literally.
313
- # So we just punt and use a minimum line length of 8192.
314
- lt_cv_sys_max_cmd_len=8192;
315
- ;;
316
-
317
- bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
318
- # This has been around since 386BSD, at least. Likely further.
319
- if test -x /sbin/sysctl; then
320
- lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
321
- elif test -x /usr/sbin/sysctl; then
322
- lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
323
- else
324
- lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
325
- fi
326
- # And add a safety zone
327
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
328
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
329
- ;;
330
-
331
- interix*)
332
- # We know the value 262144 and hardcode it with a safety zone (like BSD)
333
- lt_cv_sys_max_cmd_len=196608
334
- ;;
335
-
336
- os2*)
337
- # The test takes a long time on OS/2.
338
- lt_cv_sys_max_cmd_len=8192
339
- ;;
340
-
341
- osf*)
342
- # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
343
- # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
344
- # nice to cause kernel panics so lets avoid the loop below.
345
- # First set a reasonable default.
346
- lt_cv_sys_max_cmd_len=16384
347
- #
348
- if test -x /sbin/sysconfig; then
349
- case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
350
- *1*) lt_cv_sys_max_cmd_len=-1 ;;
351
- esac
352
- fi
353
- ;;
354
- sco3.2v5*)
355
- lt_cv_sys_max_cmd_len=102400
356
- ;;
357
- sysv5* | sco5v6* | sysv4.2uw2*)
358
- kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
359
- if test -n "$kargmax"; then
360
- lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
361
- else
362
- lt_cv_sys_max_cmd_len=32768
363
- fi
364
- ;;
365
- *)
366
- lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
367
- if test -n "$lt_cv_sys_max_cmd_len" && \
368
- test undefined != "$lt_cv_sys_max_cmd_len"; then
369
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
370
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
371
- else
372
- # Make teststring a little bigger before we do anything with it.
373
- # a 1K string should be a reasonable start.
374
- for i in 1 2 3 4 5 6 7 8; do
375
- teststring=$teststring$teststring
376
- done
377
- SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
378
- # If test is not a shell built-in, we'll probably end up computing a
379
- # maximum length that is only half of the actual maximum length, but
380
- # we can't tell.
381
- while { test X`env echo "$teststring$teststring" 2>/dev/null` \
382
- = "X$teststring$teststring"; } >/dev/null 2>&1 &&
383
- test 17 != "$i" # 1/2 MB should be enough
384
- do
385
- i=`expr $i + 1`
386
- teststring=$teststring$teststring
387
- done
388
- # Only check the string length outside the loop.
389
- lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
390
- teststring=
391
- # Add a significant safety factor because C++ compilers can tack on
392
- # massive amounts of additional arguments before passing them to the
393
- # linker. It appears as though 1/2 is a usable value.
394
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
395
- fi
396
- ;;
397
- esac
398
- ])
399
- if test -n "$lt_cv_sys_max_cmd_len"; then
400
- AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
401
- else
402
- AC_MSG_RESULT(none)
403
- fi
404
- max_cmd_len=$lt_cv_sys_max_cmd_len
405
- _LT_DECL([], [max_cmd_len], [0],
406
- [What is the maximum length of a command?])
407
- ])
408
- m4trace:/usr/local/share/aclocal/libtool.m4:1809: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
409
- m4trace:/usr/local/share/aclocal/libtool.m4:1809: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
410
- You should run autoupdate.])dnl
411
- m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
412
- m4trace:/usr/local/share/aclocal/libtool.m4:2042: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
413
- if test yes != "$enable_dlopen"; then
414
- enable_dlopen=unknown
415
- enable_dlopen_self=unknown
416
- enable_dlopen_self_static=unknown
417
- else
418
- lt_cv_dlopen=no
419
- lt_cv_dlopen_libs=
420
-
421
- case $host_os in
422
- beos*)
423
- lt_cv_dlopen=load_add_on
424
- lt_cv_dlopen_libs=
425
- lt_cv_dlopen_self=yes
426
- ;;
427
-
428
- mingw* | pw32* | cegcc*)
429
- lt_cv_dlopen=LoadLibrary
430
- lt_cv_dlopen_libs=
431
- ;;
432
-
433
- cygwin*)
434
- lt_cv_dlopen=dlopen
435
- lt_cv_dlopen_libs=
436
- ;;
437
-
438
- darwin*)
439
- # if libdl is installed we need to link against it
440
- AC_CHECK_LIB([dl], [dlopen],
441
- [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
442
- lt_cv_dlopen=dyld
443
- lt_cv_dlopen_libs=
444
- lt_cv_dlopen_self=yes
445
- ])
446
- ;;
447
-
448
- tpf*)
449
- # Don't try to run any link tests for TPF. We know it's impossible
450
- # because TPF is a cross-compiler, and we know how we open DSOs.
451
- lt_cv_dlopen=dlopen
452
- lt_cv_dlopen_libs=
453
- lt_cv_dlopen_self=no
454
- ;;
455
-
456
- *)
457
- AC_CHECK_FUNC([shl_load],
458
- [lt_cv_dlopen=shl_load],
459
- [AC_CHECK_LIB([dld], [shl_load],
460
- [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
461
- [AC_CHECK_FUNC([dlopen],
462
- [lt_cv_dlopen=dlopen],
463
- [AC_CHECK_LIB([dl], [dlopen],
464
- [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
465
- [AC_CHECK_LIB([svld], [dlopen],
466
- [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
467
- [AC_CHECK_LIB([dld], [dld_link],
468
- [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
469
- ])
470
- ])
471
- ])
472
- ])
473
- ])
474
- ;;
475
- esac
476
-
477
- if test no = "$lt_cv_dlopen"; then
478
- enable_dlopen=no
479
- else
480
- enable_dlopen=yes
481
- fi
482
-
483
- case $lt_cv_dlopen in
484
- dlopen)
485
- save_CPPFLAGS=$CPPFLAGS
486
- test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
487
-
488
- save_LDFLAGS=$LDFLAGS
489
- wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
490
-
491
- save_LIBS=$LIBS
492
- LIBS="$lt_cv_dlopen_libs $LIBS"
493
-
494
- AC_CACHE_CHECK([whether a program can dlopen itself],
495
- lt_cv_dlopen_self, [dnl
496
- _LT_TRY_DLOPEN_SELF(
497
- lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
498
- lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
499
- ])
500
-
501
- if test yes = "$lt_cv_dlopen_self"; then
502
- wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
503
- AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
504
- lt_cv_dlopen_self_static, [dnl
505
- _LT_TRY_DLOPEN_SELF(
506
- lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
507
- lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
508
- ])
509
- fi
510
-
511
- CPPFLAGS=$save_CPPFLAGS
512
- LDFLAGS=$save_LDFLAGS
513
- LIBS=$save_LIBS
514
- ;;
515
- esac
516
-
517
- case $lt_cv_dlopen_self in
518
- yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
519
- *) enable_dlopen_self=unknown ;;
520
- esac
521
-
522
- case $lt_cv_dlopen_self_static in
523
- yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
524
- *) enable_dlopen_self_static=unknown ;;
525
- esac
526
- fi
527
- _LT_DECL([dlopen_support], [enable_dlopen], [0],
528
- [Whether dlopen is supported])
529
- _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
530
- [Whether dlopen of programs is supported])
531
- _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
532
- [Whether dlopen of statically linked programs is supported])
533
- ])
534
- m4trace:/usr/local/share/aclocal/libtool.m4:2045: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
535
- m4trace:/usr/local/share/aclocal/libtool.m4:2045: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
536
- You should run autoupdate.])dnl
537
- m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
538
- m4trace:/usr/local/share/aclocal/libtool.m4:3209: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
539
- AC_MSG_CHECKING([for $1])
540
- AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
541
- [case $MAGIC_CMD in
542
- [[\\/*] | ?:[\\/]*])
543
- lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
544
- ;;
545
- *)
546
- lt_save_MAGIC_CMD=$MAGIC_CMD
547
- lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
548
- dnl $ac_dummy forces splitting on constant user-supplied paths.
549
- dnl POSIX.2 word splitting is done only on the output of word expansions,
550
- dnl not every word. This closes a longstanding sh security hole.
551
- ac_dummy="m4_if([$2], , $PATH, [$2])"
552
- for ac_dir in $ac_dummy; do
553
- IFS=$lt_save_ifs
554
- test -z "$ac_dir" && ac_dir=.
555
- if test -f "$ac_dir/$1"; then
556
- lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
557
- if test -n "$file_magic_test_file"; then
558
- case $deplibs_check_method in
559
- "file_magic "*)
560
- file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
561
- MAGIC_CMD=$lt_cv_path_MAGIC_CMD
562
- if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
563
- $EGREP "$file_magic_regex" > /dev/null; then
564
- :
565
- else
566
- cat <<_LT_EOF 1>&2
567
-
568
- *** Warning: the command libtool uses to detect shared libraries,
569
- *** $file_magic_cmd, produces output that libtool cannot recognize.
570
- *** The result is that libtool may fail to recognize shared libraries
571
- *** as such. This will affect the creation of libtool libraries that
572
- *** depend on shared libraries, but programs linked with such libtool
573
- *** libraries will work regardless of this problem. Nevertheless, you
574
- *** may want to report the problem to your system manager and/or to
575
- *** bug-libtool@gnu.org
576
-
577
- _LT_EOF
578
- fi ;;
579
- esac
580
- fi
581
- break
582
- fi
583
- done
584
- IFS=$lt_save_ifs
585
- MAGIC_CMD=$lt_save_MAGIC_CMD
586
- ;;
587
- esac])
588
- MAGIC_CMD=$lt_cv_path_MAGIC_CMD
589
- if test -n "$MAGIC_CMD"; then
590
- AC_MSG_RESULT($MAGIC_CMD)
591
- else
592
- AC_MSG_RESULT(no)
593
- fi
594
- _LT_DECL([], [MAGIC_CMD], [0],
595
- [Used to examine libraries when file_magic_cmd begins with "file"])dnl
596
- ])
597
- m4trace:/usr/local/share/aclocal/libtool.m4:3212: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
598
- m4trace:/usr/local/share/aclocal/libtool.m4:3212: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
599
- You should run autoupdate.])dnl
600
- m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
601
- m4trace:/usr/local/share/aclocal/libtool.m4:3321: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
602
- AC_REQUIRE([AC_CANONICAL_HOST])dnl
603
- AC_REQUIRE([AC_CANONICAL_BUILD])dnl
604
- m4_require([_LT_DECL_SED])dnl
605
- m4_require([_LT_DECL_EGREP])dnl
606
- m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
607
-
608
- AC_ARG_WITH([gnu-ld],
609
- [AS_HELP_STRING([--with-gnu-ld],
610
- [assume the C compiler uses GNU ld @<:@default=no@:>@])],
611
- [test no = "$withval" || with_gnu_ld=yes],
612
- [with_gnu_ld=no])dnl
613
-
614
- ac_prog=ld
615
- if test yes = "$GCC"; then
616
- # Check if gcc -print-prog-name=ld gives a path.
617
- AC_MSG_CHECKING([for ld used by $CC])
618
- case $host in
619
- *-*-mingw*)
620
- # gcc leaves a trailing carriage return, which upsets mingw
621
- ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
622
- *)
623
- ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
624
- esac
625
- case $ac_prog in
626
- # Accept absolute paths.
627
- [[\\/]]* | ?:[[\\/]]*)
628
- re_direlt='/[[^/]][[^/]]*/\.\./'
629
- # Canonicalize the pathname of ld
630
- ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
631
- while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
632
- ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
633
- done
634
- test -z "$LD" && LD=$ac_prog
635
- ;;
636
- "")
637
- # If it fails, then pretend we aren't using GCC.
638
- ac_prog=ld
639
- ;;
640
- *)
641
- # If it is relative, then search for the first ld in PATH.
642
- with_gnu_ld=unknown
643
- ;;
644
- esac
645
- elif test yes = "$with_gnu_ld"; then
646
- AC_MSG_CHECKING([for GNU ld])
647
- else
648
- AC_MSG_CHECKING([for non-GNU ld])
649
- fi
650
- AC_CACHE_VAL(lt_cv_path_LD,
651
- [if test -z "$LD"; then
652
- lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
653
- for ac_dir in $PATH; do
654
- IFS=$lt_save_ifs
655
- test -z "$ac_dir" && ac_dir=.
656
- if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
657
- lt_cv_path_LD=$ac_dir/$ac_prog
658
- # Check to see if the program is GNU ld. I'd rather use --version,
659
- # but apparently some variants of GNU ld only accept -v.
660
- # Break only if it was the GNU/non-GNU ld that we prefer.
661
- case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
662
- *GNU* | *'with BFD'*)
663
- test no != "$with_gnu_ld" && break
664
- ;;
665
- *)
666
- test yes != "$with_gnu_ld" && break
667
- ;;
668
- esac
669
- fi
670
- done
671
- IFS=$lt_save_ifs
672
- else
673
- lt_cv_path_LD=$LD # Let the user override the test with a path.
674
- fi])
675
- LD=$lt_cv_path_LD
676
- if test -n "$LD"; then
677
- AC_MSG_RESULT($LD)
678
- else
679
- AC_MSG_RESULT(no)
680
- fi
681
- test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
682
- _LT_PATH_LD_GNU
683
- AC_SUBST([LD])
684
-
685
- _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
686
- ])
687
- m4trace:/usr/local/share/aclocal/libtool.m4:3324: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
688
- m4trace:/usr/local/share/aclocal/libtool.m4:3324: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
689
- You should run autoupdate.])dnl
690
- m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
691
- m4trace:/usr/local/share/aclocal/libtool.m4:3325: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
692
- m4trace:/usr/local/share/aclocal/libtool.m4:3325: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
693
- You should run autoupdate.])dnl
694
- m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
695
- m4trace:/usr/local/share/aclocal/libtool.m4:3746: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
696
- AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
697
- [if test -n "$NM"; then
698
- # Let the user override the test.
699
- lt_cv_path_NM=$NM
700
- else
701
- lt_nm_to_check=${ac_tool_prefix}nm
702
- if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
703
- lt_nm_to_check="$lt_nm_to_check nm"
704
- fi
705
- for lt_tmp_nm in $lt_nm_to_check; do
706
- lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
707
- for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
708
- IFS=$lt_save_ifs
709
- test -z "$ac_dir" && ac_dir=.
710
- tmp_nm=$ac_dir/$lt_tmp_nm
711
- if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
712
- # Check to see if the nm accepts a BSD-compat flag.
713
- # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
714
- # nm: unknown option "B" ignored
715
- # Tru64's nm complains that /dev/null is an invalid object file
716
- # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
717
- case $build_os in
718
- mingw*) lt_bad_file=conftest.nm/nofile ;;
719
- *) lt_bad_file=/dev/null ;;
720
- esac
721
- case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
722
- *$lt_bad_file* | *'Invalid file or object type'*)
723
- lt_cv_path_NM="$tmp_nm -B"
724
- break 2
725
- ;;
726
- *)
727
- case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
728
- */dev/null*)
729
- lt_cv_path_NM="$tmp_nm -p"
730
- break 2
731
- ;;
732
- *)
733
- lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
734
- continue # so that we can try to find one that supports BSD flags
735
- ;;
736
- esac
737
- ;;
738
- esac
739
- fi
740
- done
741
- IFS=$lt_save_ifs
742
- done
743
- : ${lt_cv_path_NM=no}
744
- fi])
745
- if test no != "$lt_cv_path_NM"; then
746
- NM=$lt_cv_path_NM
747
- else
748
- # Didn't find any BSD compatible name lister, look for dumpbin.
749
- if test -n "$DUMPBIN"; then :
750
- # Let the user override the test.
751
- else
752
- AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
753
- case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
754
- *COFF*)
755
- DUMPBIN="$DUMPBIN -symbols -headers"
756
- ;;
757
- *)
758
- DUMPBIN=:
759
- ;;
760
- esac
761
- fi
762
- AC_SUBST([DUMPBIN])
763
- if test : != "$DUMPBIN"; then
764
- NM=$DUMPBIN
765
- fi
766
- fi
767
- test -z "$NM" && NM=nm
768
- AC_SUBST([NM])
769
- _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
770
-
771
- AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
772
- [lt_cv_nm_interface="BSD nm"
773
- echo "int some_variable = 0;" > conftest.$ac_ext
774
- (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
775
- (eval "$ac_compile" 2>conftest.err)
776
- cat conftest.err >&AS_MESSAGE_LOG_FD
777
- (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
778
- (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
779
- cat conftest.err >&AS_MESSAGE_LOG_FD
780
- (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
781
- cat conftest.out >&AS_MESSAGE_LOG_FD
782
- if $GREP 'External.*some_variable' conftest.out > /dev/null; then
783
- lt_cv_nm_interface="MS dumpbin"
784
- fi
785
- rm -f conftest*])
786
- ])
787
- m4trace:/usr/local/share/aclocal/libtool.m4:3749: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
788
- m4trace:/usr/local/share/aclocal/libtool.m4:3749: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
789
- You should run autoupdate.])dnl
790
- m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
791
- m4trace:/usr/local/share/aclocal/libtool.m4:3750: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
792
- m4trace:/usr/local/share/aclocal/libtool.m4:3750: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
793
- You should run autoupdate.])dnl
794
- m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
795
- m4trace:/usr/local/share/aclocal/libtool.m4:3829: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
796
- test DEF = "`$SED -n dnl
797
- -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
798
- -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
799
- -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
800
- -e q dnl Only consider the first "real" line
801
- $1`" dnl
802
- ])
803
- m4trace:/usr/local/share/aclocal/libtool.m4:3851: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
804
- LIBM=
805
- case $host in
806
- *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
807
- # These system don't have libm, or don't need it
808
- ;;
809
- *-ncr-sysv4.3*)
810
- AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
811
- AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
812
- ;;
813
- *)
814
- AC_CHECK_LIB(m, cos, LIBM=-lm)
815
- ;;
816
- esac
817
- AC_SUBST([LIBM])
818
- ])
819
- m4trace:/usr/local/share/aclocal/libtool.m4:3854: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
820
- m4trace:/usr/local/share/aclocal/libtool.m4:3854: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
821
- You should run autoupdate.])dnl
822
- m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
823
- m4trace:/usr/local/share/aclocal/libtool.m4:8123: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
824
- [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
825
- [AC_CHECK_TOOL(GCJ, gcj,)
826
- test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
827
- AC_SUBST(GCJFLAGS)])])[]dnl
828
- ])
829
- m4trace:/usr/local/share/aclocal/libtool.m4:8126: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
830
- m4trace:/usr/local/share/aclocal/libtool.m4:8126: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
831
- You should run autoupdate.])dnl
832
- m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
833
- m4trace:/usr/local/share/aclocal/libtool.m4:8135: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
834
- ])
835
- m4trace:/usr/local/share/aclocal/libtool.m4:8142: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
836
- ])
837
- m4trace:/usr/local/share/aclocal/libtool.m4:8145: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
838
- m4trace:/usr/local/share/aclocal/libtool.m4:8145: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
839
- You should run autoupdate.])dnl
840
- m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
841
- m4trace:/usr/local/share/aclocal/libtool.m4:8265: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
842
- m4trace:/usr/local/share/aclocal/libtool.m4:8265: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
843
- You should run autoupdate.])dnl
844
- m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
845
- m4trace:/usr/local/share/aclocal/ltargz.m4:74: -1- AC_DEFUN([LT_FUNC_ARGZ], [
846
- AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
847
-
848
- AC_CHECK_TYPES([error_t],
849
- [],
850
- [AC_DEFINE([error_t], [int],
851
- [Define to a type to use for 'error_t' if it is not otherwise available.])
852
- AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
853
- does not typedef error_t.])],
854
- [#if defined(HAVE_ARGZ_H)
855
- # include <argz.h>
856
- #endif])
857
-
858
- LT_ARGZ_H=
859
- AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
860
- argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
861
-
862
- dnl if have system argz functions, allow forced use of
863
- dnl libltdl-supplied implementation (and default to do so
864
- dnl on "known bad" systems). Could use a runtime check, but
865
- dnl (a) detecting malloc issues is notoriously unreliable
866
- dnl (b) only known system that declares argz functions,
867
- dnl provides them, yet they are broken, is cygwin
868
- dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
869
- dnl So, it's more straightforward simply to special case
870
- dnl this for known bad systems.
871
- AS_IF([test -z "$LT_ARGZ_H"],
872
- [AC_CACHE_CHECK(
873
- [if argz actually works],
874
- [lt_cv_sys_argz_works],
875
- [[case $host_os in #(
876
- *cygwin*)
877
- lt_cv_sys_argz_works=no
878
- if test no != "$cross_compiling"; then
879
- lt_cv_sys_argz_works="guessing no"
880
- else
881
- lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
882
- save_IFS=$IFS
883
- IFS=-.
884
- set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
885
- IFS=$save_IFS
886
- lt_os_major=${2-0}
887
- lt_os_minor=${3-0}
888
- lt_os_micro=${4-0}
889
- if test 1 -lt "$lt_os_major" \
890
- || { test 1 -eq "$lt_os_major" \
891
- && { test 5 -lt "$lt_os_minor" \
892
- || { test 5 -eq "$lt_os_minor" \
893
- && test 24 -lt "$lt_os_micro"; }; }; }; then
894
- lt_cv_sys_argz_works=yes
895
- fi
896
- fi
897
- ;; #(
898
- *) lt_cv_sys_argz_works=yes ;;
899
- esac]])
900
- AS_IF([test yes = "$lt_cv_sys_argz_works"],
901
- [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
902
- [This value is set to 1 to indicate that the system argz facility works])],
903
- [LT_ARGZ_H=lt__argz.h
904
- AC_LIBOBJ([lt__argz])])])
905
-
906
- AC_SUBST([LT_ARGZ_H])
907
- ])
908
- m4trace:/usr/local/share/aclocal/ltdl.m4:19: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
909
- _$0($*)
910
- ])
911
- m4trace:/usr/local/share/aclocal/ltdl.m4:77: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
912
- dnl Although the argument is deprecated and no longer documented,
913
- dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
914
- dnl here make sure it is the same as any other declaration of libltdl's
915
- dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
916
- dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
917
- m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
918
- _$0()
919
- ])
920
- m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
921
- _LTDL_CONVENIENCE])
922
- m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
923
- You should run autoupdate.])dnl
924
- _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
925
- _LTDL_CONVENIENCE])
926
- m4trace:/usr/local/share/aclocal/ltdl.m4:133: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
927
- dnl Although the argument is deprecated and no longer documented,
928
- dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
929
- dnl here make sure it is the same as any other declaration of libltdl's
930
- dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
931
- dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
932
- m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
933
- _$0()
934
- ])
935
- m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
936
- _LTDL_INSTALLABLE])
937
- m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
938
- You should run autoupdate.])dnl
939
- _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
940
- _LTDL_INSTALLABLE])
941
- m4trace:/usr/local/share/aclocal/ltdl.m4:216: -1- AC_DEFUN([_LT_LIBOBJ], [
942
- m4_pattern_allow([^_LT_LIBOBJS$])
943
- _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
944
- ])
945
- m4trace:/usr/local/share/aclocal/ltdl.m4:349: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
946
- _LT_SET_OPTIONS([$0], [$1])
947
-
948
- dnl We need to keep our own list of libobjs separate from our parent project,
949
- dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
950
- dnl we look for our own LIBOBJs.
951
- m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
952
- m4_pushdef([AC_LIBSOURCES])
953
-
954
- dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
955
- m4_if(_LTDL_MODE, [],
956
- [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
957
- m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
958
- [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
959
-
960
- AC_ARG_WITH([included_ltdl],
961
- [AS_HELP_STRING([--with-included-ltdl],
962
- [use the GNU ltdl sources included here])])
963
-
964
- if test yes != "$with_included_ltdl"; then
965
- # We are not being forced to use the included libltdl sources, so
966
- # decide whether there is a useful installed version we can use.
967
- AC_CHECK_HEADER([ltdl.h],
968
- [AC_CHECK_DECL([lt_dlinterface_register],
969
- [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
970
- [with_included_ltdl=no],
971
- [with_included_ltdl=yes])],
972
- [with_included_ltdl=yes],
973
- [AC_INCLUDES_DEFAULT
974
- #include <ltdl.h>])],
975
- [with_included_ltdl=yes],
976
- [AC_INCLUDES_DEFAULT]
977
- )
978
- fi
979
-
980
- dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
981
- dnl was called yet, then for old times' sake, we assume libltdl is in an
982
- dnl eponymous directory:
983
- AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
984
-
985
- AC_ARG_WITH([ltdl_include],
986
- [AS_HELP_STRING([--with-ltdl-include=DIR],
987
- [use the ltdl headers installed in DIR])])
988
-
989
- if test -n "$with_ltdl_include"; then
990
- if test -f "$with_ltdl_include/ltdl.h"; then :
991
- else
992
- AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
993
- fi
994
- else
995
- with_ltdl_include=no
996
- fi
997
-
998
- AC_ARG_WITH([ltdl_lib],
999
- [AS_HELP_STRING([--with-ltdl-lib=DIR],
1000
- [use the libltdl.la installed in DIR])])
1001
-
1002
- if test -n "$with_ltdl_lib"; then
1003
- if test -f "$with_ltdl_lib/libltdl.la"; then :
1004
- else
1005
- AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
1006
- fi
1007
- else
1008
- with_ltdl_lib=no
1009
- fi
1010
-
1011
- case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
1012
- ,yes,no,no,)
1013
- m4_case(m4_default(_LTDL_TYPE, [convenience]),
1014
- [convenience], [_LTDL_CONVENIENCE],
1015
- [installable], [_LTDL_INSTALLABLE],
1016
- [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
1017
- ;;
1018
- ,no,no,no,)
1019
- # If the included ltdl is not to be used, then use the
1020
- # preinstalled libltdl we found.
1021
- AC_DEFINE([HAVE_LTDL], [1],
1022
- [Define this if a modern libltdl is already installed])
1023
- LIBLTDL=-lltdl
1024
- LTDLDEPS=
1025
- LTDLINCL=
1026
- ;;
1027
- ,no*,no,*)
1028
- AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
1029
- ;;
1030
- *) with_included_ltdl=no
1031
- LIBLTDL="-L$with_ltdl_lib -lltdl"
1032
- LTDLDEPS=
1033
- LTDLINCL=-I$with_ltdl_include
1034
- ;;
1035
- esac
1036
- INCLTDL=$LTDLINCL
1037
-
1038
- # Report our decision...
1039
- AC_MSG_CHECKING([where to find libltdl headers])
1040
- AC_MSG_RESULT([$LTDLINCL])
1041
- AC_MSG_CHECKING([where to find libltdl library])
1042
- AC_MSG_RESULT([$LIBLTDL])
1043
-
1044
- _LTDL_SETUP
1045
-
1046
- dnl restore autoconf definition.
1047
- m4_popdef([AC_LIBOBJ])
1048
- m4_popdef([AC_LIBSOURCES])
1049
-
1050
- AC_CONFIG_COMMANDS_PRE([
1051
- _ltdl_libobjs=
1052
- _ltdl_ltlibobjs=
1053
- if test -n "$_LT_LIBOBJS"; then
1054
- # Remove the extension.
1055
- _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
1056
- for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
1057
- _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
1058
- _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
1059
- done
1060
- fi
1061
- AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
1062
- AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
1063
- ])
1064
-
1065
- # Only expand once:
1066
- m4_define([LTDL_INIT])
1067
- ])
1068
- m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
1069
- m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
1070
- You should run autoupdate.])dnl
1071
- LTDL_INIT($@)])
1072
- m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
1073
- m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
1074
- You should run autoupdate.])dnl
1075
- LTDL_INIT($@)])
1076
- m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
1077
- m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
1078
- You should run autoupdate.])dnl
1079
- LTDL_INIT($@)])
1080
- m4trace:/usr/local/share/aclocal/ltdl.m4:421: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
1081
- AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
1082
- AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
1083
- AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
1084
- AC_REQUIRE([LT_LIB_DLLOAD])dnl
1085
- AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1086
- AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
1087
- AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
1088
- AC_REQUIRE([LT_FUNC_ARGZ])dnl
1089
-
1090
- m4_require([_LT_CHECK_OBJDIR])dnl
1091
- m4_require([_LT_HEADER_DLFCN])dnl
1092
- m4_require([_LT_CHECK_DLPREOPEN])dnl
1093
- m4_require([_LT_DECL_SED])dnl
1094
-
1095
- dnl Don't require this, or it will be expanded earlier than the code
1096
- dnl that sets the variables it relies on:
1097
- _LT_ENABLE_INSTALL
1098
-
1099
- dnl _LTDL_MODE specific code must be called at least once:
1100
- _LTDL_MODE_DISPATCH
1101
-
1102
- # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
1103
- # the user used. This is so that ltdl.h can pick up the parent projects
1104
- # config.h file, The first file in AC_CONFIG_HEADERS must contain the
1105
- # definitions required by ltdl.c.
1106
- # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
1107
- AC_CONFIG_COMMANDS_PRE([dnl
1108
- m4_pattern_allow([^LT_CONFIG_H$])dnl
1109
- m4_ifset([AH_HEADER],
1110
- [LT_CONFIG_H=AH_HEADER],
1111
- [m4_ifset([AC_LIST_HEADERS],
1112
- [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
1113
- [])])])
1114
- AC_SUBST([LT_CONFIG_H])
1115
-
1116
- AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
1117
- [], [], [AC_INCLUDES_DEFAULT])
1118
-
1119
- AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
1120
- AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
1121
-
1122
- m4_pattern_allow([LT_LIBEXT])dnl
1123
- AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
1124
-
1125
- name=
1126
- eval "lt_libprefix=\"$libname_spec\""
1127
- m4_pattern_allow([LT_LIBPREFIX])dnl
1128
- AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
1129
-
1130
- name=ltdl
1131
- eval "LTDLOPEN=\"$libname_spec\""
1132
- AC_SUBST([LTDLOPEN])
1133
- ])
1134
- m4trace:/usr/local/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1135
- AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
1136
- [lt_cv_sys_dlopen_deplibs],
1137
- [# PORTME does your system automatically load deplibs for dlopen?
1138
- # or its logical equivalent (e.g. shl_load for HP-UX < 11)
1139
- # For now, we just catch OSes we know something about -- in the
1140
- # future, we'll try test this programmatically.
1141
- lt_cv_sys_dlopen_deplibs=unknown
1142
- case $host_os in
1143
- aix3*|aix4.1.*|aix4.2.*)
1144
- # Unknown whether this is true for these versions of AIX, but
1145
- # we want this 'case' here to explicitly catch those versions.
1146
- lt_cv_sys_dlopen_deplibs=unknown
1147
- ;;
1148
- aix[[4-9]]*)
1149
- lt_cv_sys_dlopen_deplibs=yes
1150
- ;;
1151
- amigaos*)
1152
- case $host_cpu in
1153
- powerpc)
1154
- lt_cv_sys_dlopen_deplibs=no
1155
- ;;
1156
- esac
1157
- ;;
1158
- bitrig*)
1159
- lt_cv_sys_dlopen_deplibs=yes
1160
- ;;
1161
- darwin*)
1162
- # Assuming the user has installed a libdl from somewhere, this is true
1163
- # If you are looking for one http://www.opendarwin.org/projects/dlcompat
1164
- lt_cv_sys_dlopen_deplibs=yes
1165
- ;;
1166
- freebsd* | dragonfly*)
1167
- lt_cv_sys_dlopen_deplibs=yes
1168
- ;;
1169
- gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
1170
- # GNU and its variants, using gnu ld.so (Glibc)
1171
- lt_cv_sys_dlopen_deplibs=yes
1172
- ;;
1173
- hpux10*|hpux11*)
1174
- lt_cv_sys_dlopen_deplibs=yes
1175
- ;;
1176
- interix*)
1177
- lt_cv_sys_dlopen_deplibs=yes
1178
- ;;
1179
- irix[[12345]]*|irix6.[[01]]*)
1180
- # Catch all versions of IRIX before 6.2, and indicate that we don't
1181
- # know how it worked for any of those versions.
1182
- lt_cv_sys_dlopen_deplibs=unknown
1183
- ;;
1184
- irix*)
1185
- # The case above catches anything before 6.2, and it's known that
1186
- # at 6.2 and later dlopen does load deplibs.
1187
- lt_cv_sys_dlopen_deplibs=yes
1188
- ;;
1189
- netbsd*)
1190
- lt_cv_sys_dlopen_deplibs=yes
1191
- ;;
1192
- openbsd*)
1193
- lt_cv_sys_dlopen_deplibs=yes
1194
- ;;
1195
- osf[[1234]]*)
1196
- # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
1197
- # it did *not* use an RPATH in a shared library to find objects the
1198
- # library depends on, so we explicitly say 'no'.
1199
- lt_cv_sys_dlopen_deplibs=no
1200
- ;;
1201
- osf5.0|osf5.0a|osf5.1)
1202
- # dlopen *does* load deplibs and with the right loader patch applied
1203
- # it even uses RPATH in a shared library to search for shared objects
1204
- # that the library depends on, but there's no easy way to know if that
1205
- # patch is installed. Since this is the case, all we can really
1206
- # say is unknown -- it depends on the patch being installed. If
1207
- # it is, this changes to 'yes'. Without it, it would be 'no'.
1208
- lt_cv_sys_dlopen_deplibs=unknown
1209
- ;;
1210
- osf*)
1211
- # the two cases above should catch all versions of osf <= 5.1. Read
1212
- # the comments above for what we know about them.
1213
- # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
1214
- # is used to find them so we can finally say 'yes'.
1215
- lt_cv_sys_dlopen_deplibs=yes
1216
- ;;
1217
- qnx*)
1218
- lt_cv_sys_dlopen_deplibs=yes
1219
- ;;
1220
- solaris*)
1221
- lt_cv_sys_dlopen_deplibs=yes
1222
- ;;
1223
- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1224
- libltdl_cv_sys_dlopen_deplibs=yes
1225
- ;;
1226
- esac
1227
- ])
1228
- if test yes != "$lt_cv_sys_dlopen_deplibs"; then
1229
- AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
1230
- [Define if the OS needs help to load dependent libraries for dlopen().])
1231
- fi
1232
- ])
1233
- m4trace:/usr/local/share/aclocal/ltdl.m4:545: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1234
- m4trace:/usr/local/share/aclocal/ltdl.m4:545: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
1235
- You should run autoupdate.])dnl
1236
- m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1237
- m4trace:/usr/local/share/aclocal/ltdl.m4:577: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1238
- AC_CACHE_CHECK([what extension is used for runtime loadable modules],
1239
- [libltdl_cv_shlibext],
1240
- [
1241
- module=yes
1242
- eval libltdl_cv_shlibext=$shrext_cmds
1243
- module=no
1244
- eval libltdl_cv_shrext=$shrext_cmds
1245
- ])
1246
- if test -n "$libltdl_cv_shlibext"; then
1247
- m4_pattern_allow([LT_MODULE_EXT])dnl
1248
- AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
1249
- [Define to the extension used for runtime loadable modules, say, ".so".])
1250
- fi
1251
- if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
1252
- m4_pattern_allow([LT_SHARED_EXT])dnl
1253
- AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
1254
- [Define to the shared library suffix, say, ".dylib".])
1255
- fi
1256
- if test -n "$shared_archive_member_spec"; then
1257
- m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
1258
- AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
1259
- [Define to the shared archive member specification, say "(shr.o)".])
1260
- fi
1261
- ])
1262
- m4trace:/usr/local/share/aclocal/ltdl.m4:580: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1263
- m4trace:/usr/local/share/aclocal/ltdl.m4:580: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
1264
- You should run autoupdate.])dnl
1265
- m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1266
- m4trace:/usr/local/share/aclocal/ltdl.m4:596: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1267
- AC_CACHE_CHECK([what variable specifies run-time module search path],
1268
- [lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
1269
- if test -n "$lt_cv_module_path_var"; then
1270
- m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
1271
- AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
1272
- [Define to the name of the environment variable that determines the run-time module search path.])
1273
- fi
1274
- ])
1275
- m4trace:/usr/local/share/aclocal/ltdl.m4:599: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1276
- m4trace:/usr/local/share/aclocal/ltdl.m4:599: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
1277
- You should run autoupdate.])dnl
1278
- m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1279
- m4trace:/usr/local/share/aclocal/ltdl.m4:624: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1280
- AC_CACHE_CHECK([for the default library search path],
1281
- [lt_cv_sys_dlsearch_path],
1282
- [lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
1283
- if test -n "$lt_cv_sys_dlsearch_path"; then
1284
- sys_dlsearch_path=
1285
- for dir in $lt_cv_sys_dlsearch_path; do
1286
- if test -z "$sys_dlsearch_path"; then
1287
- sys_dlsearch_path=$dir
1288
- else
1289
- sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
1290
- fi
1291
- done
1292
- m4_pattern_allow([LT_DLSEARCH_PATH])dnl
1293
- AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
1294
- [Define to the system default library search path.])
1295
- fi
1296
- ])
1297
- m4trace:/usr/local/share/aclocal/ltdl.m4:627: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1298
- m4trace:/usr/local/share/aclocal/ltdl.m4:627: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
1299
- You should run autoupdate.])dnl
1300
- m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1301
- m4trace:/usr/local/share/aclocal/ltdl.m4:745: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
1302
- LT_DLLOADERS=
1303
- AC_SUBST([LT_DLLOADERS])
1304
-
1305
- AC_LANG_PUSH([C])
1306
- lt_dlload_save_LIBS=$LIBS
1307
-
1308
- LIBADD_DLOPEN=
1309
- AC_SEARCH_LIBS([dlopen], [dl],
1310
- [AC_DEFINE([HAVE_LIBDL], [1],
1311
- [Define if you have the libdl library or equivalent.])
1312
- if test "$ac_cv_search_dlopen" != "none required"; then
1313
- LIBADD_DLOPEN=-ldl
1314
- fi
1315
- libltdl_cv_lib_dl_dlopen=yes
1316
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1317
- [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
1318
- # include <dlfcn.h>
1319
- #endif
1320
- ]], [[dlopen(0, 0);]])],
1321
- [AC_DEFINE([HAVE_LIBDL], [1],
1322
- [Define if you have the libdl library or equivalent.])
1323
- libltdl_cv_func_dlopen=yes
1324
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1325
- [AC_CHECK_LIB([svld], [dlopen],
1326
- [AC_DEFINE([HAVE_LIBDL], [1],
1327
- [Define if you have the libdl library or equivalent.])
1328
- LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
1329
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
1330
- if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
1331
- then
1332
- lt_save_LIBS=$LIBS
1333
- LIBS="$LIBS $LIBADD_DLOPEN"
1334
- AC_CHECK_FUNCS([dlerror])
1335
- LIBS=$lt_save_LIBS
1336
- fi
1337
- AC_SUBST([LIBADD_DLOPEN])
1338
-
1339
- LIBADD_SHL_LOAD=
1340
- AC_CHECK_FUNC([shl_load],
1341
- [AC_DEFINE([HAVE_SHL_LOAD], [1],
1342
- [Define if you have the shl_load function.])
1343
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
1344
- [AC_CHECK_LIB([dld], [shl_load],
1345
- [AC_DEFINE([HAVE_SHL_LOAD], [1],
1346
- [Define if you have the shl_load function.])
1347
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
1348
- LIBADD_SHL_LOAD=-ldld])])
1349
- AC_SUBST([LIBADD_SHL_LOAD])
1350
-
1351
- case $host_os in
1352
- darwin[[1567]].*)
1353
- # We only want this for pre-Mac OS X 10.4.
1354
- AC_CHECK_FUNC([_dyld_func_lookup],
1355
- [AC_DEFINE([HAVE_DYLD], [1],
1356
- [Define if you have the _dyld_func_lookup function.])
1357
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
1358
- ;;
1359
- beos*)
1360
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
1361
- ;;
1362
- cygwin* | mingw* | pw32*)
1363
- AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
1364
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
1365
- ;;
1366
- esac
1367
-
1368
- AC_CHECK_LIB([dld], [dld_link],
1369
- [AC_DEFINE([HAVE_DLD], [1],
1370
- [Define if you have the GNU dld library.])
1371
- LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
1372
- AC_SUBST([LIBADD_DLD_LINK])
1373
-
1374
- m4_pattern_allow([^LT_DLPREOPEN$])
1375
- LT_DLPREOPEN=
1376
- if test -n "$LT_DLLOADERS"
1377
- then
1378
- for lt_loader in $LT_DLLOADERS; do
1379
- LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
1380
- done
1381
- AC_DEFINE([HAVE_LIBDLLOADER], [1],
1382
- [Define if libdlloader will be built on this platform])
1383
- fi
1384
- AC_SUBST([LT_DLPREOPEN])
1385
-
1386
- dnl This isn't used anymore, but set it for backwards compatibility
1387
- LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
1388
- AC_SUBST([LIBADD_DL])
1389
-
1390
- LIBS=$lt_dlload_save_LIBS
1391
- AC_LANG_POP
1392
- ])
1393
- m4trace:/usr/local/share/aclocal/ltdl.m4:748: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1394
- m4trace:/usr/local/share/aclocal/ltdl.m4:748: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
1395
- You should run autoupdate.])dnl
1396
- m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1397
- m4trace:/usr/local/share/aclocal/ltdl.m4:790: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
1398
- AC_CACHE_CHECK([for _ prefix in compiled symbols],
1399
- [lt_cv_sys_symbol_underscore],
1400
- [lt_cv_sys_symbol_underscore=no
1401
- cat > conftest.$ac_ext <<_LT_EOF
1402
- void nm_test_func(){}
1403
- int main(){nm_test_func;return 0;}
1404
- _LT_EOF
1405
- if AC_TRY_EVAL(ac_compile); then
1406
- # Now try to grab the symbols.
1407
- ac_nlist=conftest.nm
1408
- if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
1409
- # See whether the symbols have a leading underscore.
1410
- if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
1411
- lt_cv_sys_symbol_underscore=yes
1412
- else
1413
- if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
1414
- :
1415
- else
1416
- echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
1417
- fi
1418
- fi
1419
- else
1420
- echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
1421
- fi
1422
- else
1423
- echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
1424
- cat conftest.c >&AS_MESSAGE_LOG_FD
1425
- fi
1426
- rm -rf conftest*
1427
- ])
1428
- sys_symbol_underscore=$lt_cv_sys_symbol_underscore
1429
- AC_SUBST([sys_symbol_underscore])
1430
- ])
1431
- m4trace:/usr/local/share/aclocal/ltdl.m4:793: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1432
- m4trace:/usr/local/share/aclocal/ltdl.m4:793: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
1433
- You should run autoupdate.])dnl
1434
- m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1435
- m4trace:/usr/local/share/aclocal/ltdl.m4:904: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([_LT_COMPILER_PIC])dnl for lt_prog_compiler_wl
1436
- AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
1437
- AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
1438
- if test yes = "$lt_cv_sys_symbol_underscore"; then
1439
- if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
1440
- AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
1441
- [libltdl_cv_need_uscore],
1442
- [libltdl_cv_need_uscore=unknown
1443
- dlsym_uscore_save_LIBS=$LIBS
1444
- LIBS="$LIBS $LIBADD_DLOPEN"
1445
- libname=conftmod # stay within 8.3 filename limits!
1446
- cat >$libname.$ac_ext <<_LT_EOF
1447
- [#line $LINENO "configure"
1448
- #include "confdefs.h"
1449
- /* When -fvisibility=hidden is used, assume the code has been annotated
1450
- correspondingly for the symbols needed. */
1451
- #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
1452
- int fnord () __attribute__((visibility("default")));
1453
- #endif
1454
- int fnord () { return 42; }]
1455
- _LT_EOF
1456
-
1457
- # ltfn_module_cmds module_cmds
1458
- # Execute tilde-delimited MODULE_CMDS with environment primed for
1459
- # $module_cmds or $archive_cmds type content.
1460
- ltfn_module_cmds ()
1461
- {( # subshell avoids polluting parent global environment
1462
- module_cmds_save_ifs=$IFS; IFS='~'
1463
- for cmd in @S|@1; do
1464
- IFS=$module_cmds_save_ifs
1465
- libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
1466
- rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
1467
- major=; versuffix=; verstring=; deplibs=
1468
- ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
1469
- eval $cmd
1470
- done
1471
- IFS=$module_cmds_save_ifs
1472
- )}
1473
-
1474
- # Compile a loadable module using libtool macro expansion results.
1475
- $CC $pic_flag -c $libname.$ac_ext
1476
- ltfn_module_cmds "${module_cmds:-$archive_cmds}"
1477
-
1478
- # Try to fetch fnord with dlsym().
1479
- libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
1480
- cat >conftest.$ac_ext <<_LT_EOF
1481
- [#line $LINENO "configure"
1482
- #include "confdefs.h"
1483
- #if HAVE_DLFCN_H
1484
- #include <dlfcn.h>
1485
- #endif
1486
- #include <stdio.h>
1487
- #ifndef RTLD_GLOBAL
1488
- # ifdef DL_GLOBAL
1489
- # define RTLD_GLOBAL DL_GLOBAL
1490
- # else
1491
- # define RTLD_GLOBAL 0
1492
- # endif
1493
- #endif
1494
- #ifndef RTLD_NOW
1495
- # ifdef DL_NOW
1496
- # define RTLD_NOW DL_NOW
1497
- # else
1498
- # define RTLD_NOW 0
1499
- # endif
1500
- #endif
1501
- int main () {
1502
- void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
1503
- int status = $libltdl_dlunknown;
1504
- if (handle) {
1505
- if (dlsym (handle, "fnord"))
1506
- status = $libltdl_dlnouscore;
1507
- else {
1508
- if (dlsym (handle, "_fnord"))
1509
- status = $libltdl_dluscore;
1510
- else
1511
- puts (dlerror ());
1512
- }
1513
- dlclose (handle);
1514
- } else
1515
- puts (dlerror ());
1516
- return status;
1517
- }]
1518
- _LT_EOF
1519
- if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
1520
- (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1521
- libltdl_status=$?
1522
- case x$libltdl_status in
1523
- x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
1524
- x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
1525
- x*) libltdl_cv_need_uscore=unknown ;;
1526
- esac
1527
- fi
1528
- rm -rf conftest* $libname*
1529
- LIBS=$dlsym_uscore_save_LIBS
1530
- ])
1531
- fi
1532
- fi
1533
-
1534
- if test yes = "$libltdl_cv_need_uscore"; then
1535
- AC_DEFINE([NEED_USCORE], [1],
1536
- [Define if dlsym() requires a leading underscore in symbol names.])
1537
- fi
1538
- ])
1539
- m4trace:/usr/local/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1540
- m4trace:/usr/local/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
1541
- You should run autoupdate.])dnl
1542
- m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1543
- m4trace:/usr/local/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
1544
- m4trace:/usr/local/share/aclocal/ltoptions.m4:118: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
1545
- AC_DIAGNOSE([obsolete],
1546
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1547
- put the 'dlopen' option into LT_INIT's first parameter.])
1548
- ])
1549
- m4trace:/usr/local/share/aclocal/ltoptions.m4:118: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
1550
- You should run autoupdate.])dnl
1551
- _LT_SET_OPTION([LT_INIT], [dlopen])
1552
- AC_DIAGNOSE([obsolete],
1553
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1554
- put the 'dlopen' option into LT_INIT's first parameter.])
1555
- ])
1556
- m4trace:/usr/local/share/aclocal/ltoptions.m4:154: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1557
- _LT_SET_OPTION([LT_INIT], [win32-dll])
1558
- AC_DIAGNOSE([obsolete],
1559
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1560
- put the 'win32-dll' option into LT_INIT's first parameter.])
1561
- ])
1562
- m4trace:/usr/local/share/aclocal/ltoptions.m4:154: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
1563
- You should run autoupdate.])dnl
1564
- AC_REQUIRE([AC_CANONICAL_HOST])dnl
1565
- _LT_SET_OPTION([LT_INIT], [win32-dll])
1566
- AC_DIAGNOSE([obsolete],
1567
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1568
- put the 'win32-dll' option into LT_INIT's first parameter.])
1569
- ])
1570
- m4trace:/usr/local/share/aclocal/ltoptions.m4:199: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
1571
- ])
1572
- m4trace:/usr/local/share/aclocal/ltoptions.m4:203: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
1573
- ])
1574
- m4trace:/usr/local/share/aclocal/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
1575
- m4trace:/usr/local/share/aclocal/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
1576
- You should run autoupdate.])dnl
1577
- AC_ENABLE_SHARED($@)])
1578
- m4trace:/usr/local/share/aclocal/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
1579
- m4trace:/usr/local/share/aclocal/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
1580
- You should run autoupdate.])dnl
1581
- AC_DISABLE_SHARED($@)])
1582
- m4trace:/usr/local/share/aclocal/ltoptions.m4:253: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
1583
- ])
1584
- m4trace:/usr/local/share/aclocal/ltoptions.m4:257: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
1585
- ])
1586
- m4trace:/usr/local/share/aclocal/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
1587
- m4trace:/usr/local/share/aclocal/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
1588
- You should run autoupdate.])dnl
1589
- AC_ENABLE_STATIC($@)])
1590
- m4trace:/usr/local/share/aclocal/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
1591
- m4trace:/usr/local/share/aclocal/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
1592
- You should run autoupdate.])dnl
1593
- AC_DISABLE_STATIC($@)])
1594
- m4trace:/usr/local/share/aclocal/ltoptions.m4:310: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1595
- AC_DIAGNOSE([obsolete],
1596
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1597
- the 'fast-install' option into LT_INIT's first parameter.])
1598
- ])
1599
- m4trace:/usr/local/share/aclocal/ltoptions.m4:310: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
1600
- You should run autoupdate.])dnl
1601
- _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1602
- AC_DIAGNOSE([obsolete],
1603
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1604
- the 'fast-install' option into LT_INIT's first parameter.])
1605
- ])
1606
- m4trace:/usr/local/share/aclocal/ltoptions.m4:317: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1607
- AC_DIAGNOSE([obsolete],
1608
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1609
- the 'disable-fast-install' option into LT_INIT's first parameter.])
1610
- ])
1611
- m4trace:/usr/local/share/aclocal/ltoptions.m4:317: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
1612
- You should run autoupdate.])dnl
1613
- _LT_SET_OPTION([LT_INIT], [disable-fast-install])
1614
- AC_DIAGNOSE([obsolete],
1615
- [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1616
- the 'disable-fast-install' option into LT_INIT's first parameter.])
1617
- ])
1618
- m4trace:/usr/local/share/aclocal/ltoptions.m4:416: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
1619
- AC_DIAGNOSE([obsolete],
1620
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1621
- put the 'pic-only' option into LT_INIT's first parameter.])
1622
- ])
1623
- m4trace:/usr/local/share/aclocal/ltoptions.m4:416: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
1624
- You should run autoupdate.])dnl
1625
- _LT_SET_OPTION([LT_INIT], [pic-only])
1626
- AC_DIAGNOSE([obsolete],
1627
- [$0: Remove this warning and the call to _LT_SET_OPTION when you
1628
- put the 'pic-only' option into LT_INIT's first parameter.])
1629
- ])
1630
- m4trace:/usr/local/share/aclocal/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
1631
- m4trace:/usr/local/share/aclocal/ltversion.m4:23: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.5'
1632
- macro_revision='2.4.5'
1633
- _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
1634
- _LT_DECL(, macro_revision, 0)
1635
- ])
1636
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
1637
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
1638
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
1639
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
1640
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
1641
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
1642
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
1643
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
1644
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
1645
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
1646
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
1647
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
1648
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
1649
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
1650
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
1651
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
1652
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
1653
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
1654
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
1655
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
1656
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
1657
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
1658
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
1659
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
1660
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
1661
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
1662
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
1663
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
1664
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
1665
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
1666
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
1667
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
1668
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
1669
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
1670
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
1671
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
1672
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
1673
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
1674
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
1675
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
1676
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
1677
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
1678
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
1679
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
1680
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
1681
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
1682
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
1683
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
1684
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
1685
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
1686
- m4trace:/usr/local/share/aclocal/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
1687
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/amversion.m4:20: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
1688
- dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1689
- dnl require some minimum version. Point them to the right macro.
1690
- m4_if([$1], [1.15], [],
1691
- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1692
- ])
1693
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/amversion.m4:37: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
1694
- m4_ifndef([AC_AUTOCONF_VERSION],
1695
- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1696
- _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1697
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/ar-lib.m4:60: -1- AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl
1698
- AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl
1699
- AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1700
- AC_REQUIRE_AUX_FILE([ar-lib])dnl
1701
- AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false])
1702
- : ${AR=ar}
1703
-
1704
- AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface],
1705
- [AC_LANG_PUSH([C])
1706
- am_cv_ar_interface=ar
1707
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])],
1708
- [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
1709
- AC_TRY_EVAL([am_ar_try])
1710
- if test "$ac_status" -eq 0; then
1711
- am_cv_ar_interface=ar
1712
- else
1713
- am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
1714
- AC_TRY_EVAL([am_ar_try])
1715
- if test "$ac_status" -eq 0; then
1716
- am_cv_ar_interface=lib
1717
- else
1718
- am_cv_ar_interface=unknown
1719
- fi
1720
- fi
1721
- rm -f conftest.lib libconftest.a
1722
- ])
1723
- AC_LANG_POP([C])])
1724
-
1725
- case $am_cv_ar_interface in
1726
- ar)
1727
- ;;
1728
- lib)
1729
- # Microsoft lib, so override with the ar-lib wrapper script.
1730
- # FIXME: It is wrong to rewrite AR.
1731
- # But if we don't then we get into trouble of one sort or another.
1732
- # A longer-term fix would be to have automake use am__AR in this case,
1733
- # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something
1734
- # similar.
1735
- AR="$am_aux_dir/ar-lib $AR"
1736
- ;;
1737
- unknown)
1738
- m4_default([$1],
1739
- [AC_MSG_ERROR([could not determine $AR interface])])
1740
- ;;
1741
- esac
1742
- AC_SUBST([AR])dnl
1743
- ])
1744
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/auxdir.m4:51: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
1745
- # Expand $ac_aux_dir to an absolute path.
1746
- am_aux_dir=`cd "$ac_aux_dir" && pwd`
1747
- ])
1748
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
1749
- m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
1750
- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1751
- AC_SUBST([$1_TRUE])dnl
1752
- AC_SUBST([$1_FALSE])dnl
1753
- _AM_SUBST_NOTMAKE([$1_TRUE])dnl
1754
- _AM_SUBST_NOTMAKE([$1_FALSE])dnl
1755
- m4_define([_AM_COND_VALUE_$1], [$2])dnl
1756
- if $2; then
1757
- $1_TRUE=
1758
- $1_FALSE='#'
1759
- else
1760
- $1_TRUE='#'
1761
- $1_FALSE=
1762
- fi
1763
- AC_CONFIG_COMMANDS_PRE(
1764
- [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
1765
- AC_MSG_ERROR([[conditional "$1" was never defined.
1766
- Usually this means the macro was only invoked conditionally.]])
1767
- fi])])
1768
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:156: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
1769
- AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1770
- AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1771
- AC_REQUIRE([AM_DEP_TRACK])dnl
1772
-
1773
- m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
1774
- [$1], [CXX], [depcc="$CXX" am_compiler_list=],
1775
- [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
1776
- [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
1777
- [$1], [UPC], [depcc="$UPC" am_compiler_list=],
1778
- [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
1779
- [depcc="$$1" am_compiler_list=])
1780
-
1781
- AC_CACHE_CHECK([dependency style of $depcc],
1782
- [am_cv_$1_dependencies_compiler_type],
1783
- [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1784
- # We make a subdir and do the tests there. Otherwise we can end up
1785
- # making bogus files that we don't know about and never remove. For
1786
- # instance it was reported that on HP-UX the gcc test will end up
1787
- # making a dummy file named 'D' -- because '-MD' means "put the output
1788
- # in D".
1789
- rm -rf conftest.dir
1790
- mkdir conftest.dir
1791
- # Copy depcomp to subdir because otherwise we won't find it if we're
1792
- # using a relative directory.
1793
- cp "$am_depcomp" conftest.dir
1794
- cd conftest.dir
1795
- # We will build objects and dependencies in a subdirectory because
1796
- # it helps to detect inapplicable dependency modes. For instance
1797
- # both Tru64's cc and ICC support -MD to output dependencies as a
1798
- # side effect of compilation, but ICC will put the dependencies in
1799
- # the current directory while Tru64 will put them in the object
1800
- # directory.
1801
- mkdir sub
1802
-
1803
- am_cv_$1_dependencies_compiler_type=none
1804
- if test "$am_compiler_list" = ""; then
1805
- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
1806
- fi
1807
- am__universal=false
1808
- m4_case([$1], [CC],
1809
- [case " $depcc " in #(
1810
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1811
- esac],
1812
- [CXX],
1813
- [case " $depcc " in #(
1814
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1815
- esac])
1816
-
1817
- for depmode in $am_compiler_list; do
1818
- # Setup a source with many dependencies, because some compilers
1819
- # like to wrap large dependency lists on column 80 (with \), and
1820
- # we should not choose a depcomp mode which is confused by this.
1821
- #
1822
- # We need to recreate these files for each test, as the compiler may
1823
- # overwrite some of them when testing with obscure command lines.
1824
- # This happens at least with the AIX C compiler.
1825
- : > sub/conftest.c
1826
- for i in 1 2 3 4 5 6; do
1827
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
1828
- # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
1829
- # Solaris 10 /bin/sh.
1830
- echo '/* dummy */' > sub/conftst$i.h
1831
- done
1832
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
1833
-
1834
- # We check with '-c' and '-o' for the sake of the "dashmstdout"
1835
- # mode. It turns out that the SunPro C++ compiler does not properly
1836
- # handle '-M -o', and we need to detect this. Also, some Intel
1837
- # versions had trouble with output in subdirs.
1838
- am__obj=sub/conftest.${OBJEXT-o}
1839
- am__minus_obj="-o $am__obj"
1840
- case $depmode in
1841
- gcc)
1842
- # This depmode causes a compiler race in universal mode.
1843
- test "$am__universal" = false || continue
1844
- ;;
1845
- nosideeffect)
1846
- # After this tag, mechanisms are not by side-effect, so they'll
1847
- # only be used when explicitly requested.
1848
- if test "x$enable_dependency_tracking" = xyes; then
1849
- continue
1850
- else
1851
- break
1852
- fi
1853
- ;;
1854
- msvc7 | msvc7msys | msvisualcpp | msvcmsys)
1855
- # This compiler won't grok '-c -o', but also, the minuso test has
1856
- # not run yet. These depmodes are late enough in the game, and
1857
- # so weak that their functioning should not be impacted.
1858
- am__obj=conftest.${OBJEXT-o}
1859
- am__minus_obj=
1860
- ;;
1861
- none) break ;;
1862
- esac
1863
- if depmode=$depmode \
1864
- source=sub/conftest.c object=$am__obj \
1865
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
1866
- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
1867
- >/dev/null 2>conftest.err &&
1868
- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
1869
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
1870
- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
1871
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
1872
- # icc doesn't choke on unknown options, it will just issue warnings
1873
- # or remarks (even with -Werror). So we grep stderr for any message
1874
- # that says an option was ignored or not supported.
1875
- # When given -MP, icc 7.0 and 7.1 complain thusly:
1876
- # icc: Command line warning: ignoring option '-M'; no argument required
1877
- # The diagnosis changed in icc 8.0:
1878
- # icc: Command line remark: option '-MP' not supported
1879
- if (grep 'ignoring option' conftest.err ||
1880
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
1881
- am_cv_$1_dependencies_compiler_type=$depmode
1882
- break
1883
- fi
1884
- fi
1885
- done
1886
-
1887
- cd ..
1888
- rm -rf conftest.dir
1889
- else
1890
- am_cv_$1_dependencies_compiler_type=none
1891
- fi
1892
- ])
1893
- AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
1894
- AM_CONDITIONAL([am__fastdep$1], [
1895
- test "x$enable_dependency_tracking" != xno \
1896
- && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
1897
- ])
1898
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:166: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1899
- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
1900
- ])
1901
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:189: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
1902
- AS_HELP_STRING(
1903
- [--enable-dependency-tracking],
1904
- [do not reject slow dependency extractors])
1905
- AS_HELP_STRING(
1906
- [--disable-dependency-tracking],
1907
- [speeds up one-time build])])
1908
- if test "x$enable_dependency_tracking" != xno; then
1909
- am_depcomp="$ac_aux_dir/depcomp"
1910
- AMDEPBACKSLASH='\'
1911
- am__nodep='_no'
1912
- fi
1913
- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
1914
- AC_SUBST([AMDEPBACKSLASH])dnl
1915
- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
1916
- AC_SUBST([am__nodep])dnl
1917
- _AM_SUBST_NOTMAKE([am__nodep])dnl
1918
- ])
1919
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depout.m4:61: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
1920
- # Older Autoconf quotes --file arguments for eval, but not when files
1921
- # are listed without --file. Let's play safe and only enable the eval
1922
- # if we detect the quoting.
1923
- case $CONFIG_FILES in
1924
- *\'*) eval set x "$CONFIG_FILES" ;;
1925
- *) set x $CONFIG_FILES ;;
1926
- esac
1927
- shift
1928
- for mf
1929
- do
1930
- # Strip MF so we end up with the name of the file.
1931
- mf=`echo "$mf" | sed -e 's/:.*$//'`
1932
- # Check whether this is an Automake generated Makefile or not.
1933
- # We used to match only the files named 'Makefile.in', but
1934
- # some people rename them; so instead we look at the file content.
1935
- # Grep'ing the first line is not enough: some people post-process
1936
- # each Makefile.in and add a new line on top of each file to say so.
1937
- # Grep'ing the whole file is not good either: AIX grep has a line
1938
- # limit of 2048, but all sed's we know have understand at least 4000.
1939
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1940
- dirpart=`AS_DIRNAME("$mf")`
1941
- else
1942
- continue
1943
- fi
1944
- # Extract the definition of DEPDIR, am__include, and am__quote
1945
- # from the Makefile without running 'make'.
1946
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1947
- test -z "$DEPDIR" && continue
1948
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
1949
- test -z "$am__include" && continue
1950
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1951
- # Find all dependency output files, they are included files with
1952
- # $(DEPDIR) in their names. We invoke sed twice because it is the
1953
- # simplest approach to changing $(DEPDIR) to its actual value in the
1954
- # expansion.
1955
- for file in `sed -n "
1956
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1957
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
1958
- # Make sure the directory exists.
1959
- test -f "$dirpart/$file" && continue
1960
- fdir=`AS_DIRNAME(["$file"])`
1961
- AS_MKDIR_P([$dirpart/$fdir])
1962
- # echo "creating $dirpart/$file"
1963
- echo '# dummy' > "$dirpart/$file"
1964
- done
1965
- done
1966
- }
1967
- ])
1968
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
1969
- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
1970
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
1971
- ])
1972
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/init.m4:171: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
1973
- dnl Autoconf wants to disallow AM_ names. We explicitly allow
1974
- dnl the ones we care about.
1975
- m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
1976
- AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
1977
- AC_REQUIRE([AC_PROG_INSTALL])dnl
1978
- if test "`cd $srcdir && pwd`" != "`pwd`"; then
1979
- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
1980
- # is not polluted with repeated "-I."
1981
- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
1982
- # test to see if srcdir already configured
1983
- if test -f $srcdir/config.status; then
1984
- AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
1985
- fi
1986
- fi
1987
-
1988
- # test whether we have cygpath
1989
- if test -z "$CYGPATH_W"; then
1990
- if (cygpath --version) >/dev/null 2>/dev/null; then
1991
- CYGPATH_W='cygpath -w'
1992
- else
1993
- CYGPATH_W=echo
1994
- fi
1995
- fi
1996
- AC_SUBST([CYGPATH_W])
1997
-
1998
- # Define the identity of the package.
1999
- dnl Distinguish between old-style and new-style calls.
2000
- m4_ifval([$2],
2001
- [AC_DIAGNOSE([obsolete],
2002
- [$0: two- and three-arguments forms are deprecated.])
2003
- m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
2004
- AC_SUBST([PACKAGE], [$1])dnl
2005
- AC_SUBST([VERSION], [$2])],
2006
- [_AM_SET_OPTIONS([$1])dnl
2007
- dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
2008
- m4_if(
2009
- m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
2010
- [ok:ok],,
2011
- [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
2012
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
2013
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
2014
-
2015
- _AM_IF_OPTION([no-define],,
2016
- [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
2017
- AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
2018
-
2019
- # Some tools Automake needs.
2020
- AC_REQUIRE([AM_SANITY_CHECK])dnl
2021
- AC_REQUIRE([AC_ARG_PROGRAM])dnl
2022
- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2023
- AM_MISSING_PROG([AUTOCONF], [autoconf])
2024
- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2025
- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2026
- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2027
- AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2028
- AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
2029
- AC_REQUIRE([AC_PROG_MKDIR_P])dnl
2030
- # For better backward compatibility. To be removed once Automake 1.9.x
2031
- # dies out for good. For more background, see:
2032
- # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2033
- # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2034
- AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
2035
- # We need awk for the "check" target (and possibly the TAP driver). The
2036
- # system "awk" is bad on some platforms.
2037
- AC_REQUIRE([AC_PROG_AWK])dnl
2038
- AC_REQUIRE([AC_PROG_MAKE_SET])dnl
2039
- AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2040
- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
2041
- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2042
- [_AM_PROG_TAR([v7])])])
2043
- _AM_IF_OPTION([no-dependencies],,
2044
- [AC_PROVIDE_IFELSE([AC_PROG_CC],
2045
- [_AM_DEPENDENCIES([CC])],
2046
- [m4_define([AC_PROG_CC],
2047
- m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2048
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
2049
- [_AM_DEPENDENCIES([CXX])],
2050
- [m4_define([AC_PROG_CXX],
2051
- m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2052
- AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2053
- [_AM_DEPENDENCIES([OBJC])],
2054
- [m4_define([AC_PROG_OBJC],
2055
- m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2056
- AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2057
- [_AM_DEPENDENCIES([OBJCXX])],
2058
- [m4_define([AC_PROG_OBJCXX],
2059
- m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2060
- ])
2061
- AC_REQUIRE([AM_SILENT_RULES])dnl
2062
- dnl The testsuite driver may need to know about EXEEXT, so add the
2063
- dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
2064
- dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
2065
- AC_CONFIG_COMMANDS_PRE(dnl
2066
- [m4_provide_if([_AM_COMPILER_EXEEXT],
2067
- [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
2068
-
2069
- # POSIX will say in a future version that running "rm -f" with no argument
2070
- # is OK; and we want to be able to make that assumption in our Makefile
2071
- # recipes. So use an aggressive probe to check that the usage we want is
2072
- # actually supported "in the wild" to an acceptable degree.
2073
- # See automake bug#10828.
2074
- # To make any issue more visible, cause the running configure to be aborted
2075
- # by default if the 'rm' program in use doesn't match our expectations; the
2076
- # user can still override this though.
2077
- if rm -f && rm -fr && rm -rf; then : OK; else
2078
- cat >&2 <<'END'
2079
- Oops!
2080
-
2081
- Your 'rm' program seems unable to run without file operands specified
2082
- on the command line, even when the '-f' option is present. This is contrary
2083
- to the behaviour of most rm programs out there, and not conforming with
2084
- the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2085
-
2086
- Please tell bug-automake@gnu.org about your system, including the value
2087
- of your $PATH and any error possibly output before this message. This
2088
- can help us improve future automake versions.
2089
-
2090
- END
2091
- if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2092
- echo 'Configuration will proceed anyway, since you have set the' >&2
2093
- echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2094
- echo >&2
2095
- else
2096
- cat >&2 <<'END'
2097
- Aborting the configuration process, to ensure you take notice of the issue.
2098
-
2099
- You can download and install GNU coreutils to get an 'rm' implementation
2100
- that behaves properly: <http://www.gnu.org/software/coreutils/>.
2101
-
2102
- If you want to complete the configuration process using your problematic
2103
- 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2104
- to "yes", and re-run configure.
2105
-
2106
- END
2107
- AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
2108
- fi
2109
- fi
2110
- dnl The trailing newline in this macro's definition is deliberate, for
2111
- dnl backward compatibility and to allow trailing 'dnl'-style comments
2112
- dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
2113
- ])
2114
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/init.m4:198: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
2115
- _am_arg=$1
2116
- _am_stamp_count=1
2117
- for _am_header in $config_headers :; do
2118
- case $_am_header in
2119
- $_am_arg | $_am_arg:* )
2120
- break ;;
2121
- * )
2122
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
2123
- esac
2124
- done
2125
- echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
2126
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/install-sh.m4:21: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2127
- if test x"${install_sh+set}" != xset; then
2128
- case $am_aux_dir in
2129
- *\ * | *\ *)
2130
- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2131
- *)
2132
- install_sh="\${SHELL} $am_aux_dir/install-sh"
2133
- esac
2134
- fi
2135
- AC_SUBST([install_sh])])
2136
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/lead-dot.m4:19: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
2137
- mkdir .tst 2>/dev/null
2138
- if test -d .tst; then
2139
- am__leading_dot=.
2140
- else
2141
- am__leading_dot=_
2142
- fi
2143
- rmdir .tst 2>/dev/null
2144
- AC_SUBST([am__leading_dot])])
2145
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/make.m4:49: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
2146
- cat > confinc << 'END'
2147
- am__doit:
2148
- @echo this is the am__doit target
2149
- .PHONY: am__doit
2150
- END
2151
- # If we don't find an include directive, just comment out the code.
2152
- AC_MSG_CHECKING([for style of include used by $am_make])
2153
- am__include="#"
2154
- am__quote=
2155
- _am_result=none
2156
- # First try GNU make style include.
2157
- echo "include confinc" > confmf
2158
- # Ignore all kinds of additional output from 'make'.
2159
- case `$am_make -s -f confmf 2> /dev/null` in #(
2160
- *the\ am__doit\ target*)
2161
- am__include=include
2162
- am__quote=
2163
- _am_result=GNU
2164
- ;;
2165
- esac
2166
- # Now try BSD make style include.
2167
- if test "$am__include" = "#"; then
2168
- echo '.include "confinc"' > confmf
2169
- case `$am_make -s -f confmf 2> /dev/null` in #(
2170
- *the\ am__doit\ target*)
2171
- am__include=.include
2172
- am__quote="\""
2173
- _am_result=BSD
2174
- ;;
2175
- esac
2176
- fi
2177
- AC_SUBST([am__include])
2178
- AC_SUBST([am__quote])
2179
- AC_MSG_RESULT([$_am_result])
2180
- rm -f confinc confmf
2181
- ])
2182
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
2183
- $1=${$1-"${am_missing_run}$2"}
2184
- AC_SUBST($1)])
2185
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/missing.m4:38: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2186
- AC_REQUIRE_AUX_FILE([missing])dnl
2187
- if test x"${MISSING+set}" != xset; then
2188
- case $am_aux_dir in
2189
- *\ * | *\ *)
2190
- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2191
- *)
2192
- MISSING="\${SHELL} $am_aux_dir/missing" ;;
2193
- esac
2194
- fi
2195
- # Use eval to expand $SHELL
2196
- if eval "$MISSING --is-lightweight"; then
2197
- am_missing_run="$MISSING "
2198
- else
2199
- am_missing_run=
2200
- AC_MSG_WARN(['missing' script is too old or missing])
2201
- fi
2202
- ])
2203
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:12: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
2204
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:18: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
2205
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:24: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
2206
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:30: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
2207
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/prog-cc-c-o.m4:44: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2208
- AC_REQUIRE_AUX_FILE([compile])dnl
2209
- AC_LANG_PUSH([C])dnl
2210
- AC_CACHE_CHECK(
2211
- [whether $CC understands -c and -o together],
2212
- [am_cv_prog_cc_c_o],
2213
- [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
2214
- # Make sure it works both with $CC and with simple cc.
2215
- # Following AC_PROG_CC_C_O, we do the test twice because some
2216
- # compilers refuse to overwrite an existing .o file with -o,
2217
- # though they will create one.
2218
- am_cv_prog_cc_c_o=yes
2219
- for am_i in 1 2; do
2220
- if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
2221
- && test -f conftest2.$ac_objext; then
2222
- : OK
2223
- else
2224
- am_cv_prog_cc_c_o=no
2225
- break
2226
- fi
2227
- done
2228
- rm -f core conftest*
2229
- unset am_i])
2230
- if test "$am_cv_prog_cc_c_o" != yes; then
2231
- # Losing compiler, so override with the script.
2232
- # FIXME: It is wrong to rewrite CC.
2233
- # But if we don't then we get into trouble of one sort or another.
2234
- # A longer-term fix would be to have automake use am__CC in this case,
2235
- # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
2236
- CC="$am_aux_dir/compile $CC"
2237
- fi
2238
- AC_LANG_POP([C])])
2239
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
2240
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
2241
- ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
2242
- ac_status=$?
2243
- echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2244
- (exit $ac_status); }])
2245
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/sanity.m4:82: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
2246
- # Reject unsafe characters in $srcdir or the absolute working directory
2247
- # name. Accept space and tab only in the latter.
2248
- am_lf='
2249
- '
2250
- case `pwd` in
2251
- *[[\\\"\#\$\&\'\`$am_lf]]*)
2252
- AC_MSG_ERROR([unsafe absolute working directory name]);;
2253
- esac
2254
- case $srcdir in
2255
- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
2256
- AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
2257
- esac
2258
-
2259
- # Do 'set' in a subshell so we don't clobber the current shell's
2260
- # arguments. Must try -L first in case configure is actually a
2261
- # symlink; some systems play weird games with the mod time of symlinks
2262
- # (eg FreeBSD returns the mod time of the symlink's containing
2263
- # directory).
2264
- if (
2265
- am_has_slept=no
2266
- for am_try in 1 2; do
2267
- echo "timestamp, slept: $am_has_slept" > conftest.file
2268
- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2269
- if test "$[*]" = "X"; then
2270
- # -L didn't work.
2271
- set X `ls -t "$srcdir/configure" conftest.file`
2272
- fi
2273
- if test "$[*]" != "X $srcdir/configure conftest.file" \
2274
- && test "$[*]" != "X conftest.file $srcdir/configure"; then
2275
-
2276
- # If neither matched, then we have a broken ls. This can happen
2277
- # if, for instance, CONFIG_SHELL is bash and it inherits a
2278
- # broken ls alias from the environment. This has actually
2279
- # happened. Such a system could not be considered "sane".
2280
- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
2281
- alias in your environment])
2282
- fi
2283
- if test "$[2]" = conftest.file || test $am_try -eq 2; then
2284
- break
2285
- fi
2286
- # Just in case.
2287
- sleep 1
2288
- am_has_slept=yes
2289
- done
2290
- test "$[2]" = conftest.file
2291
- )
2292
- then
2293
- # Ok.
2294
- :
2295
- else
2296
- AC_MSG_ERROR([newly created file is older than distributed files!
2297
- Check your system clock])
2298
- fi
2299
- AC_MSG_RESULT([yes])
2300
- # If we didn't sleep, we still need to ensure time stamps of config.status and
2301
- # generated files are strictly newer.
2302
- am_sleep_pid=
2303
- if grep 'slept: no' conftest.file >/dev/null 2>&1; then
2304
- ( sleep 1 ) &
2305
- am_sleep_pid=$!
2306
- fi
2307
- AC_CONFIG_COMMANDS_PRE(
2308
- [AC_MSG_CHECKING([that generated files are newer than configure])
2309
- if test -n "$am_sleep_pid"; then
2310
- # Hide warnings about reused PIDs.
2311
- wait $am_sleep_pid 2>/dev/null
2312
- fi
2313
- AC_MSG_RESULT([done])])
2314
- rm -f conftest.file
2315
- ])
2316
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/silent.m4:60: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
2317
- AS_HELP_STRING(
2318
- [--enable-silent-rules],
2319
- [less verbose build output (undo: "make V=1")])
2320
- AS_HELP_STRING(
2321
- [--disable-silent-rules],
2322
- [verbose build output (undo: "make V=0")])dnl
2323
- ])
2324
- case $enable_silent_rules in @%:@ (((
2325
- yes) AM_DEFAULT_VERBOSITY=0;;
2326
- no) AM_DEFAULT_VERBOSITY=1;;
2327
- *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
2328
- esac
2329
- dnl
2330
- dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
2331
- dnl do not support nested variable expansions.
2332
- dnl See automake bug#9928 and bug#10237.
2333
- am_make=${MAKE-make}
2334
- AC_CACHE_CHECK([whether $am_make supports nested variables],
2335
- [am_cv_make_support_nested_variables],
2336
- [if AS_ECHO([['TRUE=$(BAR$(V))
2337
- BAR0=false
2338
- BAR1=true
2339
- V=1
2340
- am__doit:
2341
- @$(TRUE)
2342
- .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
2343
- am_cv_make_support_nested_variables=yes
2344
- else
2345
- am_cv_make_support_nested_variables=no
2346
- fi])
2347
- if test $am_cv_make_support_nested_variables = yes; then
2348
- dnl Using '$V' instead of '$(V)' breaks IRIX make.
2349
- AM_V='$(V)'
2350
- AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2351
- else
2352
- AM_V=$AM_DEFAULT_VERBOSITY
2353
- AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2354
- fi
2355
- AC_SUBST([AM_V])dnl
2356
- AM_SUBST_NOTMAKE([AM_V])dnl
2357
- AC_SUBST([AM_DEFAULT_V])dnl
2358
- AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
2359
- AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
2360
- AM_BACKSLASH='\'
2361
- AC_SUBST([AM_BACKSLASH])dnl
2362
- _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
2363
- ])
2364
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2365
- # Installed binaries are usually stripped using 'strip' when the user
2366
- # run "make install-strip". However 'strip' might not be the right
2367
- # tool to use in cross-compilation environments, therefore Automake
2368
- # will honor the 'STRIP' environment variable to overrule this program.
2369
- dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
2370
- if test "$cross_compiling" != no; then
2371
- AC_CHECK_TOOL([STRIP], [strip], :)
2372
- fi
2373
- INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2374
- AC_SUBST([INSTALL_STRIP_PROGRAM])])
2375
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2376
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2377
- m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/tar.m4:132: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
2378
- # in the wild :-( We should find a proper way to deprecate it ...
2379
- AC_SUBST([AMTAR], ['$${TAR-tar}'])
2380
-
2381
- # We'll loop over all known methods to create a tar archive until one works.
2382
- _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
2383
-
2384
- m4_if([$1], [v7],
2385
- [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
2386
-
2387
- [m4_case([$1],
2388
- [ustar],
2389
- [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
2390
- # There is notably a 21 bits limit for the UID and the GID. In fact,
2391
- # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
2392
- # and bug#13588).
2393
- am_max_uid=2097151 # 2^21 - 1
2394
- am_max_gid=$am_max_uid
2395
- # The $UID and $GID variables are not portable, so we need to resort
2396
- # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
2397
- # below are definitely unexpected, so allow the users to see them
2398
- # (that is, avoid stderr redirection).
2399
- am_uid=`id -u || echo unknown`
2400
- am_gid=`id -g || echo unknown`
2401
- AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
2402
- if test $am_uid -le $am_max_uid; then
2403
- AC_MSG_RESULT([yes])
2404
- else
2405
- AC_MSG_RESULT([no])
2406
- _am_tools=none
2407
- fi
2408
- AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
2409
- if test $am_gid -le $am_max_gid; then
2410
- AC_MSG_RESULT([yes])
2411
- else
2412
- AC_MSG_RESULT([no])
2413
- _am_tools=none
2414
- fi],
2415
-
2416
- [pax],
2417
- [],
2418
-
2419
- [m4_fatal([Unknown tar format])])
2420
-
2421
- AC_MSG_CHECKING([how to create a $1 tar archive])
2422
-
2423
- # Go ahead even if we have the value already cached. We do so because we
2424
- # need to set the values for the 'am__tar' and 'am__untar' variables.
2425
- _am_tools=${am_cv_prog_tar_$1-$_am_tools}
2426
-
2427
- for _am_tool in $_am_tools; do
2428
- case $_am_tool in
2429
- gnutar)
2430
- for _am_tar in tar gnutar gtar; do
2431
- AM_RUN_LOG([$_am_tar --version]) && break
2432
- done
2433
- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2434
- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2435
- am__untar="$_am_tar -xf -"
2436
- ;;
2437
- plaintar)
2438
- # Must skip GNU tar: if it does not support --format= it doesn't create
2439
- # ustar tarball either.
2440
- (tar --version) >/dev/null 2>&1 && continue
2441
- am__tar='tar chf - "$$tardir"'
2442
- am__tar_='tar chf - "$tardir"'
2443
- am__untar='tar xf -'
2444
- ;;
2445
- pax)
2446
- am__tar='pax -L -x $1 -w "$$tardir"'
2447
- am__tar_='pax -L -x $1 -w "$tardir"'
2448
- am__untar='pax -r'
2449
- ;;
2450
- cpio)
2451
- am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2452
- am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2453
- am__untar='cpio -i -H $1 -d'
2454
- ;;
2455
- none)
2456
- am__tar=false
2457
- am__tar_=false
2458
- am__untar=false
2459
- ;;
2460
- esac
2461
-
2462
- # If the value was cached, stop now. We just wanted to have am__tar
2463
- # and am__untar set.
2464
- test -n "${am_cv_prog_tar_$1}" && break
2465
-
2466
- # tar/untar a dummy directory, and stop if the command works.
2467
- rm -rf conftest.dir
2468
- mkdir conftest.dir
2469
- echo GrepMe > conftest.dir/file
2470
- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2471
- rm -rf conftest.dir
2472
- if test -s conftest.tar; then
2473
- AM_RUN_LOG([$am__untar <conftest.tar])
2474
- AM_RUN_LOG([cat conftest.dir/file])
2475
- grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2476
- fi
2477
- done
2478
- rm -rf conftest.dir
2479
-
2480
- AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2481
- AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2482
-
2483
- AC_SUBST([am__tar])
2484
- AC_SUBST([am__untar])
2485
- ])
2486
- m4trace:configure.ac:16: -1- m4_pattern_forbid([^_?A[CHUM]_])
2487
- m4trace:configure.ac:16: -1- m4_pattern_forbid([_AC_])
2488
- m4trace:configure.ac:16: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
2489
- m4trace:configure.ac:16: -1- m4_pattern_allow([^AS_FLAGS$])
2490
- m4trace:configure.ac:16: -1- m4_pattern_forbid([^_?m4_])
2491
- m4trace:configure.ac:16: -1- m4_pattern_forbid([^dnl$])
2492
- m4trace:configure.ac:16: -1- m4_pattern_forbid([^_?AS_])
2493
- m4trace:configure.ac:16: -1- m4_pattern_allow([^SHELL$])
2494
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PATH_SEPARATOR$])
2495
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_NAME$])
2496
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2497
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2498
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_STRING$])
2499
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2500
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_URL$])
2501
- m4trace:configure.ac:16: -1- m4_pattern_allow([^exec_prefix$])
2502
- m4trace:configure.ac:16: -1- m4_pattern_allow([^prefix$])
2503
- m4trace:configure.ac:16: -1- m4_pattern_allow([^program_transform_name$])
2504
- m4trace:configure.ac:16: -1- m4_pattern_allow([^bindir$])
2505
- m4trace:configure.ac:16: -1- m4_pattern_allow([^sbindir$])
2506
- m4trace:configure.ac:16: -1- m4_pattern_allow([^libexecdir$])
2507
- m4trace:configure.ac:16: -1- m4_pattern_allow([^datarootdir$])
2508
- m4trace:configure.ac:16: -1- m4_pattern_allow([^datadir$])
2509
- m4trace:configure.ac:16: -1- m4_pattern_allow([^sysconfdir$])
2510
- m4trace:configure.ac:16: -1- m4_pattern_allow([^sharedstatedir$])
2511
- m4trace:configure.ac:16: -1- m4_pattern_allow([^localstatedir$])
2512
- m4trace:configure.ac:16: -1- m4_pattern_allow([^includedir$])
2513
- m4trace:configure.ac:16: -1- m4_pattern_allow([^oldincludedir$])
2514
- m4trace:configure.ac:16: -1- m4_pattern_allow([^docdir$])
2515
- m4trace:configure.ac:16: -1- m4_pattern_allow([^infodir$])
2516
- m4trace:configure.ac:16: -1- m4_pattern_allow([^htmldir$])
2517
- m4trace:configure.ac:16: -1- m4_pattern_allow([^dvidir$])
2518
- m4trace:configure.ac:16: -1- m4_pattern_allow([^pdfdir$])
2519
- m4trace:configure.ac:16: -1- m4_pattern_allow([^psdir$])
2520
- m4trace:configure.ac:16: -1- m4_pattern_allow([^libdir$])
2521
- m4trace:configure.ac:16: -1- m4_pattern_allow([^localedir$])
2522
- m4trace:configure.ac:16: -1- m4_pattern_allow([^mandir$])
2523
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_NAME$])
2524
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2525
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2526
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_STRING$])
2527
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2528
- m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_URL$])
2529
- m4trace:configure.ac:16: -1- m4_pattern_allow([^DEFS$])
2530
- m4trace:configure.ac:16: -1- m4_pattern_allow([^ECHO_C$])
2531
- m4trace:configure.ac:16: -1- m4_pattern_allow([^ECHO_N$])
2532
- m4trace:configure.ac:16: -1- m4_pattern_allow([^ECHO_T$])
2533
- m4trace:configure.ac:16: -1- m4_pattern_allow([^LIBS$])
2534
- m4trace:configure.ac:16: -1- m4_pattern_allow([^build_alias$])
2535
- m4trace:configure.ac:16: -1- m4_pattern_allow([^host_alias$])
2536
- m4trace:configure.ac:16: -1- m4_pattern_allow([^target_alias$])
2537
- m4trace:configure.ac:17: -1- AC_CONFIG_MACRO_DIR([m4])
2538
- m4trace:configure.ac:18: -1- m4_include([m4/libuv-extra-automake-flags.m4])
2539
- m4trace:configure.ac:19: -1- m4_include([m4/as_case.m4])
2540
- m4trace:configure.ac:20: -1- m4_include([m4/libuv-check-flags.m4])
2541
- m4trace:m4/libuv-check-flags.m4:50: -1- AC_DEFUN([CC_CHECK_CFLAGS_SILENT], [
2542
- AC_CACHE_VAL(AS_TR_SH([cc_cv_cflags_$1]),
2543
- [ac_save_CFLAGS="$CFLAGS"
2544
- CFLAGS="$CFLAGS $1"
2545
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([int a;])],
2546
- [eval "AS_TR_SH([cc_cv_cflags_$1])='yes'"],
2547
- [eval "AS_TR_SH([cc_cv_cflags_$1])='no'"])
2548
- CFLAGS="$ac_save_CFLAGS"
2549
- ])
2550
-
2551
- AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ = xyes],
2552
- [$2], [$3])
2553
- ])
2554
- m4trace:m4/libuv-check-flags.m4:63: -1- AC_DEFUN([CC_CHECK_CFLAGS], [
2555
- AC_CACHE_CHECK([if $CC supports $1 flag],
2556
- AS_TR_SH([cc_cv_cflags_$1]),
2557
- CC_CHECK_CFLAGS_SILENT([$1]) dnl Don't execute actions here!
2558
- )
2559
-
2560
- AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ = xyes],
2561
- [$2], [$3])
2562
- ])
2563
- m4trace:m4/libuv-check-flags.m4:75: -1- AC_DEFUN([CC_CHECK_CFLAG_APPEND], [
2564
- AC_CACHE_CHECK([if $CC supports $1 flag],
2565
- AS_TR_SH([cc_cv_cflags_$1]),
2566
- CC_CHECK_CFLAGS_SILENT([$1]) dnl Don't execute actions here!
2567
- )
2568
-
2569
- AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ = xyes],
2570
- [CFLAGS="$CFLAGS $1"; DEBUG_CFLAGS="$DEBUG_CFLAGS $1"; $2], [$3])
2571
- ])
2572
- m4trace:m4/libuv-check-flags.m4:82: -1- AC_DEFUN([CC_CHECK_CFLAGS_APPEND], [
2573
- for flag in $1; do
2574
- CC_CHECK_CFLAG_APPEND($flag, [$2], [$3])
2575
- done
2576
- ])
2577
- m4trace:m4/libuv-check-flags.m4:102: -1- AC_DEFUN([CC_CHECK_LDFLAGS], [
2578
- AC_CACHE_CHECK([if $CC supports $1 flag],
2579
- AS_TR_SH([cc_cv_ldflags_$1]),
2580
- [ac_save_LDFLAGS="$LDFLAGS"
2581
- LDFLAGS="$LDFLAGS $1"
2582
- AC_LANG_PUSH([C])
2583
- AC_LINK_IFELSE([AC_LANG_SOURCE([int main() { return 1; }])],
2584
- [eval "AS_TR_SH([cc_cv_ldflags_$1])='yes'"],
2585
- [eval "AS_TR_SH([cc_cv_ldflags_$1])="])
2586
- AC_LANG_POP([C])
2587
- LDFLAGS="$ac_save_LDFLAGS"
2588
- ])
2589
-
2590
- AS_IF([eval test x$]AS_TR_SH([cc_cv_ldflags_$1])[ = xyes],
2591
- [$2], [$3])
2592
- ])
2593
- m4trace:m4/libuv-check-flags.m4:127: -1- AC_DEFUN([CC_NOUNDEFINED], [
2594
- dnl We check $host for which systems to enable this for.
2595
- AC_REQUIRE([AC_CANONICAL_HOST])
2596
-
2597
- case $host in
2598
- dnl FreeBSD (et al.) does not complete linking for shared objects when pthreads
2599
- dnl are requested, as different implementations are present; to avoid problems
2600
- dnl use -Wl,-z,defs only for those platform not behaving this way.
2601
- *-freebsd* | *-openbsd*) ;;
2602
- *)
2603
- dnl First of all check for the --no-undefined variant of GNU ld. This allows
2604
- dnl for a much more readable commandline, so that people can understand what
2605
- dnl it does without going to look for what the heck -z defs does.
2606
- for possible_flags in "-Wl,--no-undefined" "-Wl,-z,defs"; do
2607
- CC_CHECK_LDFLAGS([$possible_flags], [LDFLAGS_NOUNDEFINED="$possible_flags"])
2608
- break
2609
- done
2610
- ;;
2611
- esac
2612
-
2613
- AC_SUBST([LDFLAGS_NOUNDEFINED])
2614
- ])
2615
- m4trace:m4/libuv-check-flags.m4:144: -1- AC_DEFUN([CC_CHECK_WERROR], [
2616
- AC_CACHE_CHECK(
2617
- [for $CC way to treat warnings as errors],
2618
- [cc_cv_werror],
2619
- [CC_CHECK_CFLAGS_SILENT([-Werror], [cc_cv_werror=-Werror],
2620
- [CC_CHECK_CFLAGS_SILENT([-errwarn=%all], [cc_cv_werror=-errwarn=%all])])
2621
- ])
2622
- ])
2623
- m4trace:m4/libuv-check-flags.m4:167: -1- AC_DEFUN([CC_CHECK_ATTRIBUTE], [
2624
- AC_REQUIRE([CC_CHECK_WERROR])
2625
- AC_CACHE_CHECK([if $CC supports __attribute__(( ifelse([$2], , [$1], [$2]) ))],
2626
- AS_TR_SH([cc_cv_attribute_$1]),
2627
- [ac_save_CFLAGS="$CFLAGS"
2628
- CFLAGS="$CFLAGS $cc_cv_werror"
2629
- AC_LANG_PUSH([C])
2630
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([$3])],
2631
- [eval "AS_TR_SH([cc_cv_attribute_$1])='yes'"],
2632
- [eval "AS_TR_SH([cc_cv_attribute_$1])='no'"])
2633
- AC_LANG_POP([C])
2634
- CFLAGS="$ac_save_CFLAGS"
2635
- ])
2636
-
2637
- AS_IF([eval test x$]AS_TR_SH([cc_cv_attribute_$1])[ = xyes],
2638
- [AC_DEFINE(
2639
- AS_TR_CPP([SUPPORT_ATTRIBUTE_$1]), 1,
2640
- [Define this if the compiler supports __attribute__(( ifelse([$2], , [$1], [$2]) ))]
2641
- )
2642
- $4],
2643
- [$5])
2644
- ])
2645
- m4trace:m4/libuv-check-flags.m4:174: -1- AC_DEFUN([CC_ATTRIBUTE_CONSTRUCTOR], [
2646
- CC_CHECK_ATTRIBUTE(
2647
- [constructor],,
2648
- [void __attribute__((constructor)) ctor() { int a; }],
2649
- [$1], [$2])
2650
- ])
2651
- m4trace:m4/libuv-check-flags.m4:181: -1- AC_DEFUN([CC_ATTRIBUTE_FORMAT], [
2652
- CC_CHECK_ATTRIBUTE(
2653
- [format], [format(printf, n, n)],
2654
- [void __attribute__((format(printf, 1, 2))) printflike(const char *fmt, ...) { fmt = (void *)0; }],
2655
- [$1], [$2])
2656
- ])
2657
- m4trace:m4/libuv-check-flags.m4:188: -1- AC_DEFUN([CC_ATTRIBUTE_FORMAT_ARG], [
2658
- CC_CHECK_ATTRIBUTE(
2659
- [format_arg], [format_arg(printf)],
2660
- [char *__attribute__((format_arg(1))) gettextlike(const char *fmt) { fmt = (void *)0; }],
2661
- [$1], [$2])
2662
- ])
2663
- m4trace:m4/libuv-check-flags.m4:195: -1- AC_DEFUN([CC_ATTRIBUTE_VISIBILITY], [
2664
- CC_CHECK_ATTRIBUTE(
2665
- [visibility_$1], [visibility("$1")],
2666
- [void __attribute__((visibility("$1"))) $1_function() { }],
2667
- [$2], [$3])
2668
- ])
2669
- m4trace:m4/libuv-check-flags.m4:202: -1- AC_DEFUN([CC_ATTRIBUTE_NONNULL], [
2670
- CC_CHECK_ATTRIBUTE(
2671
- [nonnull], [nonnull()],
2672
- [void __attribute__((nonnull())) some_function(void *foo, void *bar) { foo = (void*)0; bar = (void*)0; }],
2673
- [$1], [$2])
2674
- ])
2675
- m4trace:m4/libuv-check-flags.m4:209: -1- AC_DEFUN([CC_ATTRIBUTE_UNUSED], [
2676
- CC_CHECK_ATTRIBUTE(
2677
- [unused], ,
2678
- [void some_function(void *foo, __attribute__((unused)) void *bar);],
2679
- [$1], [$2])
2680
- ])
2681
- m4trace:m4/libuv-check-flags.m4:216: -1- AC_DEFUN([CC_ATTRIBUTE_SENTINEL], [
2682
- CC_CHECK_ATTRIBUTE(
2683
- [sentinel], ,
2684
- [void some_function(void *foo, ...) __attribute__((sentinel));],
2685
- [$1], [$2])
2686
- ])
2687
- m4trace:m4/libuv-check-flags.m4:223: -1- AC_DEFUN([CC_ATTRIBUTE_DEPRECATED], [
2688
- CC_CHECK_ATTRIBUTE(
2689
- [deprecated], ,
2690
- [void some_function(void *foo, ...) __attribute__((deprecated));],
2691
- [$1], [$2])
2692
- ])
2693
- m4trace:m4/libuv-check-flags.m4:231: -1- AC_DEFUN([CC_ATTRIBUTE_ALIAS], [
2694
- CC_CHECK_ATTRIBUTE(
2695
- [alias], [weak, alias],
2696
- [void other_function(void *foo) { }
2697
- void some_function(void *foo) __attribute__((weak, alias("other_function")));],
2698
- [$1], [$2])
2699
- ])
2700
- m4trace:m4/libuv-check-flags.m4:238: -1- AC_DEFUN([CC_ATTRIBUTE_MALLOC], [
2701
- CC_CHECK_ATTRIBUTE(
2702
- [malloc], ,
2703
- [void * __attribute__((malloc)) my_alloc(int n);],
2704
- [$1], [$2])
2705
- ])
2706
- m4trace:m4/libuv-check-flags.m4:245: -1- AC_DEFUN([CC_ATTRIBUTE_PACKED], [
2707
- CC_CHECK_ATTRIBUTE(
2708
- [packed], ,
2709
- [struct astructure { char a; int b; long c; void *d; } __attribute__((packed));],
2710
- [$1], [$2])
2711
- ])
2712
- m4trace:m4/libuv-check-flags.m4:252: -1- AC_DEFUN([CC_ATTRIBUTE_CONST], [
2713
- CC_CHECK_ATTRIBUTE(
2714
- [const], ,
2715
- [int __attribute__((const)) twopow(int n) { return 1 << n; } ],
2716
- [$1], [$2])
2717
- ])
2718
- m4trace:m4/libuv-check-flags.m4:270: -1- AC_DEFUN([CC_FLAG_VISIBILITY], [
2719
- AC_REQUIRE([CC_CHECK_WERROR])
2720
- AC_CACHE_CHECK([if $CC supports -fvisibility=hidden],
2721
- [cc_cv_flag_visibility],
2722
- [cc_flag_visibility_save_CFLAGS="$CFLAGS"
2723
- CFLAGS="$CFLAGS $cc_cv_werror"
2724
- CC_CHECK_CFLAGS_SILENT([-fvisibility=hidden],
2725
- cc_cv_flag_visibility='yes',
2726
- cc_cv_flag_visibility='no')
2727
- CFLAGS="$cc_flag_visibility_save_CFLAGS"])
2728
-
2729
- AS_IF([test "x$cc_cv_flag_visibility" = "xyes"],
2730
- [AC_DEFINE([SUPPORT_FLAG_VISIBILITY], 1,
2731
- [Define this if the compiler supports the -fvisibility flag])
2732
- $1],
2733
- [$2])
2734
- ])
2735
- m4trace:m4/libuv-check-flags.m4:295: -1- AC_DEFUN([CC_FUNC_EXPECT], [
2736
- AC_REQUIRE([CC_CHECK_WERROR])
2737
- AC_CACHE_CHECK([if compiler has __builtin_expect function],
2738
- [cc_cv_func_expect],
2739
- [ac_save_CFLAGS="$CFLAGS"
2740
- CFLAGS="$CFLAGS $cc_cv_werror"
2741
- AC_LANG_PUSH([C])
2742
- AC_COMPILE_IFELSE([AC_LANG_SOURCE(
2743
- [int some_function() {
2744
- int a = 3;
2745
- return (int)__builtin_expect(a, 3);
2746
- }])],
2747
- [cc_cv_func_expect=yes],
2748
- [cc_cv_func_expect=no])
2749
- AC_LANG_POP([C])
2750
- CFLAGS="$ac_save_CFLAGS"
2751
- ])
2752
-
2753
- AS_IF([test "x$cc_cv_func_expect" = "xyes"],
2754
- [AC_DEFINE([SUPPORT__BUILTIN_EXPECT], 1,
2755
- [Define this if the compiler supports __builtin_expect() function])
2756
- $1],
2757
- [$2])
2758
- ])
2759
- m4trace:m4/libuv-check-flags.m4:319: -1- AC_DEFUN([CC_ATTRIBUTE_ALIGNED], [
2760
- AC_REQUIRE([CC_CHECK_WERROR])
2761
- AC_CACHE_CHECK([highest __attribute__ ((aligned ())) supported],
2762
- [cc_cv_attribute_aligned],
2763
- [ac_save_CFLAGS="$CFLAGS"
2764
- CFLAGS="$CFLAGS $cc_cv_werror"
2765
- AC_LANG_PUSH([C])
2766
- for cc_attribute_align_try in 64 32 16 8 4 2; do
2767
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([
2768
- int main() {
2769
- static char c __attribute__ ((aligned($cc_attribute_align_try))) = 0;
2770
- return c;
2771
- }])], [cc_cv_attribute_aligned=$cc_attribute_align_try; break])
2772
- done
2773
- AC_LANG_POP([C])
2774
- CFLAGS="$ac_save_CFLAGS"
2775
- ])
2776
-
2777
- if test "x$cc_cv_attribute_aligned" != "x"; then
2778
- AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX], [$cc_cv_attribute_aligned],
2779
- [Define the highest alignment supported])
2780
- fi
2781
- ])
2782
- m4trace:configure.ac:21: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects serial-tests])
2783
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
2784
- m4trace:configure.ac:21: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
2785
- m4trace:configure.ac:21: -1- AM_AUTOMAKE_VERSION([1.15])
2786
- m4trace:configure.ac:21: -1- _AM_AUTOCONF_VERSION([2.69])
2787
- m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
2788
- m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
2789
- m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_DATA$])
2790
- m4trace:configure.ac:21: -1- m4_pattern_allow([^am__isrc$])
2791
- m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([am__isrc])
2792
- m4trace:configure.ac:21: -1- m4_pattern_allow([^CYGPATH_W$])
2793
- m4trace:configure.ac:21: -1- _AM_SET_OPTIONS([-Wall -Werror foreign subdir-objects serial-tests])
2794
- m4trace:configure.ac:21: -1- _AM_SET_OPTION([-Wall])
2795
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([-Wall])
2796
- m4trace:configure.ac:21: -1- _AM_SET_OPTION([-Werror])
2797
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([-Werror])
2798
- m4trace:configure.ac:21: -1- _AM_SET_OPTION([foreign])
2799
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([foreign])
2800
- m4trace:configure.ac:21: -1- _AM_SET_OPTION([subdir-objects])
2801
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([subdir-objects])
2802
- m4trace:configure.ac:21: -1- _AM_SET_OPTION([serial-tests])
2803
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([serial-tests])
2804
- m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE$])
2805
- m4trace:configure.ac:21: -1- m4_pattern_allow([^VERSION$])
2806
- m4trace:configure.ac:21: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
2807
- AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
2808
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([no-define])
2809
- m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE$])
2810
- m4trace:configure.ac:21: -1- m4_pattern_allow([^VERSION$])
2811
- m4trace:configure.ac:21: -1- AM_SANITY_CHECK
2812
- m4trace:configure.ac:21: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2813
- m4trace:configure.ac:21: -1- AM_MISSING_HAS_RUN
2814
- m4trace:configure.ac:21: -1- AM_AUX_DIR_EXPAND
2815
- m4trace:configure.ac:21: -1- m4_pattern_allow([^ACLOCAL$])
2816
- m4trace:configure.ac:21: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
2817
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AUTOCONF$])
2818
- m4trace:configure.ac:21: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2819
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AUTOMAKE$])
2820
- m4trace:configure.ac:21: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2821
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AUTOHEADER$])
2822
- m4trace:configure.ac:21: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2823
- m4trace:configure.ac:21: -1- m4_pattern_allow([^MAKEINFO$])
2824
- m4trace:configure.ac:21: -1- AM_PROG_INSTALL_SH
2825
- m4trace:configure.ac:21: -1- m4_pattern_allow([^install_sh$])
2826
- m4trace:configure.ac:21: -1- AM_PROG_INSTALL_STRIP
2827
- m4trace:configure.ac:21: -1- m4_pattern_allow([^STRIP$])
2828
- m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
2829
- m4trace:configure.ac:21: -1- m4_pattern_allow([^MKDIR_P$])
2830
- m4trace:configure.ac:21: -1- m4_pattern_allow([^mkdir_p$])
2831
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AWK$])
2832
- m4trace:configure.ac:21: -1- m4_pattern_allow([^SET_MAKE$])
2833
- m4trace:configure.ac:21: -1- AM_SET_LEADING_DOT
2834
- m4trace:configure.ac:21: -1- m4_pattern_allow([^am__leading_dot$])
2835
- m4trace:configure.ac:21: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2836
- [_AM_PROG_TAR([v7])])])
2837
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([tar-ustar])
2838
- m4trace:configure.ac:21: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
2839
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([tar-pax])
2840
- m4trace:configure.ac:21: -1- _AM_PROG_TAR([v7])
2841
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AMTAR$])
2842
- m4trace:configure.ac:21: -1- m4_pattern_allow([^am__tar$])
2843
- m4trace:configure.ac:21: -1- m4_pattern_allow([^am__untar$])
2844
- m4trace:configure.ac:21: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
2845
- [_AM_DEPENDENCIES([CC])],
2846
- [m4_define([AC_PROG_CC],
2847
- m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2848
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
2849
- [_AM_DEPENDENCIES([CXX])],
2850
- [m4_define([AC_PROG_CXX],
2851
- m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2852
- AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2853
- [_AM_DEPENDENCIES([OBJC])],
2854
- [m4_define([AC_PROG_OBJC],
2855
- m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2856
- AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2857
- [_AM_DEPENDENCIES([OBJCXX])],
2858
- [m4_define([AC_PROG_OBJCXX],
2859
- m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2860
- ])
2861
- m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([no-dependencies])
2862
- m4trace:configure.ac:21: -1- AM_SILENT_RULES
2863
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_V$])
2864
- m4trace:configure.ac:21: -1- AM_SUBST_NOTMAKE([AM_V])
2865
- m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([AM_V])
2866
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_DEFAULT_V$])
2867
- m4trace:configure.ac:21: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
2868
- m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
2869
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
2870
- m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_BACKSLASH$])
2871
- m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
2872
- m4trace:configure.ac:22: -1- m4_pattern_allow([^build$])
2873
- m4trace:configure.ac:22: -1- m4_pattern_allow([^build_cpu$])
2874
- m4trace:configure.ac:22: -1- m4_pattern_allow([^build_vendor$])
2875
- m4trace:configure.ac:22: -1- m4_pattern_allow([^build_os$])
2876
- m4trace:configure.ac:22: -1- m4_pattern_allow([^host$])
2877
- m4trace:configure.ac:22: -1- m4_pattern_allow([^host_cpu$])
2878
- m4trace:configure.ac:22: -1- m4_pattern_allow([^host_vendor$])
2879
- m4trace:configure.ac:22: -1- m4_pattern_allow([^host_os$])
2880
- m4trace:configure.ac:23: -1- AC_ENABLE_SHARED
2881
- m4trace:configure.ac:24: -1- AC_ENABLE_STATIC
2882
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
2883
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CFLAGS$])
2884
- m4trace:configure.ac:25: -1- m4_pattern_allow([^LDFLAGS$])
2885
- m4trace:configure.ac:25: -1- m4_pattern_allow([^LIBS$])
2886
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CPPFLAGS$])
2887
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
2888
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
2889
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
2890
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
2891
- m4trace:configure.ac:25: -1- m4_pattern_allow([^ac_ct_CC$])
2892
- m4trace:configure.ac:25: -1- m4_pattern_allow([^EXEEXT$])
2893
- m4trace:configure.ac:25: -1- m4_pattern_allow([^OBJEXT$])
2894
- m4trace:configure.ac:25: -1- _AM_PROG_CC_C_O
2895
- m4trace:configure.ac:25: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
2896
- m4trace:configure.ac:25: -1- _AM_DEPENDENCIES([CC])
2897
- m4trace:configure.ac:25: -1- AM_SET_DEPDIR
2898
- m4trace:configure.ac:25: -1- m4_pattern_allow([^DEPDIR$])
2899
- m4trace:configure.ac:25: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
2900
- m4trace:configure.ac:25: -1- AM_MAKE_INCLUDE
2901
- m4trace:configure.ac:25: -1- m4_pattern_allow([^am__include$])
2902
- m4trace:configure.ac:25: -1- m4_pattern_allow([^am__quote$])
2903
- m4trace:configure.ac:25: -1- AM_DEP_TRACK
2904
- m4trace:configure.ac:25: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2905
- m4trace:configure.ac:25: -1- m4_pattern_allow([^AMDEP_TRUE$])
2906
- m4trace:configure.ac:25: -1- m4_pattern_allow([^AMDEP_FALSE$])
2907
- m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
2908
- m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
2909
- m4trace:configure.ac:25: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
2910
- m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
2911
- m4trace:configure.ac:25: -1- m4_pattern_allow([^am__nodep$])
2912
- m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__nodep])
2913
- m4trace:configure.ac:25: -1- m4_pattern_allow([^CCDEPMODE$])
2914
- m4trace:configure.ac:25: -1- AM_CONDITIONAL([am__fastdepCC], [
2915
- test "x$enable_dependency_tracking" != xno \
2916
- && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2917
- m4trace:configure.ac:25: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2918
- m4trace:configure.ac:25: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2919
- m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2920
- m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2921
- m4trace:configure.ac:26: -1- AM_PROG_CC_C_O
2922
- m4trace:configure.ac:27: -1- CC_CHECK_CFLAGS_APPEND([-fvisibility=hidden])
2923
- m4trace:configure.ac:27: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2924
- m4trace:configure.ac:27: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2925
- m4trace:configure.ac:28: -1- CC_CHECK_CFLAGS_APPEND([-g])
2926
- m4trace:configure.ac:28: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2927
- m4trace:configure.ac:28: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2928
- m4trace:configure.ac:29: -1- CC_CHECK_CFLAGS_APPEND([-std=gnu89])
2929
- m4trace:configure.ac:29: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2930
- m4trace:configure.ac:29: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2931
- m4trace:configure.ac:30: -1- CC_CHECK_CFLAGS_APPEND([-pedantic])
2932
- m4trace:configure.ac:30: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2933
- m4trace:configure.ac:30: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2934
- m4trace:configure.ac:31: -1- CC_CHECK_CFLAGS_APPEND([-Wall])
2935
- m4trace:configure.ac:31: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2936
- m4trace:configure.ac:31: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2937
- m4trace:configure.ac:32: -1- CC_CHECK_CFLAGS_APPEND([-Wextra])
2938
- m4trace:configure.ac:32: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2939
- m4trace:configure.ac:32: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2940
- m4trace:configure.ac:33: -1- CC_CHECK_CFLAGS_APPEND([-Wno-unused-parameter])
2941
- m4trace:configure.ac:33: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
2942
- m4trace:configure.ac:33: -2- CC_CHECK_CFLAGS_SILENT([$flag])
2943
- m4trace:configure.ac:35: -1- AM_PROG_AR
2944
- m4trace:configure.ac:35: -1- m4_pattern_allow([^AR$])
2945
- m4trace:configure.ac:35: -1- m4_pattern_allow([^ac_ct_AR$])
2946
- m4trace:configure.ac:35: -1- m4_pattern_allow([^AR$])
2947
- m4trace:configure.ac:37: -1- AC_PROG_LIBTOOL
2948
- m4trace:configure.ac:37: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
2949
- You should run autoupdate.], [/usr/local/share/aclocal/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
2950
- configure.ac:37: the top level])
2951
- m4trace:configure.ac:37: -1- LT_INIT
2952
- m4trace:configure.ac:37: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
2953
- m4trace:configure.ac:37: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
2954
- m4trace:configure.ac:37: -1- LTOPTIONS_VERSION
2955
- m4trace:configure.ac:37: -1- LTSUGAR_VERSION
2956
- m4trace:configure.ac:37: -1- LTVERSION_VERSION
2957
- m4trace:configure.ac:37: -1- LTOBSOLETE_VERSION
2958
- m4trace:configure.ac:37: -1- _LT_PROG_LTMAIN
2959
- m4trace:configure.ac:37: -1- m4_pattern_allow([^LIBTOOL$])
2960
- m4trace:configure.ac:37: -1- _LT_PREPARE_SED_QUOTE_VARS
2961
- m4trace:configure.ac:37: -1- _LT_PROG_ECHO_BACKSLASH
2962
- m4trace:configure.ac:37: -1- LT_PATH_LD
2963
- m4trace:configure.ac:37: -1- m4_pattern_allow([^SED$])
2964
- m4trace:configure.ac:37: -1- AC_PROG_EGREP
2965
- m4trace:configure.ac:37: -1- m4_pattern_allow([^GREP$])
2966
- m4trace:configure.ac:37: -1- m4_pattern_allow([^EGREP$])
2967
- m4trace:configure.ac:37: -1- m4_pattern_allow([^FGREP$])
2968
- m4trace:configure.ac:37: -1- m4_pattern_allow([^GREP$])
2969
- m4trace:configure.ac:37: -1- m4_pattern_allow([^LD$])
2970
- m4trace:configure.ac:37: -1- LT_PATH_NM
2971
- m4trace:configure.ac:37: -1- m4_pattern_allow([^DUMPBIN$])
2972
- m4trace:configure.ac:37: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
2973
- m4trace:configure.ac:37: -1- m4_pattern_allow([^DUMPBIN$])
2974
- m4trace:configure.ac:37: -1- m4_pattern_allow([^NM$])
2975
- m4trace:configure.ac:37: -1- m4_pattern_allow([^LN_S$])
2976
- m4trace:configure.ac:37: -1- LT_CMD_MAX_LEN
2977
- m4trace:configure.ac:37: -1- m4_pattern_allow([^OBJDUMP$])
2978
- m4trace:configure.ac:37: -1- m4_pattern_allow([^OBJDUMP$])
2979
- m4trace:configure.ac:37: -1- m4_pattern_allow([^DLLTOOL$])
2980
- m4trace:configure.ac:37: -1- m4_pattern_allow([^DLLTOOL$])
2981
- m4trace:configure.ac:37: -1- m4_pattern_allow([^AR$])
2982
- m4trace:configure.ac:37: -1- m4_pattern_allow([^ac_ct_AR$])
2983
- m4trace:configure.ac:37: -1- m4_pattern_allow([^STRIP$])
2984
- m4trace:configure.ac:37: -1- m4_pattern_allow([^RANLIB$])
2985
- m4trace:configure.ac:37: -1- _LT_WITH_SYSROOT
2986
- m4trace:configure.ac:37: -1- m4_pattern_allow([LT_OBJDIR])
2987
- m4trace:configure.ac:37: -1- m4_pattern_allow([^LT_OBJDIR$])
2988
- m4trace:configure.ac:37: -1- _LT_CC_BASENAME([$compiler])
2989
- m4trace:configure.ac:37: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
2990
- m4trace:configure.ac:37: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
2991
- m4trace:configure.ac:37: -1- LT_SUPPORTED_TAG([CC])
2992
- m4trace:configure.ac:37: -1- _LT_COMPILER_BOILERPLATE
2993
- m4trace:configure.ac:37: -1- _LT_LINKER_BOILERPLATE
2994
- m4trace:configure.ac:37: -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"])
2995
- m4trace:configure.ac:37: -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
2996
- "" | " "*) ;;
2997
- *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
2998
- esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
2999
- _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
3000
- m4trace:configure.ac:37: -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, )=])
3001
- m4trace:configure.ac:37: -1- m4_pattern_allow([^MANIFEST_TOOL$])
3002
- m4trace:configure.ac:37: -1- _LT_DLL_DEF_P([$export_symbols])
3003
- m4trace:configure.ac:37: -1- _LT_DLL_DEF_P([$export_symbols])
3004
- m4trace:configure.ac:37: -1- _LT_REQUIRED_DARWIN_CHECKS
3005
- m4trace:configure.ac:37: -1- m4_pattern_allow([^DSYMUTIL$])
3006
- m4trace:configure.ac:37: -1- m4_pattern_allow([^NMEDIT$])
3007
- m4trace:configure.ac:37: -1- m4_pattern_allow([^LIPO$])
3008
- m4trace:configure.ac:37: -1- m4_pattern_allow([^OTOOL$])
3009
- m4trace:configure.ac:37: -1- m4_pattern_allow([^OTOOL64$])
3010
- m4trace:configure.ac:37: -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'])
3011
- m4trace:configure.ac:37: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
3012
- m4trace:configure.ac:37: -1- LT_SYS_DLOPEN_SELF
3013
- m4trace:configure.ac:37: -1- m4_pattern_allow([^CPP$])
3014
- m4trace:configure.ac:37: -1- m4_pattern_allow([^CPPFLAGS$])
3015
- m4trace:configure.ac:37: -1- m4_pattern_allow([^CPP$])
3016
- m4trace:configure.ac:37: -1- m4_pattern_allow([^STDC_HEADERS$])
3017
- m4trace:configure.ac:37: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
3018
- m4trace:configure.ac:38: -1- AM_SILENT_RULES([yes])
3019
- m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_V$])
3020
- m4trace:configure.ac:38: -1- AM_SUBST_NOTMAKE([AM_V])
3021
- m4trace:configure.ac:38: -1- _AM_SUBST_NOTMAKE([AM_V])
3022
- m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_DEFAULT_V$])
3023
- m4trace:configure.ac:38: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
3024
- m4trace:configure.ac:38: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
3025
- m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
3026
- m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_BACKSLASH$])
3027
- m4trace:configure.ac:38: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
3028
- m4trace:configure.ac:39: -1- LT_INIT
3029
- m4trace:configure.ac:41: -1- m4_pattern_allow([^HAVE_LIBDL$])
3030
- m4trace:configure.ac:42: -1- m4_pattern_allow([^HAVE_LIBKSTAT$])
3031
- m4trace:configure.ac:43: -1- m4_pattern_allow([^HAVE_LIBKVM$])
3032
- m4trace:configure.ac:44: -1- m4_pattern_allow([^HAVE_LIBNSL$])
3033
- m4trace:configure.ac:45: -1- m4_pattern_allow([^HAVE_LIBPERFSTAT$])
3034
- m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$])
3035
- m4trace:configure.ac:47: -1- m4_pattern_allow([^HAVE_LIBRT$])
3036
- m4trace:configure.ac:48: -1- m4_pattern_allow([^HAVE_LIBSENDFILE$])
3037
- m4trace:configure.ac:49: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
3038
- m4trace:configure.ac:50: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$])
3039
- m4trace:configure.ac:50: -1- m4_pattern_allow([^_LARGE_FILES$])
3040
- m4trace:configure.ac:51: -1- AM_CONDITIONAL([AIX], [AS_CASE([$host_os],[aix*], [true], [false])])
3041
- m4trace:configure.ac:51: -1- m4_pattern_allow([^AIX_TRUE$])
3042
- m4trace:configure.ac:51: -1- m4_pattern_allow([^AIX_FALSE$])
3043
- m4trace:configure.ac:51: -1- _AM_SUBST_NOTMAKE([AIX_TRUE])
3044
- m4trace:configure.ac:51: -1- _AM_SUBST_NOTMAKE([AIX_FALSE])
3045
- m4trace:configure.ac:52: -1- AM_CONDITIONAL([ANDROID], [AS_CASE([$host_os],[linux-android*],[true], [false])])
3046
- m4trace:configure.ac:52: -1- m4_pattern_allow([^ANDROID_TRUE$])
3047
- m4trace:configure.ac:52: -1- m4_pattern_allow([^ANDROID_FALSE$])
3048
- m4trace:configure.ac:52: -1- _AM_SUBST_NOTMAKE([ANDROID_TRUE])
3049
- m4trace:configure.ac:52: -1- _AM_SUBST_NOTMAKE([ANDROID_FALSE])
3050
- m4trace:configure.ac:53: -1- AM_CONDITIONAL([DARWIN], [AS_CASE([$host_os],[darwin*], [true], [false])])
3051
- m4trace:configure.ac:53: -1- m4_pattern_allow([^DARWIN_TRUE$])
3052
- m4trace:configure.ac:53: -1- m4_pattern_allow([^DARWIN_FALSE$])
3053
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([DARWIN_TRUE])
3054
- m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([DARWIN_FALSE])
3055
- m4trace:configure.ac:54: -1- AM_CONDITIONAL([DRAGONFLY], [AS_CASE([$host_os],[dragonfly*], [true], [false])])
3056
- m4trace:configure.ac:54: -1- m4_pattern_allow([^DRAGONFLY_TRUE$])
3057
- m4trace:configure.ac:54: -1- m4_pattern_allow([^DRAGONFLY_FALSE$])
3058
- m4trace:configure.ac:54: -1- _AM_SUBST_NOTMAKE([DRAGONFLY_TRUE])
3059
- m4trace:configure.ac:54: -1- _AM_SUBST_NOTMAKE([DRAGONFLY_FALSE])
3060
- m4trace:configure.ac:55: -1- AM_CONDITIONAL([FREEBSD], [AS_CASE([$host_os],[freebsd*], [true], [false])])
3061
- m4trace:configure.ac:55: -1- m4_pattern_allow([^FREEBSD_TRUE$])
3062
- m4trace:configure.ac:55: -1- m4_pattern_allow([^FREEBSD_FALSE$])
3063
- m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([FREEBSD_TRUE])
3064
- m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([FREEBSD_FALSE])
3065
- m4trace:configure.ac:56: -1- AM_CONDITIONAL([LINUX], [AS_CASE([$host_os],[linux*], [true], [false])])
3066
- m4trace:configure.ac:56: -1- m4_pattern_allow([^LINUX_TRUE$])
3067
- m4trace:configure.ac:56: -1- m4_pattern_allow([^LINUX_FALSE$])
3068
- m4trace:configure.ac:56: -1- _AM_SUBST_NOTMAKE([LINUX_TRUE])
3069
- m4trace:configure.ac:56: -1- _AM_SUBST_NOTMAKE([LINUX_FALSE])
3070
- m4trace:configure.ac:57: -1- AM_CONDITIONAL([NETBSD], [AS_CASE([$host_os],[netbsd*], [true], [false])])
3071
- m4trace:configure.ac:57: -1- m4_pattern_allow([^NETBSD_TRUE$])
3072
- m4trace:configure.ac:57: -1- m4_pattern_allow([^NETBSD_FALSE$])
3073
- m4trace:configure.ac:57: -1- _AM_SUBST_NOTMAKE([NETBSD_TRUE])
3074
- m4trace:configure.ac:57: -1- _AM_SUBST_NOTMAKE([NETBSD_FALSE])
3075
- m4trace:configure.ac:58: -1- AM_CONDITIONAL([OPENBSD], [AS_CASE([$host_os],[openbsd*], [true], [false])])
3076
- m4trace:configure.ac:58: -1- m4_pattern_allow([^OPENBSD_TRUE$])
3077
- m4trace:configure.ac:58: -1- m4_pattern_allow([^OPENBSD_FALSE$])
3078
- m4trace:configure.ac:58: -1- _AM_SUBST_NOTMAKE([OPENBSD_TRUE])
3079
- m4trace:configure.ac:58: -1- _AM_SUBST_NOTMAKE([OPENBSD_FALSE])
3080
- m4trace:configure.ac:59: -1- AM_CONDITIONAL([SUNOS], [AS_CASE([$host_os],[solaris*], [true], [false])])
3081
- m4trace:configure.ac:59: -1- m4_pattern_allow([^SUNOS_TRUE$])
3082
- m4trace:configure.ac:59: -1- m4_pattern_allow([^SUNOS_FALSE$])
3083
- m4trace:configure.ac:59: -1- _AM_SUBST_NOTMAKE([SUNOS_TRUE])
3084
- m4trace:configure.ac:59: -1- _AM_SUBST_NOTMAKE([SUNOS_FALSE])
3085
- m4trace:configure.ac:60: -1- AM_CONDITIONAL([WINNT], [AS_CASE([$host_os],[mingw*], [true], [false])])
3086
- m4trace:configure.ac:60: -1- m4_pattern_allow([^WINNT_TRUE$])
3087
- m4trace:configure.ac:60: -1- m4_pattern_allow([^WINNT_FALSE$])
3088
- m4trace:configure.ac:60: -1- _AM_SUBST_NOTMAKE([WINNT_TRUE])
3089
- m4trace:configure.ac:60: -1- _AM_SUBST_NOTMAKE([WINNT_FALSE])
3090
- m4trace:configure.ac:61: -1- m4_pattern_allow([^PKG_CONFIG$])
3091
- m4trace:configure.ac:62: -1- AM_CONDITIONAL([HAVE_PKG_CONFIG], [test "x$PKG_CONFIG" != "x"])
3092
- m4trace:configure.ac:62: -1- m4_pattern_allow([^HAVE_PKG_CONFIG_TRUE$])
3093
- m4trace:configure.ac:62: -1- m4_pattern_allow([^HAVE_PKG_CONFIG_FALSE$])
3094
- m4trace:configure.ac:62: -1- _AM_SUBST_NOTMAKE([HAVE_PKG_CONFIG_TRUE])
3095
- m4trace:configure.ac:62: -1- _AM_SUBST_NOTMAKE([HAVE_PKG_CONFIG_FALSE])
3096
- m4trace:configure.ac:67: -1- m4_pattern_allow([^LIB@&t@OBJS$])
3097
- m4trace:configure.ac:67: -1- m4_pattern_allow([^LTLIBOBJS$])
3098
- m4trace:configure.ac:67: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
3099
- m4trace:configure.ac:67: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
3100
- m4trace:configure.ac:67: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
3101
- m4trace:configure.ac:67: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
3102
- m4trace:configure.ac:67: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
3103
- m4trace:configure.ac:67: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
3104
- m4trace:configure.ac:67: -1- _LT_PROG_LTMAIN