passenger 5.0.18 → 5.0.19

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 (2959) hide show
  1. checksums.yaml +8 -8
  2. checksums.yaml.gz.asc +7 -7
  3. data.tar.gz.asc +7 -7
  4. data/CHANGELOG +11 -0
  5. data/CONTRIBUTING.md +14 -14
  6. data/README.md +1 -1
  7. data/Rakefile +3 -3
  8. data/bin/passenger +2 -2
  9. data/bin/passenger-config +2 -2
  10. data/bin/passenger-install-apache2-module +1 -1
  11. data/bin/passenger-install-nginx-module +1 -1
  12. data/bin/passenger-memory-stats +2 -2
  13. data/bin/passenger-status +2 -2
  14. data/build/README.md +3 -0
  15. data/build/agent.rb +97 -0
  16. data/build/apache2.rb +70 -95
  17. data/build/basics.rb +15 -1
  18. data/build/common_library.rb +41 -36
  19. data/build/cplusplus_support.rb +89 -16
  20. data/build/cxx_dependency_map.rb +7900 -0
  21. data/build/cxx_tests.rb +146 -265
  22. data/build/integration_tests.rb +1 -1
  23. data/build/misc.rb +29 -22
  24. data/build/nginx.rb +10 -10
  25. data/build/oxt_tests.rb +36 -27
  26. data/build/packaging.rb +11 -11
  27. data/build/ruby_extension.rb +2 -2
  28. data/build/ruby_tests.rb +1 -1
  29. data/build/test_basics.rb +24 -16
  30. data/dev/ci/run_travis.sh +28 -6
  31. data/dev/index_cxx_dependencies.rb +206 -0
  32. data/dev/list_tests +1 -1
  33. data/dev/runner +1 -1
  34. data/dev/vagrant/nginx_rakefile +1 -1
  35. data/doc/Design and Architecture.html +14 -14
  36. data/doc/Design and Architecture.txt +14 -14
  37. data/doc/Packaging.html +5 -5
  38. data/doc/Packaging.txt.md +5 -5
  39. data/passenger.gemspec +3 -3
  40. data/src/README.md +7 -0
  41. data/{ext/common → src}/agent/AgentMain.cpp +0 -0
  42. data/src/agent/Core/ApiServer.h +624 -0
  43. data/src/agent/Core/ApplicationPool/BasicGroupInfo.h +81 -0
  44. data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +107 -0
  45. data/src/agent/Core/ApplicationPool/Common.h +213 -0
  46. data/src/agent/Core/ApplicationPool/Context.h +94 -0
  47. data/src/agent/Core/ApplicationPool/ErrorRenderer.h +116 -0
  48. data/src/agent/Core/ApplicationPool/Group.h +496 -0
  49. data/src/agent/Core/ApplicationPool/Group/InitializationAndShutdown.cpp +190 -0
  50. data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +329 -0
  51. data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +103 -0
  52. data/src/agent/Core/ApplicationPool/Group/Miscellaneous.cpp +65 -0
  53. data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +323 -0
  54. data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +606 -0
  55. data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +337 -0
  56. data/src/agent/Core/ApplicationPool/Group/SpawningAndRestarting.cpp +478 -0
  57. data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +197 -0
  58. data/src/agent/Core/ApplicationPool/Group/Verification.cpp +159 -0
  59. data/src/agent/Core/ApplicationPool/Implementation.cpp +335 -0
  60. data/src/agent/Core/ApplicationPool/Options.h +704 -0
  61. data/src/agent/Core/ApplicationPool/Pool.h +464 -0
  62. data/src/agent/Core/ApplicationPool/Pool/AnalyticsCollection.cpp +254 -0
  63. data/src/agent/Core/ApplicationPool/Pool/GarbageCollection.cpp +200 -0
  64. data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +241 -0
  65. data/src/agent/Core/ApplicationPool/Pool/GroupUtils.cpp +276 -0
  66. data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +146 -0
  67. data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +244 -0
  68. data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +330 -0
  69. data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +299 -0
  70. data/src/agent/Core/ApplicationPool/Process.h +907 -0
  71. data/src/agent/Core/ApplicationPool/Session.h +256 -0
  72. data/src/agent/Core/ApplicationPool/Socket.h +293 -0
  73. data/src/agent/Core/CoreMain.cpp +1202 -0
  74. data/{ext/common → src}/agent/Core/OptionParser.h +0 -0
  75. data/src/agent/Core/RequestHandler.h +470 -0
  76. data/src/agent/Core/RequestHandler/AppResponse.h +230 -0
  77. data/{ext/common → src}/agent/Core/RequestHandler/BufferBody.cpp +0 -0
  78. data/{ext/common → src}/agent/Core/RequestHandler/CheckoutSession.cpp +0 -0
  79. data/src/agent/Core/RequestHandler/Client.h +56 -0
  80. data/{ext/common → src}/agent/Core/RequestHandler/ForwardResponse.cpp +0 -0
  81. data/{ext/common → src}/agent/Core/RequestHandler/Hooks.cpp +0 -0
  82. data/{ext/common → src}/agent/Core/RequestHandler/InitRequest.cpp +0 -0
  83. data/src/agent/Core/RequestHandler/Request.h +158 -0
  84. data/{ext/common → src}/agent/Core/RequestHandler/SendRequest.cpp +0 -0
  85. data/src/agent/Core/RequestHandler/TurboCaching.h +294 -0
  86. data/{ext/common → src}/agent/Core/RequestHandler/Utils.cpp +0 -0
  87. data/{ext/common → src}/agent/Core/ResponseCache.h +0 -0
  88. data/{ext/common → src/agent/Core}/SpawningKit/BackgroundIOCapturer.h +0 -0
  89. data/src/agent/Core/SpawningKit/Config.h +107 -0
  90. data/src/agent/Core/SpawningKit/DirectSpawner.h +254 -0
  91. data/src/agent/Core/SpawningKit/DummySpawner.h +94 -0
  92. data/src/agent/Core/SpawningKit/Factory.h +113 -0
  93. data/src/agent/Core/SpawningKit/Options.h +40 -0
  94. data/src/agent/Core/SpawningKit/PipeWatcher.h +148 -0
  95. data/src/agent/Core/SpawningKit/Result.h +49 -0
  96. data/src/agent/Core/SpawningKit/SmartSpawner.h +818 -0
  97. data/src/agent/Core/SpawningKit/Spawner.h +1199 -0
  98. data/src/agent/Core/SpawningKit/UserSwitchingRules.h +265 -0
  99. data/src/agent/Core/UnionStation/Connection.h +172 -0
  100. data/src/agent/Core/UnionStation/Core.h +539 -0
  101. data/src/agent/Core/UnionStation/StopwatchLog.h +172 -0
  102. data/src/agent/Core/UnionStation/Transaction.h +262 -0
  103. data/src/agent/README.md +9 -0
  104. data/src/agent/Shared/ApiServerUtils.h +941 -0
  105. data/{ext/common/ApplicationPool2/ApiKey.h → src/agent/Shared/ApplicationPoolApiKey.h} +0 -0
  106. data/src/agent/Shared/Base.cpp +1647 -0
  107. data/{ext/common/agent → src/agent/Shared}/Base.h +0 -0
  108. data/src/agent/SpawnPreparer/SpawnPreparerMain.cpp +207 -0
  109. data/{ext/common → src}/agent/SystemMetrics/SystemMetricsMain.cpp +0 -0
  110. data/{ext/common → src}/agent/TempDirToucher/TempDirToucherMain.cpp +0 -0
  111. data/src/agent/UstRouter/ApiServer.h +285 -0
  112. data/src/agent/UstRouter/Client.h +111 -0
  113. data/src/agent/UstRouter/Controller.h +1189 -0
  114. data/{ext/common → src}/agent/UstRouter/DataStoreId.h +0 -0
  115. data/src/agent/UstRouter/FileSink.h +83 -0
  116. data/src/agent/UstRouter/LogSink.h +145 -0
  117. data/src/agent/UstRouter/OptionParser.h +173 -0
  118. data/src/agent/UstRouter/RemoteSender.h +699 -0
  119. data/src/agent/UstRouter/RemoteSink.h +143 -0
  120. data/src/agent/UstRouter/Transaction.h +145 -0
  121. data/src/agent/UstRouter/UstRouterMain.cpp +642 -0
  122. data/{ext/common → src}/agent/Watchdog/AgentWatcher.cpp +0 -0
  123. data/src/agent/Watchdog/ApiServer.h +311 -0
  124. data/{ext/common → src}/agent/Watchdog/CoreWatcher.cpp +0 -0
  125. data/{ext/common → src}/agent/Watchdog/InstanceDirToucher.cpp +0 -0
  126. data/{ext/common → src}/agent/Watchdog/UstRouterWatcher.cpp +0 -0
  127. data/src/agent/Watchdog/WatchdogMain.cpp +1360 -0
  128. data/{ext/apache2 → src/apache2_module}/Bucket.cpp +0 -0
  129. data/{ext/apache2 → src/apache2_module}/Bucket.h +0 -0
  130. data/src/apache2_module/Configuration.cpp +663 -0
  131. data/{ext/apache2 → src/apache2_module}/Configuration.h +0 -0
  132. data/{ext/apache2 → src/apache2_module}/Configuration.hpp +0 -0
  133. data/src/apache2_module/ConfigurationCommands.cpp +251 -0
  134. data/src/apache2_module/ConfigurationCommands.cpp.erb +108 -0
  135. data/src/apache2_module/ConfigurationFields.hpp +98 -0
  136. data/src/apache2_module/ConfigurationFields.hpp.erb +97 -0
  137. data/src/apache2_module/ConfigurationSetters.cpp +422 -0
  138. data/src/apache2_module/ConfigurationSetters.cpp.erb +127 -0
  139. data/src/apache2_module/CreateDirConfig.cpp +68 -0
  140. data/src/apache2_module/CreateDirConfig.cpp.erb +71 -0
  141. data/src/apache2_module/DirectoryMapper.h +273 -0
  142. data/src/apache2_module/Hooks.cpp +1734 -0
  143. data/{ext/apache2 → src/apache2_module}/Hooks.h +0 -0
  144. data/src/apache2_module/MergeDirConfig.cpp +230 -0
  145. data/src/apache2_module/MergeDirConfig.cpp.erb +81 -0
  146. data/src/apache2_module/README.md +5 -0
  147. data/src/apache2_module/SetHeaders.cpp +151 -0
  148. data/src/apache2_module/SetHeaders.cpp.erb +90 -0
  149. data/{ext/apache2 → src/apache2_module}/mod_passenger.c +0 -0
  150. data/{ext/common → src/cxx_supportlib}/Account.h +0 -0
  151. data/{ext/common → src/cxx_supportlib}/AccountsDatabase.h +0 -0
  152. data/{ext/common → src/cxx_supportlib}/AgentsStarter.cpp +0 -0
  153. data/{ext/common → src/cxx_supportlib}/AgentsStarter.h +0 -0
  154. data/src/cxx_supportlib/AppTypes.cpp +108 -0
  155. data/src/cxx_supportlib/AppTypes.h +272 -0
  156. data/{ext/common → src/cxx_supportlib}/BackgroundEventLoop.cpp +0 -0
  157. data/{ext/common → src/cxx_supportlib}/BackgroundEventLoop.h +0 -0
  158. data/src/cxx_supportlib/Constants.h +158 -0
  159. data/src/cxx_supportlib/Constants.h.erb +42 -0
  160. data/{ext/common → src/cxx_supportlib}/DataStructures/HashedStaticString.h +0 -0
  161. data/{ext/common → src/cxx_supportlib}/DataStructures/LString.h +0 -0
  162. data/{ext/common → src/cxx_supportlib}/DataStructures/StringKeyTable.h +0 -0
  163. data/{ext/common → src/cxx_supportlib}/Exceptions.cpp +0 -0
  164. data/{ext/common → src/cxx_supportlib}/Exceptions.h +0 -0
  165. data/{ext/common → src/cxx_supportlib}/FileDescriptor.h +0 -0
  166. data/{ext/common → src/cxx_supportlib}/Hooks.h +0 -0
  167. data/src/cxx_supportlib/InstanceDirectory.h +242 -0
  168. data/src/cxx_supportlib/Logging.cpp +294 -0
  169. data/{ext/common → src/cxx_supportlib}/Logging.h +0 -0
  170. data/src/cxx_supportlib/MemoryKit/mbuf.cpp +403 -0
  171. data/src/cxx_supportlib/MemoryKit/mbuf.h +260 -0
  172. data/{ext/common → src/cxx_supportlib}/MemoryKit/palloc.cpp +0 -0
  173. data/{ext/common → src/cxx_supportlib}/MemoryKit/palloc.h +0 -0
  174. data/src/cxx_supportlib/MessageClient.h +308 -0
  175. data/src/cxx_supportlib/MessageReadersWriters.h +545 -0
  176. data/src/cxx_supportlib/README.md +3 -0
  177. data/{ext/common → src/cxx_supportlib}/RandomGenerator.h +0 -0
  178. data/src/cxx_supportlib/ResourceLocator.h +181 -0
  179. data/{ext/common → src/cxx_supportlib}/SafeLibev.h +0 -0
  180. data/{ext/common → src/cxx_supportlib}/ServerKit/AcceptLoadBalancer.h +0 -0
  181. data/src/cxx_supportlib/ServerKit/Channel.h +765 -0
  182. data/src/cxx_supportlib/ServerKit/Client.h +166 -0
  183. data/{ext/common → src/cxx_supportlib}/ServerKit/ClientRef.h +0 -0
  184. data/src/cxx_supportlib/ServerKit/Context.h +138 -0
  185. data/{ext/common → src/cxx_supportlib}/ServerKit/CookieUtils.h +0 -0
  186. data/{ext/common → src/cxx_supportlib}/ServerKit/Errors.h +0 -0
  187. data/src/cxx_supportlib/ServerKit/FdSinkChannel.h +217 -0
  188. data/src/cxx_supportlib/ServerKit/FdSourceChannel.h +251 -0
  189. data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +1605 -0
  190. data/{ext/common → src/cxx_supportlib}/ServerKit/FileBufferedFdSinkChannel.h +0 -0
  191. data/{ext/common → src/cxx_supportlib}/ServerKit/HeaderTable.h +0 -0
  192. data/{ext/common → src/cxx_supportlib}/ServerKit/Hooks.h +0 -0
  193. data/{ext/common → src/cxx_supportlib}/ServerKit/HttpChunkedBodyParser.h +0 -0
  194. data/{ext/common → src/cxx_supportlib}/ServerKit/HttpChunkedBodyParserState.h +0 -0
  195. data/src/cxx_supportlib/ServerKit/HttpClient.h +94 -0
  196. data/{ext/common → src/cxx_supportlib}/ServerKit/HttpHeaderParser.h +0 -0
  197. data/{ext/common → src/cxx_supportlib}/ServerKit/HttpHeaderParserState.h +0 -0
  198. data/src/cxx_supportlib/ServerKit/HttpRequest.h +276 -0
  199. data/{ext/common → src/cxx_supportlib}/ServerKit/HttpRequestRef.h +0 -0
  200. data/src/cxx_supportlib/ServerKit/HttpServer.h +1212 -0
  201. data/{ext/common → src/cxx_supportlib}/ServerKit/Implementation.cpp +0 -0
  202. data/src/cxx_supportlib/ServerKit/Server.h +1107 -0
  203. data/{ext/common → src/cxx_supportlib}/ServerKit/http_parser.cpp +0 -0
  204. data/{ext/common → src/cxx_supportlib}/ServerKit/http_parser.h +0 -0
  205. data/{ext/common → src/cxx_supportlib}/StaticString.h +0 -0
  206. data/src/cxx_supportlib/UnionStationFilterSupport.cpp +66 -0
  207. data/src/cxx_supportlib/UnionStationFilterSupport.h +1621 -0
  208. data/src/cxx_supportlib/Utils.cpp +1388 -0
  209. data/{ext/common → src/cxx_supportlib}/Utils.h +0 -0
  210. data/{ext/common → src/cxx_supportlib}/Utils/AnsiColorConstants.h +0 -0
  211. data/{ext/common → src/cxx_supportlib}/Utils/BlockingQueue.h +0 -0
  212. data/{ext/common → src/cxx_supportlib}/Utils/BufferedIO.h +0 -0
  213. data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.cpp +0 -0
  214. data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.h +0 -0
  215. data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.hpp +0 -0
  216. data/{ext/common → src/cxx_supportlib}/Utils/ClassUtils.h +0 -0
  217. data/{ext/common → src/cxx_supportlib}/Utils/Curl.h +0 -0
  218. data/{ext/common → src/cxx_supportlib}/Utils/DateParsing.h +0 -0
  219. data/{ext/common → src/cxx_supportlib}/Utils/FastStringStream.h +0 -0
  220. data/{ext/common → src/cxx_supportlib}/Utils/FileChangeChecker.h +0 -0
  221. data/{ext/common → src/cxx_supportlib}/Utils/HashMap.h +0 -0
  222. data/{ext/common → src/cxx_supportlib}/Utils/Hasher.cpp +0 -0
  223. data/{ext/common → src/cxx_supportlib}/Utils/Hasher.h +0 -0
  224. data/{ext/common → src/cxx_supportlib}/Utils/HttpConstants.h +0 -0
  225. data/src/cxx_supportlib/Utils/IOUtils.cpp +1297 -0
  226. data/src/cxx_supportlib/Utils/IOUtils.h +646 -0
  227. data/{ext/common → src/cxx_supportlib}/Utils/IniFile.h +0 -0
  228. data/src/cxx_supportlib/Utils/JsonUtils.h +270 -0
  229. data/{ext/common → src/cxx_supportlib}/Utils/LargeFiles.cpp +0 -0
  230. data/{ext/common → src/cxx_supportlib}/Utils/LargeFiles.h +0 -0
  231. data/{ext/common → src/cxx_supportlib}/Utils/Lock.h +0 -0
  232. data/{ext/common → src/cxx_supportlib}/Utils/MemZeroGuard.h +0 -0
  233. data/{ext/common → src/cxx_supportlib}/Utils/MemoryBarrier.h +0 -0
  234. data/{ext/common → src/cxx_supportlib}/Utils/MessageIO.h +0 -0
  235. data/{ext/common → src/cxx_supportlib}/Utils/MessagePassing.h +0 -0
  236. data/{ext/common → src/cxx_supportlib}/Utils/OptionParsing.h +0 -0
  237. data/{ext/common → src/cxx_supportlib}/Utils/ProcessMetricsCollector.h +0 -0
  238. data/{ext/common → src/cxx_supportlib}/Utils/ScopeGuard.h +0 -0
  239. data/{ext/common → src/cxx_supportlib}/Utils/SpeedMeter.h +0 -0
  240. data/src/cxx_supportlib/Utils/StrIntUtils.cpp +698 -0
  241. data/{ext/common → src/cxx_supportlib}/Utils/StrIntUtils.h +0 -0
  242. data/{ext/common → src/cxx_supportlib}/Utils/StrIntUtilsNoStrictAliasing.cpp +0 -0
  243. data/{ext/common → src/cxx_supportlib}/Utils/StringMap.h +0 -0
  244. data/{ext/common → src/cxx_supportlib}/Utils/StringScanning.h +0 -0
  245. data/{ext/common → src/cxx_supportlib}/Utils/SystemMetricsCollector.h +0 -0
  246. data/{ext/common → src/cxx_supportlib}/Utils/SystemTime.cpp +0 -0
  247. data/{ext/common → src/cxx_supportlib}/Utils/SystemTime.h +0 -0
  248. data/{ext/common → src/cxx_supportlib}/Utils/Template.h +0 -0
  249. data/{ext/common → src/cxx_supportlib}/Utils/Timer.h +0 -0
  250. data/src/cxx_supportlib/Utils/VariantMap.h +494 -0
  251. data/{ext → src/cxx_supportlib}/oxt/Readme.txt +0 -0
  252. data/{ext → src/cxx_supportlib}/oxt/backtrace.hpp +0 -0
  253. data/{ext → src/cxx_supportlib}/oxt/detail/backtrace_disabled.hpp +0 -0
  254. data/{ext → src/cxx_supportlib}/oxt/detail/backtrace_enabled.hpp +0 -0
  255. data/{ext → src/cxx_supportlib}/oxt/detail/context.hpp +0 -0
  256. data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_darwin.hpp +0 -0
  257. data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_gcc_x86.hpp +0 -0
  258. data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_portable.hpp +0 -0
  259. data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_pthreads.hpp +0 -0
  260. data/{ext → src/cxx_supportlib}/oxt/detail/tracable_exception_disabled.hpp +0 -0
  261. data/{ext → src/cxx_supportlib}/oxt/detail/tracable_exception_enabled.hpp +0 -0
  262. data/{ext → src/cxx_supportlib}/oxt/dynamic_thread_group.hpp +0 -0
  263. data/{ext → src/cxx_supportlib}/oxt/implementation.cpp +0 -0
  264. data/{ext → src/cxx_supportlib}/oxt/initialize.hpp +0 -0
  265. data/{ext → src/cxx_supportlib}/oxt/macros.hpp +0 -0
  266. data/{ext → src/cxx_supportlib}/oxt/spin_lock.hpp +0 -0
  267. data/{ext → src/cxx_supportlib}/oxt/system_calls.cpp +0 -0
  268. data/{ext → src/cxx_supportlib}/oxt/system_calls.hpp +0 -0
  269. data/{ext → src/cxx_supportlib}/oxt/thread.hpp +0 -0
  270. data/{ext → src/cxx_supportlib}/oxt/tracable_exception.hpp +0 -0
  271. data/{ext → src/cxx_supportlib/vendor-copy}/libev/Changes +0 -0
  272. data/{ext → src/cxx_supportlib/vendor-copy}/libev/LICENSE +0 -0
  273. data/{ext → src/cxx_supportlib/vendor-copy}/libev/Makefile.am +0 -0
  274. data/{ext → src/cxx_supportlib/vendor-copy}/libev/Makefile.in +0 -0
  275. data/{ext → src/cxx_supportlib/vendor-copy}/libev/README +0 -0
  276. data/{ext → src/cxx_supportlib/vendor-copy}/libev/aclocal.m4 +0 -0
  277. data/{ext → src/cxx_supportlib/vendor-copy}/libev/autogen.sh +0 -0
  278. data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.guess +0 -0
  279. data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.h.in +0 -0
  280. data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.sub +0 -0
  281. data/{ext → src/cxx_supportlib/vendor-copy}/libev/configure +0 -0
  282. data/{ext → src/cxx_supportlib/vendor-copy}/libev/configure.ac +0 -0
  283. data/{ext → src/cxx_supportlib/vendor-copy}/libev/depcomp +0 -0
  284. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev++.h +0 -0
  285. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev.c +0 -0
  286. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev.h +0 -0
  287. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_epoll.c +0 -0
  288. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_kqueue.c +0 -0
  289. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_poll.c +0 -0
  290. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_port.c +0 -0
  291. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_select.c +0 -0
  292. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_vars.h +0 -0
  293. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_win32.c +0 -0
  294. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_wrap.h +0 -0
  295. data/{ext → src/cxx_supportlib/vendor-copy}/libev/event.c +0 -0
  296. data/{ext → src/cxx_supportlib/vendor-copy}/libev/event.h +0 -0
  297. data/{ext → src/cxx_supportlib/vendor-copy}/libev/install-sh +0 -0
  298. data/{ext → src/cxx_supportlib/vendor-copy}/libev/libev.m4 +0 -0
  299. data/{ext → src/cxx_supportlib/vendor-copy}/libev/ltmain.sh +0 -0
  300. data/{ext → src/cxx_supportlib/vendor-copy}/libev/missing +0 -0
  301. data/{ext → src/cxx_supportlib/vendor-copy}/libev/mkinstalldirs +0 -0
  302. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/AUTHORS +0 -0
  303. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/ChangeLog +0 -0
  304. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/LICENSE +0 -0
  305. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/Makefile.am +0 -0
  306. data/src/cxx_supportlib/vendor-copy/libuv/Makefile.in +4268 -0
  307. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/README.md +0 -0
  308. data/src/cxx_supportlib/vendor-copy/libuv/aclocal.m4 +1217 -0
  309. data/src/cxx_supportlib/vendor-copy/libuv/ar-lib +270 -0
  310. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.0 +15374 -0
  311. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.1 +15374 -0
  312. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.2 +15374 -0
  313. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/requests +568 -0
  314. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.0 +3104 -0
  315. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.1 +3104 -0
  316. data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.2 +699 -0
  317. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/checksparse.sh +0 -0
  318. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/common.gypi +0 -0
  319. data/src/cxx_supportlib/vendor-copy/libuv/compile +347 -0
  320. data/src/cxx_supportlib/vendor-copy/libuv/config.guess +1421 -0
  321. data/src/cxx_supportlib/vendor-copy/libuv/config.sub +1807 -0
  322. data/src/cxx_supportlib/vendor-copy/libuv/configure +15374 -0
  323. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/configure.ac +0 -0
  324. data/src/cxx_supportlib/vendor-copy/libuv/depcomp +791 -0
  325. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/gyp_uv.py +0 -0
  326. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/android-ifaddrs.h +0 -0
  327. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/pthread-fixes.h +0 -0
  328. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/tree.h +0 -0
  329. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-aix.h +0 -0
  330. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-bsd.h +0 -0
  331. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-darwin.h +0 -0
  332. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-errno.h +0 -0
  333. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-linux.h +0 -0
  334. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-sunos.h +0 -0
  335. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-threadpool.h +0 -0
  336. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-unix.h +0 -0
  337. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-version.h +0 -0
  338. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv.h +0 -0
  339. data/src/cxx_supportlib/vendor-copy/libuv/install-sh +501 -0
  340. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/libuv.pc.in +0 -0
  341. data/src/cxx_supportlib/vendor-copy/libuv/ltmain.sh +11140 -0
  342. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/m4/as_case.m4 +0 -0
  343. data/src/cxx_supportlib/vendor-copy/libuv/m4/libtool.m4 +8364 -0
  344. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/m4/libuv-check-flags.m4 +0 -0
  345. data/src/cxx_supportlib/vendor-copy/libuv/m4/libuv-extra-automake-flags.m4 +1 -0
  346. data/src/cxx_supportlib/vendor-copy/libuv/m4/ltoptions.m4 +437 -0
  347. data/src/cxx_supportlib/vendor-copy/libuv/m4/ltsugar.m4 +124 -0
  348. data/src/cxx_supportlib/vendor-copy/libuv/m4/ltversion.m4 +23 -0
  349. data/src/cxx_supportlib/vendor-copy/libuv/m4/lt~obsolete.m4 +99 -0
  350. data/src/cxx_supportlib/vendor-copy/libuv/missing +215 -0
  351. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/fs-poll.c +0 -0
  352. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/heap-inl.h +0 -0
  353. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/inet.c +0 -0
  354. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/queue.h +0 -0
  355. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/threadpool.c +0 -0
  356. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/aix.c +0 -0
  357. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/android-ifaddrs.c +0 -0
  358. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/async.c +0 -0
  359. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/atomic-ops.h +0 -0
  360. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/core.c +0 -0
  361. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/darwin-proctitle.c +0 -0
  362. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/darwin.c +0 -0
  363. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/dl.c +0 -0
  364. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/freebsd.c +0 -0
  365. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/fs.c +0 -0
  366. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/fsevents.c +0 -0
  367. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/getaddrinfo.c +0 -0
  368. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/getnameinfo.c +0 -0
  369. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/internal.h +0 -0
  370. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/kqueue.c +0 -0
  371. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-core.c +0 -0
  372. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-inotify.c +0 -0
  373. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-syscalls.c +0 -0
  374. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-syscalls.h +0 -0
  375. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/loop-watcher.c +0 -0
  376. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/loop.c +0 -0
  377. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/netbsd.c +0 -0
  378. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/openbsd.c +0 -0
  379. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/pipe.c +0 -0
  380. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/poll.c +0 -0
  381. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/process.c +0 -0
  382. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/proctitle.c +0 -0
  383. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/pthread-fixes.c +0 -0
  384. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/signal.c +0 -0
  385. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/spinlock.h +0 -0
  386. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/stream.c +0 -0
  387. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/sunos.c +0 -0
  388. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/tcp.c +0 -0
  389. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/thread.c +0 -0
  390. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/timer.c +0 -0
  391. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/tty.c +0 -0
  392. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/udp.c +0 -0
  393. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/uv-common.c +0 -0
  394. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/uv-common.h +0 -0
  395. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/version.c +0 -0
  396. data/{ext → src/cxx_supportlib/vendor-copy}/libuv/uv.gyp +0 -0
  397. data/src/cxx_supportlib/vendor-copy/utf8.h +35 -0
  398. data/src/cxx_supportlib/vendor-copy/utf8/checked.h +324 -0
  399. data/{ext/common/Utils → src/cxx_supportlib/vendor-copy}/utf8/core.h +0 -0
  400. data/src/cxx_supportlib/vendor-copy/utf8/unchecked.h +229 -0
  401. data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/SmallVector.h +0 -0
  402. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/case_conv.hpp +0 -0
  403. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/compare.hpp +0 -0
  404. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/concept.hpp +0 -0
  405. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/config.hpp +0 -0
  406. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/constants.hpp +0 -0
  407. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/case_conv.hpp +0 -0
  408. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format.hpp +0 -0
  409. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format_all.hpp +0 -0
  410. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format_store.hpp +0 -0
  411. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/finder.hpp +0 -0
  412. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/formatter.hpp +0 -0
  413. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/replace_storage.hpp +0 -0
  414. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/sequence.hpp +0 -0
  415. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/util.hpp +0 -0
  416. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/erase.hpp +0 -0
  417. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/find_format.hpp +0 -0
  418. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/finder.hpp +0 -0
  419. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/formatter.hpp +0 -0
  420. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/replace.hpp +0 -0
  421. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/sequence_traits.hpp +0 -0
  422. data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/yes_no_type.hpp +0 -0
  423. data/{ext → src/cxx_supportlib/vendor-modified}/boost/aligned_storage.hpp +0 -0
  424. data/{ext → src/cxx_supportlib/vendor-modified}/boost/array.hpp +0 -0
  425. data/{ext → src/cxx_supportlib/vendor-modified}/boost/assert.hpp +0 -0
  426. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic.hpp +0 -0
  427. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/atomic.hpp +0 -0
  428. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/base.hpp +0 -0
  429. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas32strong.hpp +0 -0
  430. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas32weak.hpp +0 -0
  431. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas64strong.hpp +0 -0
  432. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/config.hpp +0 -0
  433. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-alpha.hpp +0 -0
  434. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-armv6plus.hpp +0 -0
  435. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-cas.hpp +0 -0
  436. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-ppc.hpp +0 -0
  437. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-sparcv9.hpp +0 -0
  438. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-x86.hpp +0 -0
  439. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/generic-cas.hpp +0 -0
  440. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/interlocked.hpp +0 -0
  441. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/linux-arm.hpp +0 -0
  442. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/lockpool.hpp +0 -0
  443. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/platform.hpp +0 -0
  444. data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/type-classification.hpp +0 -0
  445. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind.hpp +0 -0
  446. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/arg.hpp +0 -0
  447. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind.hpp +0 -0
  448. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_cc.hpp +0 -0
  449. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_mf2_cc.hpp +0 -0
  450. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_mf_cc.hpp +0 -0
  451. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_template.hpp +0 -0
  452. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn.hpp +0 -0
  453. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn_cc.hpp +0 -0
  454. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn_template.hpp +0 -0
  455. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/placeholders.hpp +0 -0
  456. data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/storage.hpp +0 -0
  457. data/{ext → src/cxx_supportlib/vendor-modified}/boost/cerrno.hpp +0 -0
  458. data/{ext → src/cxx_supportlib/vendor-modified}/boost/checked_delete.hpp +0 -0
  459. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/ceil.hpp +0 -0
  460. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/clock_string.hpp +0 -0
  461. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/config.hpp +0 -0
  462. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/is_evenly_divisible_by.hpp +0 -0
  463. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/static_assert.hpp +0 -0
  464. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/system.hpp +0 -0
  465. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/duration.hpp +0 -0
  466. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/system_clocks.hpp +0 -0
  467. data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/time_point.hpp +0 -0
  468. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/assert.hpp +0 -0
  469. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/backward_compatibility.hpp +0 -0
  470. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/concept_def.hpp +0 -0
  471. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/concept_undef.hpp +0 -0
  472. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/general.hpp +0 -0
  473. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/has_constraints.hpp +0 -0
  474. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/usage.hpp +0 -0
  475. data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept_check.hpp +0 -0
  476. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config.hpp +0 -0
  477. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/borland_prefix.hpp +0 -0
  478. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/borland_suffix.hpp +0 -0
  479. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/msvc_prefix.hpp +0 -0
  480. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/msvc_suffix.hpp +0 -0
  481. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi_prefix.hpp +0 -0
  482. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi_suffix.hpp +0 -0
  483. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/auto_link.hpp +0 -0
  484. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/borland.hpp +0 -0
  485. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/clang.hpp +0 -0
  486. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/codegear.hpp +0 -0
  487. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/comeau.hpp +0 -0
  488. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/common_edg.hpp +0 -0
  489. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/compaq_cxx.hpp +0 -0
  490. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/cray.hpp +0 -0
  491. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/digitalmars.hpp +0 -0
  492. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/gcc.hpp +0 -0
  493. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/gcc_xml.hpp +0 -0
  494. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/greenhills.hpp +0 -0
  495. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/hp_acc.hpp +0 -0
  496. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/intel.hpp +0 -0
  497. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/kai.hpp +0 -0
  498. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/metrowerks.hpp +0 -0
  499. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/mpw.hpp +0 -0
  500. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/nvcc.hpp +0 -0
  501. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/pathscale.hpp +0 -0
  502. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/pgi.hpp +0 -0
  503. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/sgi_mipspro.hpp +0 -0
  504. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/sunpro_cc.hpp +0 -0
  505. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/vacpp.hpp +0 -0
  506. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/visualc.hpp +0 -0
  507. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/cmath.hpp +0 -0
  508. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/complex.hpp +0 -0
  509. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/functional.hpp +0 -0
  510. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/memory.hpp +0 -0
  511. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/utility.hpp +0 -0
  512. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/aix.hpp +0 -0
  513. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/amigaos.hpp +0 -0
  514. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/beos.hpp +0 -0
  515. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/bsd.hpp +0 -0
  516. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/cray.hpp +0 -0
  517. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/cygwin.hpp +0 -0
  518. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/hpux.hpp +0 -0
  519. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/irix.hpp +0 -0
  520. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/linux.hpp +0 -0
  521. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/macos.hpp +0 -0
  522. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/qnxnto.hpp +0 -0
  523. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/solaris.hpp +0 -0
  524. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/symbian.hpp +0 -0
  525. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/vms.hpp +0 -0
  526. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/vxworks.hpp +0 -0
  527. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/posix_features.hpp +0 -0
  528. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/requires_threads.hpp +0 -0
  529. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_compiler_config.hpp +0 -0
  530. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_platform_config.hpp +0 -0
  531. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_stdlib_config.hpp +0 -0
  532. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/dinkumware.hpp +0 -0
  533. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libcomo.hpp +0 -0
  534. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libcpp.hpp +0 -0
  535. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libstdcpp3.hpp +0 -0
  536. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/modena.hpp +0 -0
  537. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/msl.hpp +0 -0
  538. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/roguewave.hpp +0 -0
  539. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/sgi.hpp +0 -0
  540. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/stlport.hpp +0 -0
  541. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/vacpp.hpp +0 -0
  542. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/suffix.hpp +0 -0
  543. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/user.hpp +0 -0
  544. data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/warning_disable.hpp +0 -0
  545. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/allocator_traits.hpp +0 -0
  546. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/container_fwd.hpp +0 -0
  547. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/deque.hpp +0 -0
  548. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/adaptive_node_pool_impl.hpp +0 -0
  549. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/advanced_insert_int.hpp +0 -0
  550. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/algorithms.hpp +0 -0
  551. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/allocation_type.hpp +0 -0
  552. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/allocator_version_traits.hpp +0 -0
  553. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/config_begin.hpp +0 -0
  554. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/config_end.hpp +0 -0
  555. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/destroyers.hpp +0 -0
  556. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/flat_tree.hpp +0 -0
  557. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/function_detector.hpp +0 -0
  558. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/iterators.hpp +0 -0
  559. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/math_functions.hpp +0 -0
  560. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/memory_util.hpp +0 -0
  561. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/mpl.hpp +0 -0
  562. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/multiallocation_chain.hpp +0 -0
  563. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/node_alloc_holder.hpp +0 -0
  564. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/node_pool_impl.hpp +0 -0
  565. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/pair.hpp +0 -0
  566. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/pool_common.hpp +0 -0
  567. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/preprocessor.hpp +0 -0
  568. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/transform_iterator.hpp +0 -0
  569. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/tree.hpp +0 -0
  570. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/type_traits.hpp +0 -0
  571. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/utilities.hpp +0 -0
  572. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/value_init.hpp +0 -0
  573. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/variadic_templates_tools.hpp +0 -0
  574. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/version_type.hpp +0 -0
  575. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/workaround.hpp +0 -0
  576. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/flat_map.hpp +0 -0
  577. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/flat_set.hpp +0 -0
  578. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/list.hpp +0 -0
  579. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/map.hpp +0 -0
  580. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/scoped_allocator.hpp +0 -0
  581. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/scoped_allocator_fwd.hpp +0 -0
  582. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/set.hpp +0 -0
  583. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/slist.hpp +0 -0
  584. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/stable_vector.hpp +0 -0
  585. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/static_vector.hpp +0 -0
  586. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/string.hpp +0 -0
  587. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/throw_exception.hpp +0 -0
  588. data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/vector.hpp +0 -0
  589. data/{ext → src/cxx_supportlib/vendor-modified}/boost/cregex.hpp +0 -0
  590. data/{ext → src/cxx_supportlib/vendor-modified}/boost/cstdint.hpp +0 -0
  591. data/{ext → src/cxx_supportlib/vendor-modified}/boost/current_function.hpp +0 -0
  592. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/adjust_functors.hpp +0 -0
  593. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/c_time.hpp +0 -0
  594. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/compiler_config.hpp +0 -0
  595. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/constrained_value.hpp +0 -0
  596. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date.hpp +0 -0
  597. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_clock_device.hpp +0 -0
  598. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_defs.hpp +0 -0
  599. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_duration.hpp +0 -0
  600. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_duration_types.hpp +0 -0
  601. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_facet.hpp +0 -0
  602. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_format_simple.hpp +0 -0
  603. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting.hpp +0 -0
  604. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting_limited.hpp +0 -0
  605. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting_locales.hpp +0 -0
  606. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generator_formatter.hpp +0 -0
  607. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generator_parser.hpp +0 -0
  608. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generators.hpp +0 -0
  609. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_iterator.hpp +0 -0
  610. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_names_put.hpp +0 -0
  611. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_parsing.hpp +0 -0
  612. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/dst_rules.hpp +0 -0
  613. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/filetime_functions.hpp +0 -0
  614. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/format_date_parser.hpp +0 -0
  615. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/conversion.hpp +0 -0
  616. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/formatters.hpp +0 -0
  617. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/formatters_limited.hpp +0 -0
  618. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_calendar.hpp +0 -0
  619. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_date.hpp +0 -0
  620. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_day.hpp +0 -0
  621. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_day_of_year.hpp +0 -0
  622. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_duration.hpp +0 -0
  623. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_duration_types.hpp +0 -0
  624. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_month.hpp +0 -0
  625. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_weekday.hpp +0 -0
  626. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_year.hpp +0 -0
  627. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_ymd.hpp +0 -0
  628. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian.hpp +0 -0
  629. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian_io.hpp +0 -0
  630. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian_types.hpp +0 -0
  631. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/parsers.hpp +0 -0
  632. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian_calendar.hpp +0 -0
  633. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian_calendar.ipp +0 -0
  634. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/int_adapter.hpp +0 -0
  635. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/iso_format.hpp +0 -0
  636. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/locale_config.hpp +0 -0
  637. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/microsec_time_clock.hpp +0 -0
  638. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/parse_format_base.hpp +0 -0
  639. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period.hpp +0 -0
  640. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period_formatter.hpp +0 -0
  641. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period_parser.hpp +0 -0
  642. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/conversion.hpp +0 -0
  643. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/date_duration_operators.hpp +0 -0
  644. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time.hpp +0 -0
  645. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_config.hpp +0 -0
  646. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_duration.hpp +0 -0
  647. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_io.hpp +0 -0
  648. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_system.hpp +0 -0
  649. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_types.hpp +0 -0
  650. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/ptime.hpp +0 -0
  651. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_formatters.hpp +0 -0
  652. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_parsers.hpp +0 -0
  653. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_period.hpp +0 -0
  654. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_defs.hpp +0 -0
  655. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_values_formatter.hpp +0 -0
  656. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_values_parser.hpp +0 -0
  657. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/string_convert.hpp +0 -0
  658. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/string_parse_tree.hpp +0 -0
  659. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/strings_from_facet.hpp +0 -0
  660. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time.hpp +0 -0
  661. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_clock.hpp +0 -0
  662. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_defs.hpp +0 -0
  663. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_duration.hpp +0 -0
  664. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_facet.hpp +0 -0
  665. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_formatting_streams.hpp +0 -0
  666. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_iterator.hpp +0 -0
  667. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_parsing.hpp +0 -0
  668. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_resolution_traits.hpp +0 -0
  669. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_system_counted.hpp +0 -0
  670. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_system_split.hpp +0 -0
  671. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/wrapping_int.hpp +0 -0
  672. data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/year_month_day.hpp +0 -0
  673. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/atomic_redef_macros.hpp +0 -0
  674. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/atomic_undef_macros.hpp +0 -0
  675. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/container_fwd.hpp +0 -0
  676. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/endian.hpp +0 -0
  677. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/fenv.hpp +0 -0
  678. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/indirect_traits.hpp +0 -0
  679. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/is_incrementable.hpp +0 -0
  680. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/is_xxx.hpp +0 -0
  681. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/iterator.hpp +0 -0
  682. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/lcast_precision.hpp +0 -0
  683. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/limits.hpp +0 -0
  684. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/no_exceptions_support.hpp +0 -0
  685. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/reference_content.hpp +0 -0
  686. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/scoped_enum_emulation.hpp +0 -0
  687. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/select_type.hpp +0 -0
  688. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/sp_typeinfo.hpp +0 -0
  689. data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/workaround.hpp +0 -0
  690. data/{ext → src/cxx_supportlib/vendor-modified}/boost/enable_shared_from_this.hpp +0 -0
  691. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/current_exception_cast.hpp +0 -0
  692. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/attribute_noreturn.hpp +0 -0
  693. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/clone_current_exception.hpp +0 -0
  694. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/error_info_impl.hpp +0 -0
  695. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/exception_ptr.hpp +0 -0
  696. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/is_output_streamable.hpp +0 -0
  697. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/object_hex_dump.hpp +0 -0
  698. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/type_info.hpp +0 -0
  699. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/diagnostic_information.hpp +0 -0
  700. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/exception.hpp +0 -0
  701. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/get_error_info.hpp +0 -0
  702. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/info.hpp +0 -0
  703. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/to_string.hpp +0 -0
  704. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/to_string_stub.hpp +0 -0
  705. data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception_ptr.hpp +0 -0
  706. data/{ext → src/cxx_supportlib/vendor-modified}/boost/foreach.hpp +0 -0
  707. data/{ext → src/cxx_supportlib/vendor-modified}/boost/foreach_fwd.hpp +0 -0
  708. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function.hpp +0 -0
  709. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/function_iterate.hpp +0 -0
  710. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/maybe_include.hpp +0 -0
  711. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/prologue.hpp +0 -0
  712. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_base.hpp +0 -0
  713. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_fwd.hpp +0 -0
  714. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_template.hpp +0 -0
  715. data/{ext → src/cxx_supportlib/vendor-modified}/boost/function_equal.hpp +0 -0
  716. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash.hpp +0 -0
  717. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/float_functions.hpp +0 -0
  718. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/hash_float.hpp +0 -0
  719. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/limits.hpp +0 -0
  720. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/extensions.hpp +0 -0
  721. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/hash.hpp +0 -0
  722. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/hash_fwd.hpp +0 -0
  723. data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash_fwd.hpp +0 -0
  724. data/{ext → src/cxx_supportlib/vendor-modified}/boost/get_pointer.hpp +0 -0
  725. data/{ext → src/cxx_supportlib/vendor-modified}/boost/indirect_reference.hpp +0 -0
  726. data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer.hpp +0 -0
  727. data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer/static_log2.hpp +0 -0
  728. data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer_fwd.hpp +0 -0
  729. data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer_traits.hpp +0 -0
  730. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/any_hook.hpp +0 -0
  731. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avl_set.hpp +0 -0
  732. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avl_set_hook.hpp +0 -0
  733. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avltree.hpp +0 -0
  734. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avltree_algorithms.hpp +0 -0
  735. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/bs_set_hook.hpp +0 -0
  736. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/circular_list_algorithms.hpp +0 -0
  737. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/circular_slist_algorithms.hpp +0 -0
  738. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/derivation_value_traits.hpp +0 -0
  739. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/any_node_and_algorithms.hpp +0 -0
  740. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/assert.hpp +0 -0
  741. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/avltree_node.hpp +0 -0
  742. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/clear_on_destructor_base.hpp +0 -0
  743. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/common_slist_algorithms.hpp +0 -0
  744. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/config_begin.hpp +0 -0
  745. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/config_end.hpp +0 -0
  746. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/ebo_functor_holder.hpp +0 -0
  747. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/function_detector.hpp +0 -0
  748. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/generic_hook.hpp +0 -0
  749. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/has_member_function_callable_with.hpp +0 -0
  750. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/hashtable_node.hpp +0 -0
  751. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/is_stateful_value_traits.hpp +0 -0
  752. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/list_node.hpp +0 -0
  753. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/memory_util.hpp +0 -0
  754. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/mpl.hpp +0 -0
  755. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/parent_from_member.hpp +0 -0
  756. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/preprocessor.hpp +0 -0
  757. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/rbtree_node.hpp +0 -0
  758. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/slist_node.hpp +0 -0
  759. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/transform_iterator.hpp +0 -0
  760. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/tree_algorithms.hpp +0 -0
  761. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/tree_node.hpp +0 -0
  762. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/utilities.hpp +0 -0
  763. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/workaround.hpp +0 -0
  764. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/hashtable.hpp +0 -0
  765. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/intrusive_fwd.hpp +0 -0
  766. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/linear_slist_algorithms.hpp +0 -0
  767. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/link_mode.hpp +0 -0
  768. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/list.hpp +0 -0
  769. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/list_hook.hpp +0 -0
  770. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/member_value_traits.hpp +0 -0
  771. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/options.hpp +0 -0
  772. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/parent_from_member.hpp +0 -0
  773. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/pointer_plus_bits.hpp +0 -0
  774. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/pointer_traits.hpp +0 -0
  775. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/priority_compare.hpp +0 -0
  776. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/rbtree.hpp +0 -0
  777. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/rbtree_algorithms.hpp +0 -0
  778. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/set.hpp +0 -0
  779. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/set_hook.hpp +0 -0
  780. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sg_set.hpp +0 -0
  781. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sgtree.hpp +0 -0
  782. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sgtree_algorithms.hpp +0 -0
  783. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/slist.hpp +0 -0
  784. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/slist_hook.hpp +0 -0
  785. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splay_set.hpp +0 -0
  786. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splay_set_hook.hpp +0 -0
  787. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splaytree.hpp +0 -0
  788. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splaytree_algorithms.hpp +0 -0
  789. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap.hpp +0 -0
  790. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap_algorithms.hpp +0 -0
  791. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap_set.hpp +0 -0
  792. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/trivial_value_traits.hpp +0 -0
  793. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/unordered_set.hpp +0 -0
  794. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/unordered_set_hook.hpp +0 -0
  795. data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive_ptr.hpp +0 -0
  796. data/{ext → src/cxx_supportlib/vendor-modified}/boost/io/ios_state.hpp +0 -0
  797. data/{ext → src/cxx_supportlib/vendor-modified}/boost/io_fwd.hpp +0 -0
  798. data/{ext → src/cxx_supportlib/vendor-modified}/boost/is_placeholder.hpp +0 -0
  799. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator.hpp +0 -0
  800. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/config_def.hpp +0 -0
  801. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/config_undef.hpp +0 -0
  802. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/enable_if.hpp +0 -0
  803. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/facade_iterator_category.hpp +0 -0
  804. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/minimum_category.hpp +0 -0
  805. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/interoperable.hpp +0 -0
  806. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_adaptor.hpp +0 -0
  807. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_categories.hpp +0 -0
  808. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_concepts.hpp +0 -0
  809. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_facade.hpp +0 -0
  810. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_traits.hpp +0 -0
  811. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/reverse_iterator.hpp +0 -0
  812. data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/transform_iterator.hpp +0 -0
  813. data/{ext → src/cxx_supportlib/vendor-modified}/boost/lexical_cast.hpp +0 -0
  814. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/atomic/lockpool.cpp +0 -0
  815. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/c_regex_traits.cpp +0 -0
  816. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/cpp_regex_traits.cpp +0 -0
  817. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/cregex.cpp +0 -0
  818. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/instances.cpp +0 -0
  819. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/internals.hpp +0 -0
  820. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/posix_api.cpp +0 -0
  821. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex.cpp +0 -0
  822. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_debug.cpp +0 -0
  823. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_raw_buffer.cpp +0 -0
  824. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_traits_defaults.cpp +0 -0
  825. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/static_mutex.cpp +0 -0
  826. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/wc_regex_traits.cpp +0 -0
  827. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/wide_posix_api.cpp +0 -0
  828. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/winstances.cpp +0 -0
  829. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/system/src/error_code.cpp +0 -0
  830. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/system/src/local_free_on_destruction.hpp +0 -0
  831. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/future.cpp +0 -0
  832. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/once.cpp +0 -0
  833. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/once_atomic.cpp +0 -0
  834. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/thread.cpp +0 -0
  835. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/timeconv.inl +0 -0
  836. data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/tss_null.cpp +0 -0
  837. data/{ext → src/cxx_supportlib/vendor-modified}/boost/limits.hpp +0 -0
  838. data/{ext → src/cxx_supportlib/vendor-modified}/boost/make_shared.hpp +0 -0
  839. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/common_factor_ct.hpp +0 -0
  840. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/policies/policy.hpp +0 -0
  841. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/detail/fp_traits.hpp +0 -0
  842. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/detail/round_fwd.hpp +0 -0
  843. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/fpclassify.hpp +0 -0
  844. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/math_fwd.hpp +0 -0
  845. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/sign.hpp +0 -0
  846. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/config.hpp +0 -0
  847. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/promotion.hpp +0 -0
  848. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/real_cast.hpp +0 -0
  849. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/user.hpp +0 -0
  850. data/{ext → src/cxx_supportlib/vendor-modified}/boost/math_fwd.hpp +0 -0
  851. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mem_fn.hpp +0 -0
  852. data/{ext → src/cxx_supportlib/vendor-modified}/boost/memory_order.hpp +0 -0
  853. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/algorithm.hpp +0 -0
  854. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/core.hpp +0 -0
  855. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/config_begin.hpp +0 -0
  856. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/config_end.hpp +0 -0
  857. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/meta_utils.hpp +0 -0
  858. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/move_helpers.hpp +0 -0
  859. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/iterator.hpp +0 -0
  860. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/move.hpp +0 -0
  861. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/traits.hpp +0 -0
  862. data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/utility.hpp +0 -0
  863. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/O1_size.hpp +0 -0
  864. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/O1_size_fwd.hpp +0 -0
  865. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/accumulate.hpp +0 -0
  866. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/advance.hpp +0 -0
  867. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/advance_fwd.hpp +0 -0
  868. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/alias.hpp +0 -0
  869. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/always.hpp +0 -0
  870. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/and.hpp +0 -0
  871. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply.hpp +0 -0
  872. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply_fwd.hpp +0 -0
  873. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply_wrap.hpp +0 -0
  874. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arg.hpp +0 -0
  875. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arg_fwd.hpp +0 -0
  876. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arithmetic.hpp +0 -0
  877. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/as_sequence.hpp +0 -0
  878. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/assert.hpp +0 -0
  879. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/at.hpp +0 -0
  880. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/at_fwd.hpp +0 -0
  881. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/O1_size_impl.hpp +0 -0
  882. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/adl_barrier.hpp +0 -0
  883. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/advance_backward.hpp +0 -0
  884. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/advance_forward.hpp +0 -0
  885. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/apply_1st.hpp +0 -0
  886. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arg_typedef.hpp +0 -0
  887. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arithmetic_op.hpp +0 -0
  888. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arity.hpp +0 -0
  889. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arity_spec.hpp +0 -0
  890. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/at_impl.hpp +0 -0
  891. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/back_impl.hpp +0 -0
  892. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/basic_bind.hpp +0 -0
  893. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/begin_end_impl.hpp +0 -0
  894. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/clear_impl.hpp +0 -0
  895. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/common_name_wknd.hpp +0 -0
  896. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/comparison_op.hpp +0 -0
  897. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/adl.hpp +0 -0
  898. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/arrays.hpp +0 -0
  899. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/bcc.hpp +0 -0
  900. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/bind.hpp +0 -0
  901. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/compiler.hpp +0 -0
  902. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/ctps.hpp +0 -0
  903. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dependent_nttp.hpp +0 -0
  904. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +0 -0
  905. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dtp.hpp +0 -0
  906. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/eti.hpp +0 -0
  907. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/forwarding.hpp +0 -0
  908. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/gcc.hpp +0 -0
  909. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/has_apply.hpp +0 -0
  910. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/has_xxx.hpp +0 -0
  911. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/integral.hpp +0 -0
  912. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/intel.hpp +0 -0
  913. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/lambda.hpp +0 -0
  914. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/msvc.hpp +0 -0
  915. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/msvc_typename.hpp +0 -0
  916. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/nttp.hpp +0 -0
  917. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/operators.hpp +0 -0
  918. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/overload_resolution.hpp +0 -0
  919. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/pp_counter.hpp +0 -0
  920. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/preprocessor.hpp +0 -0
  921. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/static_constant.hpp +0 -0
  922. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/ttp.hpp +0 -0
  923. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/typeof.hpp +0 -0
  924. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/use_preprocessed.hpp +0 -0
  925. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/workaround.hpp +0 -0
  926. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/contains_impl.hpp +0 -0
  927. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/count_args.hpp +0 -0
  928. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/count_impl.hpp +0 -0
  929. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/empty_impl.hpp +0 -0
  930. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/erase_impl.hpp +0 -0
  931. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/erase_key_impl.hpp +0 -0
  932. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/filter_iter.hpp +0 -0
  933. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/find_if_pred.hpp +0 -0
  934. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_impl.hpp +0 -0
  935. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_impl_body.hpp +0 -0
  936. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_op.hpp +0 -0
  937. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_pred.hpp +0 -0
  938. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/front_impl.hpp +0 -0
  939. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/full_lambda.hpp +0 -0
  940. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_apply.hpp +0 -0
  941. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_begin.hpp +0 -0
  942. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_key_impl.hpp +0 -0
  943. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_rebind.hpp +0 -0
  944. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_size.hpp +0 -0
  945. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_tag.hpp +0 -0
  946. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_type.hpp +0 -0
  947. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/include_preprocessed.hpp +0 -0
  948. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/insert_impl.hpp +0 -0
  949. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/insert_range_impl.hpp +0 -0
  950. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/inserter_algorithm.hpp +0 -0
  951. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/integral_wrapper.hpp +0 -0
  952. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/is_msvc_eti_arg.hpp +0 -0
  953. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_apply.hpp +0 -0
  954. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_fold_if_impl.hpp +0 -0
  955. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_fold_impl.hpp +0 -0
  956. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_push_front.hpp +0 -0
  957. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/joint_iter.hpp +0 -0
  958. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_arity_param.hpp +0 -0
  959. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_no_ctps.hpp +0 -0
  960. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_spec.hpp +0 -0
  961. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_support.hpp +0 -0
  962. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/largest_int.hpp +0 -0
  963. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/logical_op.hpp +0 -0
  964. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_dtw.hpp +0 -0
  965. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_eti_base.hpp +0 -0
  966. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_is_class.hpp +0 -0
  967. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_never_true.hpp +0 -0
  968. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_type.hpp +0 -0
  969. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na.hpp +0 -0
  970. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_assert.hpp +0 -0
  971. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_fwd.hpp +0 -0
  972. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_spec.hpp +0 -0
  973. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/nested_type_wknd.hpp +0 -0
  974. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/nttp_decl.hpp +0 -0
  975. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/numeric_cast_utils.hpp +0 -0
  976. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/numeric_op.hpp +0 -0
  977. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/order_impl.hpp +0 -0
  978. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/overload_names.hpp +0 -0
  979. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/partition_op.hpp +0 -0
  980. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/pop_back_impl.hpp +0 -0
  981. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/pop_front_impl.hpp +0 -0
  982. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp +0 -0
  983. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp +0 -0
  984. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/and.hpp +0 -0
  985. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply.hpp +0 -0
  986. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp +0 -0
  987. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp +0 -0
  988. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/arg.hpp +0 -0
  989. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp +0 -0
  990. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bind.hpp +0 -0
  991. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp +0 -0
  992. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitand.hpp +0 -0
  993. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitor.hpp +0 -0
  994. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp +0 -0
  995. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/deque.hpp +0 -0
  996. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/divides.hpp +0 -0
  997. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp +0 -0
  998. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp +0 -0
  999. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp +0 -0
  1000. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/greater.hpp +0 -0
  1001. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp +0 -0
  1002. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/inherit.hpp +0 -0
  1003. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp +0 -0
  1004. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp +0 -0
  1005. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp +0 -0
  1006. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/less.hpp +0 -0
  1007. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp +0 -0
  1008. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/list.hpp +0 -0
  1009. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/list_c.hpp +0 -0
  1010. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/map.hpp +0 -0
  1011. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/minus.hpp +0 -0
  1012. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/modulus.hpp +0 -0
  1013. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp +0 -0
  1014. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/or.hpp +0 -0
  1015. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp +0 -0
  1016. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/plus.hpp +0 -0
  1017. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/quote.hpp +0 -0
  1018. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp +0 -0
  1019. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp +0 -0
  1020. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/set.hpp +0 -0
  1021. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/set_c.hpp +0 -0
  1022. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp +0 -0
  1023. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp +0 -0
  1024. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp +0 -0
  1025. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/times.hpp +0 -0
  1026. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp +0 -0
  1027. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/vector.hpp +0 -0
  1028. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp +0 -0
  1029. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp +0 -0
  1030. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp +0 -0
  1031. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/and.hpp +0 -0
  1032. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply.hpp +0 -0
  1033. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp +0 -0
  1034. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp +0 -0
  1035. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/arg.hpp +0 -0
  1036. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp +0 -0
  1037. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bind.hpp +0 -0
  1038. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp +0 -0
  1039. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp +0 -0
  1040. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp +0 -0
  1041. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp +0 -0
  1042. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/deque.hpp +0 -0
  1043. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/divides.hpp +0 -0
  1044. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp +0 -0
  1045. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp +0 -0
  1046. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp +0 -0
  1047. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/greater.hpp +0 -0
  1048. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp +0 -0
  1049. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp +0 -0
  1050. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp +0 -0
  1051. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp +0 -0
  1052. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp +0 -0
  1053. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/less.hpp +0 -0
  1054. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp +0 -0
  1055. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/list.hpp +0 -0
  1056. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp +0 -0
  1057. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/map.hpp +0 -0
  1058. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/minus.hpp +0 -0
  1059. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp +0 -0
  1060. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp +0 -0
  1061. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/or.hpp +0 -0
  1062. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp +0 -0
  1063. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/plus.hpp +0 -0
  1064. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/quote.hpp +0 -0
  1065. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp +0 -0
  1066. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp +0 -0
  1067. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/set.hpp +0 -0
  1068. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp +0 -0
  1069. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp +0 -0
  1070. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp +0 -0
  1071. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp +0 -0
  1072. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/times.hpp +0 -0
  1073. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp +0 -0
  1074. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/vector.hpp +0 -0
  1075. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp +0 -0
  1076. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp +0 -0
  1077. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp +0 -0
  1078. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp +0 -0
  1079. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp +0 -0
  1080. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp +0 -0
  1081. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp +0 -0
  1082. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp +0 -0
  1083. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp +0 -0
  1084. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp +0 -0
  1085. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp +0 -0
  1086. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp +0 -0
  1087. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp +0 -0
  1088. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp +0 -0
  1089. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp +0 -0
  1090. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp +0 -0
  1091. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp +0 -0
  1092. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp +0 -0
  1093. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp +0 -0
  1094. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp +0 -0
  1095. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp +0 -0
  1096. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp +0 -0
  1097. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp +0 -0
  1098. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp +0 -0
  1099. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp +0 -0
  1100. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp +0 -0
  1101. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp +0 -0
  1102. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp +0 -0
  1103. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp +0 -0
  1104. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp +0 -0
  1105. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp +0 -0
  1106. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp +0 -0
  1107. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp +0 -0
  1108. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp +0 -0
  1109. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp +0 -0
  1110. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp +0 -0
  1111. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp +0 -0
  1112. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp +0 -0
  1113. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp +0 -0
  1114. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp +0 -0
  1115. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp +0 -0
  1116. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp +0 -0
  1117. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp +0 -0
  1118. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp +0 -0
  1119. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp +0 -0
  1120. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp +0 -0
  1121. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp +0 -0
  1122. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp +0 -0
  1123. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp +0 -0
  1124. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp +0 -0
  1125. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/and.hpp +0 -0
  1126. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply.hpp +0 -0
  1127. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp +0 -0
  1128. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp +0 -0
  1129. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/arg.hpp +0 -0
  1130. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp +0 -0
  1131. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bind.hpp +0 -0
  1132. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp +0 -0
  1133. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitand.hpp +0 -0
  1134. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitor.hpp +0 -0
  1135. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp +0 -0
  1136. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/deque.hpp +0 -0
  1137. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/divides.hpp +0 -0
  1138. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp +0 -0
  1139. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp +0 -0
  1140. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp +0 -0
  1141. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/greater.hpp +0 -0
  1142. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp +0 -0
  1143. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/inherit.hpp +0 -0
  1144. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp +0 -0
  1145. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp +0 -0
  1146. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp +0 -0
  1147. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/less.hpp +0 -0
  1148. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp +0 -0
  1149. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/list.hpp +0 -0
  1150. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/list_c.hpp +0 -0
  1151. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/map.hpp +0 -0
  1152. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/minus.hpp +0 -0
  1153. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/modulus.hpp +0 -0
  1154. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp +0 -0
  1155. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/or.hpp +0 -0
  1156. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp +0 -0
  1157. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/plus.hpp +0 -0
  1158. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/quote.hpp +0 -0
  1159. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp +0 -0
  1160. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp +0 -0
  1161. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/set.hpp +0 -0
  1162. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/set_c.hpp +0 -0
  1163. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp +0 -0
  1164. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp +0 -0
  1165. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp +0 -0
  1166. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/times.hpp +0 -0
  1167. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp +0 -0
  1168. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/vector.hpp +0 -0
  1169. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp +0 -0
  1170. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp +0 -0
  1171. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp +0 -0
  1172. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/and.hpp +0 -0
  1173. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply.hpp +0 -0
  1174. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp +0 -0
  1175. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp +0 -0
  1176. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/arg.hpp +0 -0
  1177. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp +0 -0
  1178. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bind.hpp +0 -0
  1179. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp +0 -0
  1180. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitand.hpp +0 -0
  1181. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitor.hpp +0 -0
  1182. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp +0 -0
  1183. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/deque.hpp +0 -0
  1184. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/divides.hpp +0 -0
  1185. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp +0 -0
  1186. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp +0 -0
  1187. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp +0 -0
  1188. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/greater.hpp +0 -0
  1189. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp +0 -0
  1190. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/inherit.hpp +0 -0
  1191. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp +0 -0
  1192. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp +0 -0
  1193. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp +0 -0
  1194. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/less.hpp +0 -0
  1195. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp +0 -0
  1196. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/list.hpp +0 -0
  1197. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/list_c.hpp +0 -0
  1198. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/map.hpp +0 -0
  1199. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/minus.hpp +0 -0
  1200. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/modulus.hpp +0 -0
  1201. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp +0 -0
  1202. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/or.hpp +0 -0
  1203. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp +0 -0
  1204. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/plus.hpp +0 -0
  1205. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/quote.hpp +0 -0
  1206. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp +0 -0
  1207. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp +0 -0
  1208. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/set.hpp +0 -0
  1209. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/set_c.hpp +0 -0
  1210. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp +0 -0
  1211. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp +0 -0
  1212. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +0 -0
  1213. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/times.hpp +0 -0
  1214. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp +0 -0
  1215. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/vector.hpp +0 -0
  1216. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp +0 -0
  1217. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp +0 -0
  1218. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp +0 -0
  1219. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/and.hpp +0 -0
  1220. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply.hpp +0 -0
  1221. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp +0 -0
  1222. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp +0 -0
  1223. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/arg.hpp +0 -0
  1224. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp +0 -0
  1225. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bind.hpp +0 -0
  1226. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp +0 -0
  1227. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp +0 -0
  1228. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp +0 -0
  1229. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp +0 -0
  1230. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/deque.hpp +0 -0
  1231. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/divides.hpp +0 -0
  1232. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp +0 -0
  1233. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp +0 -0
  1234. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp +0 -0
  1235. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/greater.hpp +0 -0
  1236. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp +0 -0
  1237. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp +0 -0
  1238. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp +0 -0
  1239. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp +0 -0
  1240. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp +0 -0
  1241. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/less.hpp +0 -0
  1242. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp +0 -0
  1243. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/list.hpp +0 -0
  1244. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp +0 -0
  1245. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/map.hpp +0 -0
  1246. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/minus.hpp +0 -0
  1247. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp +0 -0
  1248. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp +0 -0
  1249. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/or.hpp +0 -0
  1250. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp +0 -0
  1251. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/plus.hpp +0 -0
  1252. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/quote.hpp +0 -0
  1253. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp +0 -0
  1254. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp +0 -0
  1255. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/set.hpp +0 -0
  1256. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp +0 -0
  1257. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp +0 -0
  1258. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp +0 -0
  1259. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp +0 -0
  1260. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/times.hpp +0 -0
  1261. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp +0 -0
  1262. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/vector.hpp +0 -0
  1263. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp +0 -0
  1264. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp +0 -0
  1265. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp +0 -0
  1266. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/and.hpp +0 -0
  1267. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply.hpp +0 -0
  1268. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp +0 -0
  1269. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp +0 -0
  1270. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/arg.hpp +0 -0
  1271. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp +0 -0
  1272. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bind.hpp +0 -0
  1273. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp +0 -0
  1274. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp +0 -0
  1275. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp +0 -0
  1276. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp +0 -0
  1277. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/deque.hpp +0 -0
  1278. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/divides.hpp +0 -0
  1279. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp +0 -0
  1280. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp +0 -0
  1281. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp +0 -0
  1282. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/greater.hpp +0 -0
  1283. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp +0 -0
  1284. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp +0 -0
  1285. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp +0 -0
  1286. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp +0 -0
  1287. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp +0 -0
  1288. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/less.hpp +0 -0
  1289. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp +0 -0
  1290. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/list.hpp +0 -0
  1291. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp +0 -0
  1292. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/map.hpp +0 -0
  1293. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/minus.hpp +0 -0
  1294. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp +0 -0
  1295. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp +0 -0
  1296. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/or.hpp +0 -0
  1297. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp +0 -0
  1298. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/plus.hpp +0 -0
  1299. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/quote.hpp +0 -0
  1300. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp +0 -0
  1301. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp +0 -0
  1302. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/set.hpp +0 -0
  1303. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp +0 -0
  1304. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp +0 -0
  1305. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp +0 -0
  1306. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp +0 -0
  1307. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/times.hpp +0 -0
  1308. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp +0 -0
  1309. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/vector.hpp +0 -0
  1310. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp +0 -0
  1311. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp +0 -0
  1312. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp +0 -0
  1313. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/and.hpp +0 -0
  1314. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply.hpp +0 -0
  1315. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp +0 -0
  1316. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp +0 -0
  1317. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/arg.hpp +0 -0
  1318. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp +0 -0
  1319. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bind.hpp +0 -0
  1320. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp +0 -0
  1321. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp +0 -0
  1322. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp +0 -0
  1323. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp +0 -0
  1324. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/deque.hpp +0 -0
  1325. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/divides.hpp +0 -0
  1326. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp +0 -0
  1327. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp +0 -0
  1328. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp +0 -0
  1329. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/greater.hpp +0 -0
  1330. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp +0 -0
  1331. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp +0 -0
  1332. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp +0 -0
  1333. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp +0 -0
  1334. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp +0 -0
  1335. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/less.hpp +0 -0
  1336. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp +0 -0
  1337. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/list.hpp +0 -0
  1338. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp +0 -0
  1339. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/map.hpp +0 -0
  1340. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/minus.hpp +0 -0
  1341. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp +0 -0
  1342. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp +0 -0
  1343. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/or.hpp +0 -0
  1344. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp +0 -0
  1345. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/plus.hpp +0 -0
  1346. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/quote.hpp +0 -0
  1347. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp +0 -0
  1348. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp +0 -0
  1349. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/set.hpp +0 -0
  1350. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp +0 -0
  1351. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp +0 -0
  1352. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp +0 -0
  1353. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp +0 -0
  1354. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/times.hpp +0 -0
  1355. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp +0 -0
  1356. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/vector.hpp +0 -0
  1357. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp +0 -0
  1358. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp +0 -0
  1359. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp +0 -0
  1360. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/and.hpp +0 -0
  1361. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp +0 -0
  1362. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp +0 -0
  1363. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp +0 -0
  1364. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp +0 -0
  1365. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp +0 -0
  1366. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp +0 -0
  1367. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp +0 -0
  1368. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp +0 -0
  1369. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp +0 -0
  1370. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp +0 -0
  1371. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp +0 -0
  1372. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp +0 -0
  1373. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp +0 -0
  1374. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp +0 -0
  1375. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp +0 -0
  1376. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp +0 -0
  1377. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp +0 -0
  1378. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp +0 -0
  1379. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp +0 -0
  1380. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp +0 -0
  1381. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp +0 -0
  1382. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/less.hpp +0 -0
  1383. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp +0 -0
  1384. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/list.hpp +0 -0
  1385. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp +0 -0
  1386. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/map.hpp +0 -0
  1387. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp +0 -0
  1388. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp +0 -0
  1389. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp +0 -0
  1390. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/or.hpp +0 -0
  1391. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp +0 -0
  1392. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp +0 -0
  1393. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp +0 -0
  1394. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp +0 -0
  1395. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp +0 -0
  1396. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/set.hpp +0 -0
  1397. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp +0 -0
  1398. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp +0 -0
  1399. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp +0 -0
  1400. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp +0 -0
  1401. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/times.hpp +0 -0
  1402. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp +0 -0
  1403. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp +0 -0
  1404. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp +0 -0
  1405. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp +0 -0
  1406. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp +0 -0
  1407. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/and.hpp +0 -0
  1408. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp +0 -0
  1409. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp +0 -0
  1410. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp +0 -0
  1411. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp +0 -0
  1412. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp +0 -0
  1413. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp +0 -0
  1414. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp +0 -0
  1415. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp +0 -0
  1416. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp +0 -0
  1417. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp +0 -0
  1418. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp +0 -0
  1419. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp +0 -0
  1420. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp +0 -0
  1421. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp +0 -0
  1422. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp +0 -0
  1423. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp +0 -0
  1424. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp +0 -0
  1425. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp +0 -0
  1426. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp +0 -0
  1427. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp +0 -0
  1428. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp +0 -0
  1429. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/less.hpp +0 -0
  1430. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp +0 -0
  1431. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/list.hpp +0 -0
  1432. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp +0 -0
  1433. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/map.hpp +0 -0
  1434. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp +0 -0
  1435. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp +0 -0
  1436. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp +0 -0
  1437. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/or.hpp +0 -0
  1438. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp +0 -0
  1439. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp +0 -0
  1440. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp +0 -0
  1441. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp +0 -0
  1442. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp +0 -0
  1443. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/set.hpp +0 -0
  1444. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp +0 -0
  1445. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp +0 -0
  1446. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp +0 -0
  1447. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp +0 -0
  1448. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/times.hpp +0 -0
  1449. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp +0 -0
  1450. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp +0 -0
  1451. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp +0 -0
  1452. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp +0 -0
  1453. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp +0 -0
  1454. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/and.hpp +0 -0
  1455. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply.hpp +0 -0
  1456. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp +0 -0
  1457. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp +0 -0
  1458. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/arg.hpp +0 -0
  1459. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp +0 -0
  1460. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bind.hpp +0 -0
  1461. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp +0 -0
  1462. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitand.hpp +0 -0
  1463. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitor.hpp +0 -0
  1464. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitxor.hpp +0 -0
  1465. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/deque.hpp +0 -0
  1466. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/divides.hpp +0 -0
  1467. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/equal_to.hpp +0 -0
  1468. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp +0 -0
  1469. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp +0 -0
  1470. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/greater.hpp +0 -0
  1471. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp +0 -0
  1472. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/inherit.hpp +0 -0
  1473. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp +0 -0
  1474. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp +0 -0
  1475. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp +0 -0
  1476. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/less.hpp +0 -0
  1477. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/less_equal.hpp +0 -0
  1478. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/list.hpp +0 -0
  1479. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/list_c.hpp +0 -0
  1480. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/map.hpp +0 -0
  1481. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/minus.hpp +0 -0
  1482. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/modulus.hpp +0 -0
  1483. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp +0 -0
  1484. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/or.hpp +0 -0
  1485. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/placeholders.hpp +0 -0
  1486. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/plus.hpp +0 -0
  1487. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/quote.hpp +0 -0
  1488. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp +0 -0
  1489. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp +0 -0
  1490. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/set.hpp +0 -0
  1491. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/set_c.hpp +0 -0
  1492. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/shift_left.hpp +0 -0
  1493. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/shift_right.hpp +0 -0
  1494. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/template_arity.hpp +0 -0
  1495. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/times.hpp +0 -0
  1496. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp +0 -0
  1497. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/vector.hpp +0 -0
  1498. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/vector_c.hpp +0 -0
  1499. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/add.hpp +0 -0
  1500. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/def_params_tail.hpp +0 -0
  1501. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/default_params.hpp +0 -0
  1502. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/enum.hpp +0 -0
  1503. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/ext_params.hpp +0 -0
  1504. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/filter_params.hpp +0 -0
  1505. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/is_seq.hpp +0 -0
  1506. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/params.hpp +0 -0
  1507. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +0 -0
  1508. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/range.hpp +0 -0
  1509. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/repeat.hpp +0 -0
  1510. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/sub.hpp +0 -0
  1511. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/token_equal.hpp +0 -0
  1512. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/tuple.hpp +0 -0
  1513. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/ptr_to_ref.hpp +0 -0
  1514. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/push_back_impl.hpp +0 -0
  1515. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/push_front_impl.hpp +0 -0
  1516. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/O1_size.hpp +0 -0
  1517. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/back.hpp +0 -0
  1518. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/empty.hpp +0 -0
  1519. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/front.hpp +0 -0
  1520. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/iterator.hpp +0 -0
  1521. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/size.hpp +0 -0
  1522. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/tag.hpp +0 -0
  1523. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_fold_impl.hpp +0 -0
  1524. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_fold_impl_body.hpp +0 -0
  1525. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_iter_fold_impl.hpp +0 -0
  1526. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/sequence_wrapper.hpp +0 -0
  1527. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/shift_op.hpp +0 -0
  1528. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/single_element_iter.hpp +0 -0
  1529. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/size_impl.hpp +0 -0
  1530. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/sort_impl.hpp +0 -0
  1531. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/static_cast.hpp +0 -0
  1532. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/template_arity.hpp +0 -0
  1533. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/template_arity_fwd.hpp +0 -0
  1534. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test.hpp +0 -0
  1535. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/assert.hpp +0 -0
  1536. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/data.hpp +0 -0
  1537. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/test_case.hpp +0 -0
  1538. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/traits_lambda_spec.hpp +0 -0
  1539. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/transform_iter.hpp +0 -0
  1540. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/type_wrapper.hpp +0 -0
  1541. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/unwrap.hpp +0 -0
  1542. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/value_wknd.hpp +0 -0
  1543. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/yes_no.hpp +0 -0
  1544. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back.hpp +0 -0
  1545. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back_fwd.hpp +0 -0
  1546. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back_inserter.hpp +0 -0
  1547. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/base.hpp +0 -0
  1548. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin.hpp +0 -0
  1549. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin_end.hpp +0 -0
  1550. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin_end_fwd.hpp +0 -0
  1551. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bind.hpp +0 -0
  1552. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bind_fwd.hpp +0 -0
  1553. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitand.hpp +0 -0
  1554. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitor.hpp +0 -0
  1555. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitwise.hpp +0 -0
  1556. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitxor.hpp +0 -0
  1557. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bool.hpp +0 -0
  1558. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bool_fwd.hpp +0 -0
  1559. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/char.hpp +0 -0
  1560. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/char_fwd.hpp +0 -0
  1561. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/clear.hpp +0 -0
  1562. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/clear_fwd.hpp +0 -0
  1563. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/comparison.hpp +0 -0
  1564. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/contains.hpp +0 -0
  1565. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/contains_fwd.hpp +0 -0
  1566. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/copy.hpp +0 -0
  1567. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/copy_if.hpp +0 -0
  1568. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count.hpp +0 -0
  1569. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count_fwd.hpp +0 -0
  1570. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count_if.hpp +0 -0
  1571. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/deque.hpp +0 -0
  1572. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/deref.hpp +0 -0
  1573. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/distance.hpp +0 -0
  1574. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/distance_fwd.hpp +0 -0
  1575. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/divides.hpp +0 -0
  1576. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty.hpp +0 -0
  1577. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_base.hpp +0 -0
  1578. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_fwd.hpp +0 -0
  1579. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_sequence.hpp +0 -0
  1580. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/end.hpp +0 -0
  1581. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/equal.hpp +0 -0
  1582. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/equal_to.hpp +0 -0
  1583. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase.hpp +0 -0
  1584. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_fwd.hpp +0 -0
  1585. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_key.hpp +0 -0
  1586. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_key_fwd.hpp +0 -0
  1587. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/eval_if.hpp +0 -0
  1588. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/filter_view.hpp +0 -0
  1589. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/find.hpp +0 -0
  1590. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/find_if.hpp +0 -0
  1591. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/fold.hpp +0 -0
  1592. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/for_each.hpp +0 -0
  1593. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front.hpp +0 -0
  1594. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front_fwd.hpp +0 -0
  1595. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front_inserter.hpp +0 -0
  1596. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/greater.hpp +0 -0
  1597. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/greater_equal.hpp +0 -0
  1598. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_key.hpp +0 -0
  1599. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_key_fwd.hpp +0 -0
  1600. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_xxx.hpp +0 -0
  1601. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/identity.hpp +0 -0
  1602. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/if.hpp +0 -0
  1603. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/index_if.hpp +0 -0
  1604. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/index_of.hpp +0 -0
  1605. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inherit.hpp +0 -0
  1606. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inherit_linearly.hpp +0 -0
  1607. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert.hpp +0 -0
  1608. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_fwd.hpp +0 -0
  1609. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_range.hpp +0 -0
  1610. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_range_fwd.hpp +0 -0
  1611. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inserter.hpp +0 -0
  1612. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/int.hpp +0 -0
  1613. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/int_fwd.hpp +0 -0
  1614. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c.hpp +0 -0
  1615. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c_fwd.hpp +0 -0
  1616. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c_tag.hpp +0 -0
  1617. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/is_placeholder.hpp +0 -0
  1618. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/is_sequence.hpp +0 -0
  1619. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iter_fold.hpp +0 -0
  1620. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iter_fold_if.hpp +0 -0
  1621. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_category.hpp +0 -0
  1622. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_range.hpp +0 -0
  1623. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_tags.hpp +0 -0
  1624. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/joint_view.hpp +0 -0
  1625. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/key_type.hpp +0 -0
  1626. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/key_type_fwd.hpp +0 -0
  1627. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lambda.hpp +0 -0
  1628. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lambda_fwd.hpp +0 -0
  1629. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/less.hpp +0 -0
  1630. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/less_equal.hpp +0 -0
  1631. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/arity.hpp +0 -0
  1632. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/list.hpp +0 -0
  1633. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/map.hpp +0 -0
  1634. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/set.hpp +0 -0
  1635. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/string.hpp +0 -0
  1636. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/unrolling.hpp +0 -0
  1637. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/vector.hpp +0 -0
  1638. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list.hpp +0 -0
  1639. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/O1_size.hpp +0 -0
  1640. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/begin_end.hpp +0 -0
  1641. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/clear.hpp +0 -0
  1642. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/empty.hpp +0 -0
  1643. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/front.hpp +0 -0
  1644. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/include_preprocessed.hpp +0 -0
  1645. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/item.hpp +0 -0
  1646. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/iterator.hpp +0 -0
  1647. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/numbered.hpp +0 -0
  1648. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/numbered_c.hpp +0 -0
  1649. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/pop_front.hpp +0 -0
  1650. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list10.hpp +0 -0
  1651. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp +0 -0
  1652. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list20.hpp +0 -0
  1653. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp +0 -0
  1654. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list30.hpp +0 -0
  1655. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp +0 -0
  1656. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list40.hpp +0 -0
  1657. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp +0 -0
  1658. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list50.hpp +0 -0
  1659. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp +0 -0
  1660. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/push_back.hpp +0 -0
  1661. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/push_front.hpp +0 -0
  1662. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/size.hpp +0 -0
  1663. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/tag.hpp +0 -0
  1664. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list0.hpp +0 -0
  1665. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list0_c.hpp +0 -0
  1666. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list10.hpp +0 -0
  1667. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list10_c.hpp +0 -0
  1668. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list20.hpp +0 -0
  1669. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list20_c.hpp +0 -0
  1670. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list30.hpp +0 -0
  1671. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list30_c.hpp +0 -0
  1672. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list40.hpp +0 -0
  1673. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list40_c.hpp +0 -0
  1674. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list50.hpp +0 -0
  1675. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list50_c.hpp +0 -0
  1676. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list_c.hpp +0 -0
  1677. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/logical.hpp +0 -0
  1678. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/long.hpp +0 -0
  1679. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/long_fwd.hpp +0 -0
  1680. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lower_bound.hpp +0 -0
  1681. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map.hpp +0 -0
  1682. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/at_impl.hpp +0 -0
  1683. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/begin_end_impl.hpp +0 -0
  1684. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/clear_impl.hpp +0 -0
  1685. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/contains_impl.hpp +0 -0
  1686. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/empty_impl.hpp +0 -0
  1687. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/erase_impl.hpp +0 -0
  1688. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/erase_key_impl.hpp +0 -0
  1689. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/has_key_impl.hpp +0 -0
  1690. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/include_preprocessed.hpp +0 -0
  1691. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/insert_impl.hpp +0 -0
  1692. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/item.hpp +0 -0
  1693. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/iterator.hpp +0 -0
  1694. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/key_type_impl.hpp +0 -0
  1695. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/map0.hpp +0 -0
  1696. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/numbered.hpp +0 -0
  1697. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp +0 -0
  1698. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp +0 -0
  1699. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp +0 -0
  1700. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp +0 -0
  1701. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp +0 -0
  1702. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map10.hpp +0 -0
  1703. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map20.hpp +0 -0
  1704. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map30.hpp +0 -0
  1705. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map40.hpp +0 -0
  1706. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map50.hpp +0 -0
  1707. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp +0 -0
  1708. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp +0 -0
  1709. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp +0 -0
  1710. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp +0 -0
  1711. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp +0 -0
  1712. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/size_impl.hpp +0 -0
  1713. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/tag.hpp +0 -0
  1714. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/value_type_impl.hpp +0 -0
  1715. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map0.hpp +0 -0
  1716. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map10.hpp +0 -0
  1717. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map20.hpp +0 -0
  1718. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map30.hpp +0 -0
  1719. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map40.hpp +0 -0
  1720. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map50.hpp +0 -0
  1721. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/fixed_c.hpp +0 -0
  1722. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/is_even.hpp +0 -0
  1723. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/rational_c.hpp +0 -0
  1724. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/max.hpp +0 -0
  1725. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/max_element.hpp +0 -0
  1726. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min.hpp +0 -0
  1727. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min_element.hpp +0 -0
  1728. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min_max.hpp +0 -0
  1729. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/minus.hpp +0 -0
  1730. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/modulus.hpp +0 -0
  1731. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiplies.hpp +0 -0
  1732. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/count_impl.hpp +0 -0
  1733. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/insert_impl.hpp +0 -0
  1734. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/item.hpp +0 -0
  1735. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/multiset0.hpp +0 -0
  1736. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/tag.hpp +0 -0
  1737. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/multiset0.hpp +0 -0
  1738. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/negate.hpp +0 -0
  1739. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/next.hpp +0 -0
  1740. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/next_prior.hpp +0 -0
  1741. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/not.hpp +0 -0
  1742. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/not_equal_to.hpp +0 -0
  1743. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/numeric_cast.hpp +0 -0
  1744. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/or.hpp +0 -0
  1745. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/order.hpp +0 -0
  1746. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/order_fwd.hpp +0 -0
  1747. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pair.hpp +0 -0
  1748. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pair_view.hpp +0 -0
  1749. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/partition.hpp +0 -0
  1750. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/placeholders.hpp +0 -0
  1751. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/plus.hpp +0 -0
  1752. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_back.hpp +0 -0
  1753. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_back_fwd.hpp +0 -0
  1754. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_front.hpp +0 -0
  1755. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_front_fwd.hpp +0 -0
  1756. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/print.hpp +0 -0
  1757. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/prior.hpp +0 -0
  1758. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/protect.hpp +0 -0
  1759. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_back.hpp +0 -0
  1760. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_back_fwd.hpp +0 -0
  1761. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_front.hpp +0 -0
  1762. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_front_fwd.hpp +0 -0
  1763. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/quote.hpp +0 -0
  1764. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/range_c.hpp +0 -0
  1765. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/remove.hpp +0 -0
  1766. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/remove_if.hpp +0 -0
  1767. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/replace.hpp +0 -0
  1768. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/replace_if.hpp +0 -0
  1769. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse.hpp +0 -0
  1770. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse_fold.hpp +0 -0
  1771. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse_iter_fold.hpp +0 -0
  1772. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/same_as.hpp +0 -0
  1773. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sequence_tag.hpp +0 -0
  1774. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sequence_tag_fwd.hpp +0 -0
  1775. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set.hpp +0 -0
  1776. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/at_impl.hpp +0 -0
  1777. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/begin_end_impl.hpp +0 -0
  1778. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/clear_impl.hpp +0 -0
  1779. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/empty_impl.hpp +0 -0
  1780. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/erase_impl.hpp +0 -0
  1781. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/erase_key_impl.hpp +0 -0
  1782. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/has_key_impl.hpp +0 -0
  1783. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/include_preprocessed.hpp +0 -0
  1784. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/insert_impl.hpp +0 -0
  1785. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/item.hpp +0 -0
  1786. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/iterator.hpp +0 -0
  1787. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/key_type_impl.hpp +0 -0
  1788. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/numbered.hpp +0 -0
  1789. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/numbered_c.hpp +0 -0
  1790. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set10.hpp +0 -0
  1791. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp +0 -0
  1792. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set20.hpp +0 -0
  1793. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp +0 -0
  1794. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set30.hpp +0 -0
  1795. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp +0 -0
  1796. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set40.hpp +0 -0
  1797. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp +0 -0
  1798. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set50.hpp +0 -0
  1799. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp +0 -0
  1800. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/set0.hpp +0 -0
  1801. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/size_impl.hpp +0 -0
  1802. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/tag.hpp +0 -0
  1803. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/value_type_impl.hpp +0 -0
  1804. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set0.hpp +0 -0
  1805. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set0_c.hpp +0 -0
  1806. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set10.hpp +0 -0
  1807. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set10_c.hpp +0 -0
  1808. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set20.hpp +0 -0
  1809. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set20_c.hpp +0 -0
  1810. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set30.hpp +0 -0
  1811. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set30_c.hpp +0 -0
  1812. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set40.hpp +0 -0
  1813. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set40_c.hpp +0 -0
  1814. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set50.hpp +0 -0
  1815. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set50_c.hpp +0 -0
  1816. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set_c.hpp +0 -0
  1817. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/shift_left.hpp +0 -0
  1818. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/shift_right.hpp +0 -0
  1819. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/single_view.hpp +0 -0
  1820. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size.hpp +0 -0
  1821. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_fwd.hpp +0 -0
  1822. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_t.hpp +0 -0
  1823. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_t_fwd.hpp +0 -0
  1824. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sizeof.hpp +0 -0
  1825. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sort.hpp +0 -0
  1826. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/stable_partition.hpp +0 -0
  1827. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/string.hpp +0 -0
  1828. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/switch.hpp +0 -0
  1829. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/tag.hpp +0 -0
  1830. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/times.hpp +0 -0
  1831. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/transform.hpp +0 -0
  1832. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/transform_view.hpp +0 -0
  1833. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/unique.hpp +0 -0
  1834. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/unpack_args.hpp +0 -0
  1835. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/upper_bound.hpp +0 -0
  1836. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/value_type.hpp +0 -0
  1837. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/value_type_fwd.hpp +0 -0
  1838. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector.hpp +0 -0
  1839. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/O1_size.hpp +0 -0
  1840. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/at.hpp +0 -0
  1841. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/back.hpp +0 -0
  1842. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/begin_end.hpp +0 -0
  1843. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/clear.hpp +0 -0
  1844. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/empty.hpp +0 -0
  1845. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/front.hpp +0 -0
  1846. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/include_preprocessed.hpp +0 -0
  1847. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/item.hpp +0 -0
  1848. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/iterator.hpp +0 -0
  1849. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/numbered.hpp +0 -0
  1850. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/numbered_c.hpp +0 -0
  1851. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/pop_back.hpp +0 -0
  1852. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/pop_front.hpp +0 -0
  1853. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp +0 -0
  1854. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp +0 -0
  1855. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp +0 -0
  1856. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp +0 -0
  1857. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp +0 -0
  1858. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp +0 -0
  1859. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp +0 -0
  1860. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp +0 -0
  1861. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp +0 -0
  1862. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp +0 -0
  1863. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp +0 -0
  1864. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp +0 -0
  1865. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp +0 -0
  1866. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp +0 -0
  1867. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp +0 -0
  1868. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp +0 -0
  1869. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp +0 -0
  1870. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp +0 -0
  1871. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp +0 -0
  1872. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp +0 -0
  1873. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp +0 -0
  1874. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp +0 -0
  1875. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp +0 -0
  1876. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp +0 -0
  1877. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp +0 -0
  1878. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp +0 -0
  1879. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp +0 -0
  1880. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp +0 -0
  1881. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp +0 -0
  1882. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp +0 -0
  1883. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/push_back.hpp +0 -0
  1884. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/push_front.hpp +0 -0
  1885. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/size.hpp +0 -0
  1886. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/tag.hpp +0 -0
  1887. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/vector0.hpp +0 -0
  1888. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector0.hpp +0 -0
  1889. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector0_c.hpp +0 -0
  1890. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector10.hpp +0 -0
  1891. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector10_c.hpp +0 -0
  1892. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector20.hpp +0 -0
  1893. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector20_c.hpp +0 -0
  1894. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector30.hpp +0 -0
  1895. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector30_c.hpp +0 -0
  1896. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector40.hpp +0 -0
  1897. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector40_c.hpp +0 -0
  1898. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector50.hpp +0 -0
  1899. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector50_c.hpp +0 -0
  1900. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector_c.hpp +0 -0
  1901. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/void.hpp +0 -0
  1902. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/void_fwd.hpp +0 -0
  1903. data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/zip_view.hpp +0 -0
  1904. data/{ext → src/cxx_supportlib/vendor-modified}/boost/next_prior.hpp +0 -0
  1905. data/{ext → src/cxx_supportlib/vendor-modified}/boost/non_type.hpp +0 -0
  1906. data/{ext → src/cxx_supportlib/vendor-modified}/boost/noncopyable.hpp +0 -0
  1907. data/{ext → src/cxx_supportlib/vendor-modified}/boost/none.hpp +0 -0
  1908. data/{ext → src/cxx_supportlib/vendor-modified}/boost/none_t.hpp +0 -0
  1909. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/bounds.hpp +0 -0
  1910. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/cast.hpp +0 -0
  1911. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/conversion_traits.hpp +0 -0
  1912. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/converter.hpp +0 -0
  1913. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/converter_policies.hpp +0 -0
  1914. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/bounds.hpp +0 -0
  1915. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/conversion_traits.hpp +0 -0
  1916. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/converter.hpp +0 -0
  1917. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/int_float_mixture.hpp +0 -0
  1918. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/is_subranged.hpp +0 -0
  1919. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/meta.hpp +0 -0
  1920. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/numeric_cast_traits.hpp +0 -0
  1921. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp +0 -0
  1922. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp +0 -0
  1923. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/sign_mixture.hpp +0 -0
  1924. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +0 -0
  1925. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/int_float_mixture_enum.hpp +0 -0
  1926. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/numeric_cast_traits.hpp +0 -0
  1927. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/sign_mixture_enum.hpp +0 -0
  1928. data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/udt_builtin_mixture_enum.hpp +0 -0
  1929. data/{ext → src/cxx_supportlib/vendor-modified}/boost/operators.hpp +0 -0
  1930. data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional.hpp +0 -0
  1931. data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional/optional.hpp +0 -0
  1932. data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional/optional_fwd.hpp +0 -0
  1933. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter.hpp +0 -0
  1934. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/arg_list.hpp +0 -0
  1935. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/cast.hpp +0 -0
  1936. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/default.hpp +0 -0
  1937. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/is_maybe.hpp +0 -0
  1938. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/maybe.hpp +0 -0
  1939. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/overloads.hpp +0 -0
  1940. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/parameter_requirements.hpp +0 -0
  1941. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/parenthesized_type.hpp +0 -0
  1942. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/preprocessor/flatten.hpp +0 -0
  1943. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/preprocessor/for_each.hpp +0 -0
  1944. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/python/invoker.hpp +0 -0
  1945. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/python/invoker_iterate.hpp +0 -0
  1946. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/result_of0.hpp +0 -0
  1947. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/set.hpp +0 -0
  1948. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/tag.hpp +0 -0
  1949. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/tagged_argument.hpp +0 -0
  1950. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/template_keyword.hpp +0 -0
  1951. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/unwrap_cv_reference.hpp +0 -0
  1952. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/void.hpp +0 -0
  1953. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/yesno.hpp +0 -0
  1954. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/binding.hpp +0 -0
  1955. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/config.hpp +0 -0
  1956. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/keyword.hpp +0 -0
  1957. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/macros.hpp +0 -0
  1958. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/match.hpp +0 -0
  1959. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/name.hpp +0 -0
  1960. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/parameters.hpp +0 -0
  1961. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/preprocessor.hpp +0 -0
  1962. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/python.hpp +0 -0
  1963. data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/value_type.hpp +0 -0
  1964. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pointee.hpp +0 -0
  1965. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pointer_to_other.hpp +0 -0
  1966. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/for.m4 +0 -0
  1967. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/guard.hpp +0 -0
  1968. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/mutex.hpp +0 -0
  1969. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.bat +0 -0
  1970. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.ipp +0 -0
  1971. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.m4 +0 -0
  1972. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.sh +0 -0
  1973. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.bat +0 -0
  1974. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.ipp +0 -0
  1975. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.m4 +0 -0
  1976. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.sh +0 -0
  1977. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/object_pool.hpp +0 -0
  1978. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/pool.hpp +0 -0
  1979. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/pool_alloc.hpp +0 -0
  1980. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/poolfwd.hpp +0 -0
  1981. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/simple_segregated_storage.hpp +0 -0
  1982. data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/singleton_pool.hpp +0 -0
  1983. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic.hpp +0 -0
  1984. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/add.hpp +0 -0
  1985. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/dec.hpp +0 -0
  1986. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/detail/div_base.hpp +0 -0
  1987. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/div.hpp +0 -0
  1988. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/inc.hpp +0 -0
  1989. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/mod.hpp +0 -0
  1990. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/mul.hpp +0 -0
  1991. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/sub.hpp +0 -0
  1992. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array.hpp +0 -0
  1993. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/data.hpp +0 -0
  1994. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/elem.hpp +0 -0
  1995. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/enum.hpp +0 -0
  1996. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/insert.hpp +0 -0
  1997. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/pop_back.hpp +0 -0
  1998. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/pop_front.hpp +0 -0
  1999. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/push_back.hpp +0 -0
  2000. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/push_front.hpp +0 -0
  2001. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/remove.hpp +0 -0
  2002. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/replace.hpp +0 -0
  2003. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/reverse.hpp +0 -0
  2004. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/size.hpp +0 -0
  2005. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_list.hpp +0 -0
  2006. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_seq.hpp +0 -0
  2007. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_tuple.hpp +0 -0
  2008. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/assert_msg.hpp +0 -0
  2009. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/cat.hpp +0 -0
  2010. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comma.hpp +0 -0
  2011. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comma_if.hpp +0 -0
  2012. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison.hpp +0 -0
  2013. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/equal.hpp +0 -0
  2014. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/greater.hpp +0 -0
  2015. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/greater_equal.hpp +0 -0
  2016. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/less.hpp +0 -0
  2017. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/less_equal.hpp +0 -0
  2018. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/not_equal.hpp +0 -0
  2019. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/config/config.hpp +0 -0
  2020. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/config/limits.hpp +0 -0
  2021. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control.hpp +0 -0
  2022. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/deduce_d.hpp +0 -0
  2023. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/dmc/while.hpp +0 -0
  2024. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/edg/while.hpp +0 -0
  2025. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/msvc/while.hpp +0 -0
  2026. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/while.hpp +0 -0
  2027. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/expr_if.hpp +0 -0
  2028. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/expr_iif.hpp +0 -0
  2029. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/if.hpp +0 -0
  2030. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/iif.hpp +0 -0
  2031. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/while.hpp +0 -0
  2032. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug.hpp +0 -0
  2033. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/assert.hpp +0 -0
  2034. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/error.hpp +0 -0
  2035. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/line.hpp +0 -0
  2036. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/dec.hpp +0 -0
  2037. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/auto_rec.hpp +0 -0
  2038. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/check.hpp +0 -0
  2039. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/dmc/auto_rec.hpp +0 -0
  2040. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_binary.hpp +0 -0
  2041. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_nullary.hpp +0 -0
  2042. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_unary.hpp +0 -0
  2043. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/null.hpp +0 -0
  2044. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/split.hpp +0 -0
  2045. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/empty.hpp +0 -0
  2046. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum.hpp +0 -0
  2047. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params.hpp +0 -0
  2048. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params_with_a_default.hpp +0 -0
  2049. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params_with_defaults.hpp +0 -0
  2050. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_shifted.hpp +0 -0
  2051. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_shifted_params.hpp +0 -0
  2052. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/expand.hpp +0 -0
  2053. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/expr_if.hpp +0 -0
  2054. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities.hpp +0 -0
  2055. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/apply.hpp +0 -0
  2056. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/empty.hpp +0 -0
  2057. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/expand.hpp +0 -0
  2058. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/identity.hpp +0 -0
  2059. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/intercept.hpp +0 -0
  2060. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_1.hpp +0 -0
  2061. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_empty.hpp +0 -0
  2062. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_empty_or_1.hpp +0 -0
  2063. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/overload.hpp +0 -0
  2064. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/for.hpp +0 -0
  2065. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/identity.hpp +0 -0
  2066. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/if.hpp +0 -0
  2067. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/inc.hpp +0 -0
  2068. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iterate.hpp +0 -0
  2069. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration.hpp +0 -0
  2070. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower1.hpp +0 -0
  2071. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower2.hpp +0 -0
  2072. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower3.hpp +0 -0
  2073. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower4.hpp +0 -0
  2074. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower5.hpp +0 -0
  2075. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper1.hpp +0 -0
  2076. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper2.hpp +0 -0
  2077. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper3.hpp +0 -0
  2078. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper4.hpp +0 -0
  2079. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper5.hpp +0 -0
  2080. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/finish.hpp +0 -0
  2081. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward1.hpp +0 -0
  2082. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward2.hpp +0 -0
  2083. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward3.hpp +0 -0
  2084. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward4.hpp +0 -0
  2085. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward5.hpp +0 -0
  2086. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse1.hpp +0 -0
  2087. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse2.hpp +0 -0
  2088. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse3.hpp +0 -0
  2089. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse4.hpp +0 -0
  2090. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse5.hpp +0 -0
  2091. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/local.hpp +0 -0
  2092. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/rlocal.hpp +0 -0
  2093. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/self.hpp +0 -0
  2094. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/start.hpp +0 -0
  2095. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/iterate.hpp +0 -0
  2096. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/local.hpp +0 -0
  2097. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/self.hpp +0 -0
  2098. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/library.hpp +0 -0
  2099. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/limits.hpp +0 -0
  2100. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list.hpp +0 -0
  2101. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/adt.hpp +0 -0
  2102. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/append.hpp +0 -0
  2103. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/at.hpp +0 -0
  2104. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/cat.hpp +0 -0
  2105. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/dmc/fold_left.hpp +0 -0
  2106. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/edg/fold_left.hpp +0 -0
  2107. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/edg/fold_right.hpp +0 -0
  2108. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/fold_left.hpp +0 -0
  2109. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/fold_right.hpp +0 -0
  2110. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/enum.hpp +0 -0
  2111. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/filter.hpp +0 -0
  2112. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/first_n.hpp +0 -0
  2113. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/fold_left.hpp +0 -0
  2114. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/fold_right.hpp +0 -0
  2115. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each.hpp +0 -0
  2116. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each_i.hpp +0 -0
  2117. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each_product.hpp +0 -0
  2118. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/rest_n.hpp +0 -0
  2119. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/reverse.hpp +0 -0
  2120. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/size.hpp +0 -0
  2121. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_array.hpp +0 -0
  2122. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_seq.hpp +0 -0
  2123. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_tuple.hpp +0 -0
  2124. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/transform.hpp +0 -0
  2125. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical.hpp +0 -0
  2126. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/and.hpp +0 -0
  2127. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitand.hpp +0 -0
  2128. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitnor.hpp +0 -0
  2129. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitor.hpp +0 -0
  2130. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitxor.hpp +0 -0
  2131. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bool.hpp +0 -0
  2132. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/compl.hpp +0 -0
  2133. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/nor.hpp +0 -0
  2134. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/not.hpp +0 -0
  2135. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/or.hpp +0 -0
  2136. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/xor.hpp +0 -0
  2137. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/max.hpp +0 -0
  2138. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/min.hpp +0 -0
  2139. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation.hpp +0 -0
  2140. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/comma.hpp +0 -0
  2141. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/comma_if.hpp +0 -0
  2142. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/paren.hpp +0 -0
  2143. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/paren_if.hpp +0 -0
  2144. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat.hpp +0 -0
  2145. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_2nd.hpp +0 -0
  2146. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_3rd.hpp +0 -0
  2147. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to.hpp +0 -0
  2148. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to_2nd.hpp +0 -0
  2149. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to_3rd.hpp +0 -0
  2150. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition.hpp +0 -0
  2151. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/deduce_r.hpp +0 -0
  2152. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/deduce_z.hpp +0 -0
  2153. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/dmc/for.hpp +0 -0
  2154. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/edg/for.hpp +0 -0
  2155. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/for.hpp +0 -0
  2156. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/msvc/for.hpp +0 -0
  2157. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum.hpp +0 -0
  2158. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_binary_params.hpp +0 -0
  2159. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params.hpp +0 -0
  2160. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params_with_a_default.hpp +0 -0
  2161. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params_with_defaults.hpp +0 -0
  2162. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted.hpp +0 -0
  2163. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted_binary_params.hpp +0 -0
  2164. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted_params.hpp +0 -0
  2165. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing.hpp +0 -0
  2166. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing_binary_params.hpp +0 -0
  2167. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing_params.hpp +0 -0
  2168. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/for.hpp +0 -0
  2169. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/repeat.hpp +0 -0
  2170. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/repeat_from_to.hpp +0 -0
  2171. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection.hpp +0 -0
  2172. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection/max.hpp +0 -0
  2173. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection/min.hpp +0 -0
  2174. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq.hpp +0 -0
  2175. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/cat.hpp +0 -0
  2176. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/detail/binary_transform.hpp +0 -0
  2177. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/detail/split.hpp +0 -0
  2178. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/elem.hpp +0 -0
  2179. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/enum.hpp +0 -0
  2180. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/filter.hpp +0 -0
  2181. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/first_n.hpp +0 -0
  2182. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/fold_left.hpp +0 -0
  2183. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/fold_right.hpp +0 -0
  2184. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each.hpp +0 -0
  2185. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each_i.hpp +0 -0
  2186. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each_product.hpp +0 -0
  2187. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/insert.hpp +0 -0
  2188. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/pop_back.hpp +0 -0
  2189. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/pop_front.hpp +0 -0
  2190. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/push_back.hpp +0 -0
  2191. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/push_front.hpp +0 -0
  2192. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/remove.hpp +0 -0
  2193. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/replace.hpp +0 -0
  2194. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/rest_n.hpp +0 -0
  2195. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/reverse.hpp +0 -0
  2196. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/seq.hpp +0 -0
  2197. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/size.hpp +0 -0
  2198. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/subseq.hpp +0 -0
  2199. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_array.hpp +0 -0
  2200. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_list.hpp +0 -0
  2201. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_tuple.hpp +0 -0
  2202. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/transform.hpp +0 -0
  2203. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot.hpp +0 -0
  2204. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/counter.hpp +0 -0
  2205. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/counter.hpp +0 -0
  2206. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/def.hpp +0 -0
  2207. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/shared.hpp +0 -0
  2208. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot1.hpp +0 -0
  2209. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot2.hpp +0 -0
  2210. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot3.hpp +0 -0
  2211. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot4.hpp +0 -0
  2212. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot5.hpp +0 -0
  2213. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/slot.hpp +0 -0
  2214. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/stringize.hpp +0 -0
  2215. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple.hpp +0 -0
  2216. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/eat.hpp +0 -0
  2217. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/elem.hpp +0 -0
  2218. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/enum.hpp +0 -0
  2219. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/rem.hpp +0 -0
  2220. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/reverse.hpp +0 -0
  2221. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/size.hpp +0 -0
  2222. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_array.hpp +0 -0
  2223. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_list.hpp +0 -0
  2224. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_seq.hpp +0 -0
  2225. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic.hpp +0 -0
  2226. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/elem.hpp +0 -0
  2227. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/size.hpp +0 -0
  2228. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_array.hpp +0 -0
  2229. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_list.hpp +0 -0
  2230. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_seq.hpp +0 -0
  2231. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_tuple.hpp +0 -0
  2232. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/while.hpp +0 -0
  2233. data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/wstringize.hpp +0 -0
  2234. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/algorithm/equal.hpp +0 -0
  2235. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/as_literal.hpp +0 -0
  2236. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/begin.hpp +0 -0
  2237. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/concepts.hpp +0 -0
  2238. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/config.hpp +0 -0
  2239. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/const_iterator.hpp +0 -0
  2240. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/common.hpp +0 -0
  2241. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/extract_optional_type.hpp +0 -0
  2242. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/implementation_help.hpp +0 -0
  2243. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/misc_concept.hpp +0 -0
  2244. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/safe_bool.hpp +0 -0
  2245. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/sfinae.hpp +0 -0
  2246. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/str_types.hpp +0 -0
  2247. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/difference_type.hpp +0 -0
  2248. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/distance.hpp +0 -0
  2249. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/empty.hpp +0 -0
  2250. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/end.hpp +0 -0
  2251. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/functions.hpp +0 -0
  2252. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator.hpp +0 -0
  2253. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range.hpp +0 -0
  2254. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range_core.hpp +0 -0
  2255. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range_io.hpp +0 -0
  2256. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/mutable_iterator.hpp +0 -0
  2257. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/rbegin.hpp +0 -0
  2258. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/rend.hpp +0 -0
  2259. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/reverse_iterator.hpp +0 -0
  2260. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/size.hpp +0 -0
  2261. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/size_type.hpp +0 -0
  2262. data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/value_type.hpp +0 -0
  2263. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/config.hpp +0 -0
  2264. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/abs.hpp +0 -0
  2265. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/gcd.hpp +0 -0
  2266. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/lcm.hpp +0 -0
  2267. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/sign.hpp +0 -0
  2268. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/overflow_helpers.hpp +0 -0
  2269. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/ratio.hpp +0 -0
  2270. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/ratio_fwd.hpp +0 -0
  2271. data/{ext → src/cxx_supportlib/vendor-modified}/boost/ref.hpp +0 -0
  2272. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex.h +0 -0
  2273. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex.hpp +0 -0
  2274. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/concepts.hpp +0 -0
  2275. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config.hpp +0 -0
  2276. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config/borland.hpp +0 -0
  2277. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config/cwchar.hpp +0 -0
  2278. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/mfc.hpp +0 -0
  2279. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pattern_except.hpp +0 -0
  2280. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/object_cache.hpp +0 -0
  2281. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/static_mutex.hpp +0 -0
  2282. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/unicode_iterator.hpp +0 -0
  2283. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/regex_traits.hpp +0 -0
  2284. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/user.hpp +0 -0
  2285. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex.hpp +0 -0
  2286. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex_creator.hpp +0 -0
  2287. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex_parser.hpp +0 -0
  2288. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/c_regex_traits.hpp +0 -0
  2289. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/char_regex_traits.hpp +0 -0
  2290. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/cpp_regex_traits.hpp +0 -0
  2291. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/cregex.hpp +0 -0
  2292. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/error_type.hpp +0 -0
  2293. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/fileiter.hpp +0 -0
  2294. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/instances.hpp +0 -0
  2295. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/iterator_category.hpp +0 -0
  2296. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/iterator_traits.hpp +0 -0
  2297. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/match_flags.hpp +0 -0
  2298. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/match_results.hpp +0 -0
  2299. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/mem_block_cache.hpp +0 -0
  2300. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher.hpp +0 -0
  2301. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_common.hpp +0 -0
  2302. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_non_recursive.hpp +0 -0
  2303. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_recursive.hpp +0 -0
  2304. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/primary_transform.hpp +0 -0
  2305. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/protected_call.hpp +0 -0
  2306. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regbase.hpp +0 -0
  2307. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex.hpp +0 -0
  2308. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_format.hpp +0 -0
  2309. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_fwd.hpp +0 -0
  2310. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_grep.hpp +0 -0
  2311. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_iterator.hpp +0 -0
  2312. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_match.hpp +0 -0
  2313. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_merge.hpp +0 -0
  2314. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_raw_buffer.hpp +0 -0
  2315. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_replace.hpp +0 -0
  2316. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_search.hpp +0 -0
  2317. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_split.hpp +0 -0
  2318. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_token_iterator.hpp +0 -0
  2319. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_traits.hpp +0 -0
  2320. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_traits_defaults.hpp +0 -0
  2321. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_workaround.hpp +0 -0
  2322. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/states.hpp +0 -0
  2323. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/sub_match.hpp +0 -0
  2324. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/syntax_type.hpp +0 -0
  2325. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/u32regex_iterator.hpp +0 -0
  2326. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/u32regex_token_iterator.hpp +0 -0
  2327. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/w32_regex_traits.hpp +0 -0
  2328. data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex_fwd.hpp +0 -0
  2329. data/{ext → src/cxx_supportlib/vendor-modified}/boost/scoped_array.hpp +0 -0
  2330. data/{ext → src/cxx_supportlib/vendor-modified}/boost/scoped_ptr.hpp +0 -0
  2331. data/{ext → src/cxx_supportlib/vendor-modified}/boost/shared_array.hpp +0 -0
  2332. data/{ext → src/cxx_supportlib/vendor-modified}/boost/shared_ptr.hpp +0 -0
  2333. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/allocate_shared_array.hpp +0 -0
  2334. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/bad_weak_ptr.hpp +0 -0
  2335. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/allocate_array_helper.hpp +0 -0
  2336. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_deleter.hpp +0 -0
  2337. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_traits.hpp +0 -0
  2338. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_utility.hpp +0 -0
  2339. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count.hpp +0 -0
  2340. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_gcc.hpp +0 -0
  2341. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +0 -0
  2342. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_pthreads.hpp +0 -0
  2343. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -0
  2344. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_sync.hpp +0 -0
  2345. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/make_array_helper.hpp +0 -0
  2346. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/operator_bool.hpp +0 -0
  2347. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/shared_count.hpp +0 -0
  2348. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_convertible.hpp +0 -0
  2349. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base.hpp +0 -0
  2350. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +0 -0
  2351. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_aix.hpp +0 -0
  2352. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +0 -0
  2353. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -0
  2354. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +0 -0
  2355. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +0 -0
  2356. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +0 -0
  2357. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +0 -0
  2358. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +0 -0
  2359. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_nt.hpp +0 -0
  2360. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_pt.hpp +0 -0
  2361. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +0 -0
  2362. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -0
  2363. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_spin.hpp +0 -0
  2364. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_sync.hpp +0 -0
  2365. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +0 -0
  2366. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -0
  2367. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_forward.hpp +0 -0
  2368. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_has_sync.hpp +0 -0
  2369. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_if_array.hpp +0 -0
  2370. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_nullptr_t.hpp +0 -0
  2371. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock.hpp +0 -0
  2372. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +0 -0
  2373. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_nt.hpp +0 -0
  2374. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_pool.hpp +0 -0
  2375. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_pt.hpp +0 -0
  2376. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_sync.hpp +0 -0
  2377. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/yield_k.hpp +0 -0
  2378. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/enable_shared_from_this.hpp +0 -0
  2379. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/intrusive_ptr.hpp +0 -0
  2380. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared.hpp +0 -0
  2381. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared_array.hpp +0 -0
  2382. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared_object.hpp +0 -0
  2383. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/scoped_array.hpp +0 -0
  2384. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/scoped_ptr.hpp +0 -0
  2385. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/shared_array.hpp +0 -0
  2386. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/shared_ptr.hpp +0 -0
  2387. data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/weak_ptr.hpp +0 -0
  2388. data/{ext → src/cxx_supportlib/vendor-modified}/boost/static_assert.hpp +0 -0
  2389. data/{ext → src/cxx_supportlib/vendor-modified}/boost/swap.hpp +0 -0
  2390. data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/api_config.hpp +0 -0
  2391. data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/config.hpp +0 -0
  2392. data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/error_code.hpp +0 -0
  2393. data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/system_error.hpp +0 -0
  2394. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread.hpp +0 -0
  2395. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/barrier.hpp +0 -0
  2396. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/completion_latch.hpp +0 -0
  2397. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/condition.hpp +0 -0
  2398. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/condition_variable.hpp +0 -0
  2399. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/cv_status.hpp +0 -0
  2400. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/async_func.hpp +0 -0
  2401. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/config.hpp +0 -0
  2402. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/counter.hpp +0 -0
  2403. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/delete.hpp +0 -0
  2404. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/force_cast.hpp +0 -0
  2405. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/invoke.hpp +0 -0
  2406. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/is_convertible.hpp +0 -0
  2407. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/lockable_wrapper.hpp +0 -0
  2408. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/log.hpp +0 -0
  2409. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/make_tuple_indices.hpp +0 -0
  2410. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/memory.hpp +0 -0
  2411. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/move.hpp +0 -0
  2412. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/platform.hpp +0 -0
  2413. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/singleton.hpp +0 -0
  2414. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread.hpp +0 -0
  2415. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_group.hpp +0 -0
  2416. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_heap_alloc.hpp +0 -0
  2417. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_interruption.hpp +0 -0
  2418. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/tss_hooks.hpp +0 -0
  2419. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/exceptions.hpp +0 -0
  2420. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/externally_locked.hpp +0 -0
  2421. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/externally_locked_stream.hpp +0 -0
  2422. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/future.hpp +0 -0
  2423. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/future_error_code.hpp +0 -0
  2424. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/is_locked_by_this_thread.hpp +0 -0
  2425. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/latch.hpp +0 -0
  2426. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_algorithms.hpp +0 -0
  2427. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_concepts.hpp +0 -0
  2428. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_factories.hpp +0 -0
  2429. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_guard.hpp +0 -0
  2430. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_options.hpp +0 -0
  2431. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_traits.hpp +0 -0
  2432. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_types.hpp +0 -0
  2433. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_adapter.hpp +0 -0
  2434. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_concepts.hpp +0 -0
  2435. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_traits.hpp +0 -0
  2436. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/locks.hpp +0 -0
  2437. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/mutex.hpp +0 -0
  2438. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/null_mutex.hpp +0 -0
  2439. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/once.hpp +0 -0
  2440. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_lockable.hpp +0 -0
  2441. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_lockable_adapter.hpp +0 -0
  2442. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_shared_lockable.hpp +0 -0
  2443. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_shared_lockable_adapter.hpp +0 -0
  2444. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/condition_variable.hpp +0 -0
  2445. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/condition_variable_fwd.hpp +0 -0
  2446. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/mutex.hpp +0 -0
  2447. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/once.hpp +0 -0
  2448. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/once_atomic.hpp +0 -0
  2449. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +0 -0
  2450. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/recursive_mutex.hpp +0 -0
  2451. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/shared_mutex.hpp +0 -0
  2452. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/shared_mutex_assert.hpp +0 -0
  2453. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/thread_data.hpp +0 -0
  2454. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/thread_heap_alloc.hpp +0 -0
  2455. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/timespec.hpp +0 -0
  2456. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/recursive_mutex.hpp +0 -0
  2457. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/reverse_lock.hpp +0 -0
  2458. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/scoped_thread.hpp +0 -0
  2459. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/shared_lock_guard.hpp +0 -0
  2460. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/shared_mutex.hpp +0 -0
  2461. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/strict_lock.hpp +0 -0
  2462. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/sync_bounded_queue.hpp +0 -0
  2463. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/sync_queue.hpp +0 -0
  2464. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/synchronized_value.hpp +0 -0
  2465. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/testable_mutex.hpp +0 -0
  2466. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread.hpp +0 -0
  2467. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_functors.hpp +0 -0
  2468. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_guard.hpp +0 -0
  2469. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_only.hpp +0 -0
  2470. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_time.hpp +0 -0
  2471. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/tss.hpp +0 -0
  2472. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/v2/shared_mutex.hpp +0 -0
  2473. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/v2/thread.hpp +0 -0
  2474. data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/xtime.hpp +0 -0
  2475. data/{ext → src/cxx_supportlib/vendor-modified}/boost/throw_exception.hpp +0 -0
  2476. data/{ext → src/cxx_supportlib/vendor-modified}/boost/token_functions.hpp +0 -0
  2477. data/{ext → src/cxx_supportlib/vendor-modified}/boost/token_iterator.hpp +0 -0
  2478. data/{ext → src/cxx_supportlib/vendor-modified}/boost/tokenizer.hpp +0 -0
  2479. data/{ext → src/cxx_supportlib/vendor-modified}/boost/tuple/detail/tuple_basic.hpp +0 -0
  2480. data/{ext → src/cxx_supportlib/vendor-modified}/boost/tuple/tuple.hpp +0 -0
  2481. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type.hpp +0 -0
  2482. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_const.hpp +0 -0
  2483. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_cv.hpp +0 -0
  2484. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_lvalue_reference.hpp +0 -0
  2485. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_pointer.hpp +0 -0
  2486. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_reference.hpp +0 -0
  2487. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_rvalue_reference.hpp +0 -0
  2488. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_volatile.hpp +0 -0
  2489. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/aligned_storage.hpp +0 -0
  2490. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/alignment_of.hpp +0 -0
  2491. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/broken_compiler_spec.hpp +0 -0
  2492. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/common_type.hpp +0 -0
  2493. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/composite_traits.hpp +0 -0
  2494. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/config.hpp +0 -0
  2495. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/conversion_traits.hpp +0 -0
  2496. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/cv_traits.hpp +0 -0
  2497. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/decay.hpp +0 -0
  2498. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_def.hpp +0 -0
  2499. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_undef.hpp +0 -0
  2500. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/common_type_imp.hpp +0 -0
  2501. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/cv_traits_impl.hpp +0 -0
  2502. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/false_result.hpp +0 -0
  2503. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_binary_operator.hpp +0 -0
  2504. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_postfix_operator.hpp +0 -0
  2505. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_prefix_operator.hpp +0 -0
  2506. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_and.hpp +0 -0
  2507. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_eq.hpp +0 -0
  2508. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_not.hpp +0 -0
  2509. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_or.hpp +0 -0
  2510. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_helper.hpp +0 -0
  2511. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_tester.hpp +0 -0
  2512. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +0 -0
  2513. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +0 -0
  2514. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_def.hpp +0 -0
  2515. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_undef.hpp +0 -0
  2516. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/template_arity_spec.hpp +0 -0
  2517. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_def.hpp +0 -0
  2518. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_undef.hpp +0 -0
  2519. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/wrap.hpp +0 -0
  2520. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/yes_no_type.hpp +0 -0
  2521. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/function_traits.hpp +0 -0
  2522. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_left_shift.hpp +0 -0
  2523. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_assign.hpp +0 -0
  2524. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_constructor.hpp +0 -0
  2525. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_copy.hpp +0 -0
  2526. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_right_shift.hpp +0 -0
  2527. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_assign.hpp +0 -0
  2528. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_constructor.hpp +0 -0
  2529. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_copy.hpp +0 -0
  2530. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_destructor.hpp +0 -0
  2531. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_assign.hpp +0 -0
  2532. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_constructor.hpp +0 -0
  2533. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/ice.hpp +0 -0
  2534. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/integral_constant.hpp +0 -0
  2535. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/intrinsics.hpp +0 -0
  2536. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_abstract.hpp +0 -0
  2537. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_arithmetic.hpp +0 -0
  2538. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_array.hpp +0 -0
  2539. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_base_and_derived.hpp +0 -0
  2540. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_base_of.hpp +0 -0
  2541. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_class.hpp +0 -0
  2542. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_compound.hpp +0 -0
  2543. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_const.hpp +0 -0
  2544. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_convertible.hpp +0 -0
  2545. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_empty.hpp +0 -0
  2546. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_enum.hpp +0 -0
  2547. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_float.hpp +0 -0
  2548. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_floating_point.hpp +0 -0
  2549. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_function.hpp +0 -0
  2550. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_fundamental.hpp +0 -0
  2551. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_integral.hpp +0 -0
  2552. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_lvalue_reference.hpp +0 -0
  2553. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_function_pointer.hpp +0 -0
  2554. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_pointer.hpp +0 -0
  2555. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_assignable.hpp +0 -0
  2556. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_constructible.hpp +0 -0
  2557. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_object.hpp +0 -0
  2558. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_pod.hpp +0 -0
  2559. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_pointer.hpp +0 -0
  2560. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_reference.hpp +0 -0
  2561. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_rvalue_reference.hpp +0 -0
  2562. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_same.hpp +0 -0
  2563. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_scalar.hpp +0 -0
  2564. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_signed.hpp +0 -0
  2565. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_stateless.hpp +0 -0
  2566. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_union.hpp +0 -0
  2567. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_unsigned.hpp +0 -0
  2568. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_void.hpp +0 -0
  2569. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_volatile.hpp +0 -0
  2570. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/make_signed.hpp +0 -0
  2571. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/make_unsigned.hpp +0 -0
  2572. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/object_traits.hpp +0 -0
  2573. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_bounds.hpp +0 -0
  2574. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_const.hpp +0 -0
  2575. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_cv.hpp +0 -0
  2576. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_pointer.hpp +0 -0
  2577. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_reference.hpp +0 -0
  2578. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_volatile.hpp +0 -0
  2579. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/same_traits.hpp +0 -0
  2580. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/transform_traits.hpp +0 -0
  2581. data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/type_with_alignment.hpp +0 -0
  2582. data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/message.hpp +0 -0
  2583. data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/native.hpp +0 -0
  2584. data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/typeof.hpp +0 -0
  2585. data/{ext → src/cxx_supportlib/vendor-modified}/boost/units/detail/utility.hpp +0 -0
  2586. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/allocate.hpp +0 -0
  2587. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/buckets.hpp +0 -0
  2588. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/equivalent.hpp +0 -0
  2589. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/extract_key.hpp +0 -0
  2590. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/fwd.hpp +0 -0
  2591. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/table.hpp +0 -0
  2592. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/unique.hpp +0 -0
  2593. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/util.hpp +0 -0
  2594. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_map.hpp +0 -0
  2595. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_map_fwd.hpp +0 -0
  2596. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_set.hpp +0 -0
  2597. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_set_fwd.hpp +0 -0
  2598. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered_map.hpp +0 -0
  2599. data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered_set.hpp +0 -0
  2600. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/addressof.hpp +0 -0
  2601. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/compare_pointees.hpp +0 -0
  2602. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/declval.hpp +0 -0
  2603. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_prefix.hpp +0 -0
  2604. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_suffix.hpp +0 -0
  2605. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/result_of_iterate.hpp +0 -0
  2606. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/enable_if.hpp +0 -0
  2607. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/in_place_factory.hpp +0 -0
  2608. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/result_of.hpp +0 -0
  2609. data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/swap.hpp +0 -0
  2610. data/{ext → src/cxx_supportlib/vendor-modified}/boost/version.hpp +0 -0
  2611. data/{ext → src/cxx_supportlib/vendor-modified}/boost/visit_each.hpp +0 -0
  2612. data/{ext → src/cxx_supportlib/vendor-modified}/boost/weak_ptr.hpp +0 -0
  2613. data/{ext/common/Utils → src/cxx_supportlib/vendor-modified/jsoncpp}/json-forwards.h +0 -0
  2614. data/{ext/common/Utils → src/cxx_supportlib/vendor-modified/jsoncpp}/json.h +0 -0
  2615. data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +4237 -0
  2616. data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +290 -0
  2617. data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/modp_b64.h +0 -0
  2618. data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/modp_b64_data.h +0 -0
  2619. data/{ext/common/Utils/sysqueue.h → src/cxx_supportlib/vendor-modified/psg_sysqueue.h} +0 -0
  2620. data/src/helper-scripts/README.md +1 -0
  2621. data/{helper-scripts → src/helper-scripts}/backtrace-sanitizer.rb +0 -0
  2622. data/{helper-scripts → src/helper-scripts}/crash-watch.rb +0 -0
  2623. data/src/helper-scripts/download_binaries/extconf.rb +116 -0
  2624. data/{helper-scripts → src/helper-scripts}/meteor-loader.rb +0 -0
  2625. data/src/helper-scripts/node-loader.js +259 -0
  2626. data/{helper-scripts → src/helper-scripts}/prespawn +0 -0
  2627. data/{helper-scripts → src/helper-scripts}/rack-loader.rb +0 -0
  2628. data/{helper-scripts → src/helper-scripts}/rack-preloader.rb +0 -0
  2629. data/{helper-scripts → src/helper-scripts}/wsgi-loader.py +0 -0
  2630. data/src/nginx_module/CacheLocationConfig.c +673 -0
  2631. data/src/nginx_module/CacheLocationConfig.c.erb +158 -0
  2632. data/src/nginx_module/Configuration.c +1465 -0
  2633. data/{ext/nginx → src/nginx_module}/Configuration.h +0 -0
  2634. data/src/nginx_module/ConfigurationCommands.c +631 -0
  2635. data/src/nginx_module/ConfigurationCommands.c.erb +143 -0
  2636. data/src/nginx_module/ConfigurationFields.h +134 -0
  2637. data/src/nginx_module/ConfigurationFields.h.erb +111 -0
  2638. data/src/nginx_module/ContentHandler.c +1494 -0
  2639. data/src/nginx_module/ContentHandler.h +58 -0
  2640. data/src/nginx_module/CreateLocationConfig.c +205 -0
  2641. data/src/nginx_module/CreateLocationConfig.c.erb +77 -0
  2642. data/src/nginx_module/MergeLocationConfig.c +267 -0
  2643. data/src/nginx_module/MergeLocationConfig.c.erb +117 -0
  2644. data/src/nginx_module/README.md +5 -0
  2645. data/{ext/nginx → src/nginx_module}/StaticContentHandler.c +0 -0
  2646. data/{ext/nginx → src/nginx_module}/StaticContentHandler.h +0 -0
  2647. data/src/nginx_module/config +102 -0
  2648. data/src/nginx_module/ngx_http_passenger_module.c +512 -0
  2649. data/src/nginx_module/ngx_http_passenger_module.h +65 -0
  2650. data/{node_lib → src/nodejs_supportlib}/phusion_passenger/line_reader.js +0 -0
  2651. data/{ext/ruby → src/ruby_native_extension}/extconf.rb +0 -0
  2652. data/{ext/ruby → src/ruby_native_extension}/passenger_native_support.c +0 -0
  2653. data/src/ruby_supportlib/phusion_passenger.rb +313 -0
  2654. data/{lib → src/ruby_supportlib}/phusion_passenger/abstract_installer.rb +0 -0
  2655. data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools.rb +0 -0
  2656. data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools/instance.rb +0 -0
  2657. data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools/instance_registry.rb +0 -0
  2658. data/src/ruby_supportlib/phusion_passenger/admin_tools/memory_stats.rb +312 -0
  2659. data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +247 -0
  2660. data/src/ruby_supportlib/phusion_passenger/common_library.rb +341 -0
  2661. data/{lib → src/ruby_supportlib}/phusion_passenger/config/about_command.rb +0 -0
  2662. data/{lib → src/ruby_supportlib}/phusion_passenger/config/agent_compiler.rb +0 -0
  2663. data/{lib → src/ruby_supportlib}/phusion_passenger/config/api_call_command.rb +0 -0
  2664. data/{lib → src/ruby_supportlib}/phusion_passenger/config/build_native_support_command.rb +0 -0
  2665. data/{lib → src/ruby_supportlib}/phusion_passenger/config/command.rb +0 -0
  2666. data/{lib → src/ruby_supportlib}/phusion_passenger/config/compile_agent_command.rb +0 -0
  2667. data/{lib → src/ruby_supportlib}/phusion_passenger/config/compile_nginx_engine_command.rb +0 -0
  2668. data/{lib → src/ruby_supportlib}/phusion_passenger/config/detach_process_command.rb +0 -0
  2669. data/{lib → src/ruby_supportlib}/phusion_passenger/config/download_agent_command.rb +0 -0
  2670. data/{lib → src/ruby_supportlib}/phusion_passenger/config/download_nginx_engine_command.rb +0 -0
  2671. data/{lib → src/ruby_supportlib}/phusion_passenger/config/install_agent_command.rb +0 -0
  2672. data/{lib → src/ruby_supportlib}/phusion_passenger/config/install_standalone_runtime_command.rb +0 -0
  2673. data/{lib → src/ruby_supportlib}/phusion_passenger/config/installation_utils.rb +0 -0
  2674. data/{lib → src/ruby_supportlib}/phusion_passenger/config/list_instances_command.rb +0 -0
  2675. data/{lib → src/ruby_supportlib}/phusion_passenger/config/main.rb +0 -0
  2676. data/{lib → src/ruby_supportlib}/phusion_passenger/config/nginx_engine_compiler.rb +0 -0
  2677. data/{lib → src/ruby_supportlib}/phusion_passenger/config/reopen_logs_command.rb +0 -0
  2678. data/{lib → src/ruby_supportlib}/phusion_passenger/config/restart_app_command.rb +0 -0
  2679. data/{lib → src/ruby_supportlib}/phusion_passenger/config/system_metrics_command.rb +0 -0
  2680. data/{lib → src/ruby_supportlib}/phusion_passenger/config/utils.rb +0 -0
  2681. data/{lib → src/ruby_supportlib}/phusion_passenger/config/validate_install_command.rb +0 -0
  2682. data/{lib → src/ruby_supportlib}/phusion_passenger/console_text_template.rb +0 -0
  2683. data/src/ruby_supportlib/phusion_passenger/constants.rb +125 -0
  2684. data/{lib → src/ruby_supportlib}/phusion_passenger/debug_logging.rb +0 -0
  2685. data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +515 -0
  2686. data/src/ruby_supportlib/phusion_passenger/message_channel.rb +343 -0
  2687. data/src/ruby_supportlib/phusion_passenger/message_client.rb +135 -0
  2688. data/{lib → src/ruby_supportlib}/phusion_passenger/native_support.rb +0 -0
  2689. data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +392 -0
  2690. data/src/ruby_supportlib/phusion_passenger/packaging.rb +128 -0
  2691. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info.rb +0 -0
  2692. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/apache.rb +0 -0
  2693. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/apache_detector.rb +0 -0
  2694. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/binary_compatibility.rb +0 -0
  2695. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/compiler.rb +0 -0
  2696. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/curl.rb +0 -0
  2697. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/cxx_portability.rb +0 -0
  2698. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck.rb +0 -0
  2699. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/apache2.rb +0 -0
  2700. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/compiler_toolchain.rb +0 -0
  2701. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/gems.rb +0 -0
  2702. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/libs.rb +0 -0
  2703. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/ruby.rb +0 -0
  2704. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/utilities.rb +0 -0
  2705. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/linux.rb +0 -0
  2706. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/operating_system.rb +0 -0
  2707. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/ruby.rb +0 -0
  2708. data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/zlib.rb +0 -0
  2709. data/{lib → src/ruby_supportlib}/phusion_passenger/plugin.rb +0 -0
  2710. data/{lib → src/ruby_supportlib}/phusion_passenger/preloader_shared_helpers.rb +0 -0
  2711. data/src/ruby_supportlib/phusion_passenger/public_api.rb +93 -0
  2712. data/{lib → src/ruby_supportlib}/phusion_passenger/rack/out_of_band_gc.rb +0 -0
  2713. data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +379 -0
  2714. data/{lib → src/ruby_supportlib}/phusion_passenger/request_handler.rb +0 -0
  2715. data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +366 -0
  2716. data/{lib → src/ruby_supportlib}/phusion_passenger/ruby_core_enhancements.rb +0 -0
  2717. data/{lib → src/ruby_supportlib}/phusion_passenger/ruby_core_io_enhancements.rb +0 -0
  2718. data/{lib → src/ruby_supportlib}/phusion_passenger/simple_benchmarking.rb +0 -0
  2719. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/app_finder.rb +0 -0
  2720. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/command.rb +0 -0
  2721. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/config_utils.rb +0 -0
  2722. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/control_utils.rb +0 -0
  2723. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/main.rb +0 -0
  2724. data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +825 -0
  2725. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/start_command/builtin_engine.rb +0 -0
  2726. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/start_command/nginx_engine.rb +0 -0
  2727. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/status_command.rb +0 -0
  2728. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/stop_command.rb +0 -0
  2729. data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/version_command.rb +0 -0
  2730. data/{lib → src/ruby_supportlib}/phusion_passenger/utils.rb +0 -0
  2731. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/ansi_colors.rb +0 -0
  2732. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/download.rb +0 -0
  2733. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/file_system_watcher.rb +0 -0
  2734. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/hosts_file_parser.rb +0 -0
  2735. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/json.rb +0 -0
  2736. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/lock.rb +0 -0
  2737. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/native_support_utils.rb +0 -0
  2738. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/progress_bar.rb +0 -0
  2739. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/shellwords.rb +0 -0
  2740. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/tee_input.rb +0 -0
  2741. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/terminal_choice_menu.rb +0 -0
  2742. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/tmpio.rb +0 -0
  2743. data/{lib → src/ruby_supportlib}/phusion_passenger/utils/unseekable_socket.rb +0 -0
  2744. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/app.rb +0 -0
  2745. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/gdb_controller.rb +0 -0
  2746. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/version.rb +0 -0
  2747. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller.rb +0 -0
  2748. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/lock_file.rb +0 -0
  2749. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/spawn.rb +0 -0
  2750. data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/version.rb +0 -0
  2751. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/CONFIG.md +37 -0
  2752. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile +17 -0
  2753. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile.lock +59 -0
  2754. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/LICENSE.md +19 -0
  2755. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README-API.md +5 -0
  2756. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README.md +117 -0
  2757. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Rakefile +88 -0
  2758. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core.rb +366 -0
  2759. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/api.rb +192 -0
  2760. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/connection.rb +67 -0
  2761. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/context.rb +279 -0
  2762. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/lock.rb +62 -0
  2763. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/log.rb +66 -0
  2764. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/message_channel.rb +157 -0
  2765. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter.rb +150 -0
  2766. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/basics.rb +196 -0
  2767. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/controllers.rb +187 -0
  2768. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/misc.rb +299 -0
  2769. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/view_rendering.rb +91 -0
  2770. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/spec_helper.rb +259 -0
  2771. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/time_point.rb +53 -0
  2772. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/transaction.rb +182 -0
  2773. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/utils.rb +161 -0
  2774. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version.rb +32 -0
  2775. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version_data.rb +44 -0
  2776. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml +2 -0
  2777. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.example +16 -0
  2778. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis +18 -0
  2779. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/union_station_hooks_core.gemspec +23 -0
  2780. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile +14 -0
  2781. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile.lock +45 -0
  2782. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/LICENSE.md +19 -0
  2783. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/README.md +104 -0
  2784. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Rakefile +160 -0
  2785. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails.rb +173 -0
  2786. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_controller_extension.rb +45 -0
  2787. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_view_subscriber.rb +55 -0
  2788. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_record_subscriber.rb +41 -0
  2789. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_benchmarkable_extension.rb +47 -0
  2790. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_cache_subscriber.rb +70 -0
  2791. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/exception_logger.rb +57 -0
  2792. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/initialize.rb +30 -0
  2793. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version.rb +32 -0
  2794. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version_data.rb +44 -0
  2795. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/union_station_hooks_rails.gemspec +34 -0
  2796. metadata +2764 -2717
  2797. metadata.gz.asc +7 -7
  2798. data/build/agents.rb +0 -174
  2799. data/build/preprocessor.rb +0 -140
  2800. data/build/rake_extensions.rb +0 -187
  2801. data/ext/apache2/Configuration.cpp +0 -663
  2802. data/ext/apache2/ConfigurationCommands.cpp +0 -251
  2803. data/ext/apache2/ConfigurationCommands.cpp.erb +0 -108
  2804. data/ext/apache2/ConfigurationFields.hpp +0 -98
  2805. data/ext/apache2/ConfigurationFields.hpp.erb +0 -97
  2806. data/ext/apache2/ConfigurationSetters.cpp +0 -422
  2807. data/ext/apache2/ConfigurationSetters.cpp.erb +0 -127
  2808. data/ext/apache2/CreateDirConfig.cpp +0 -68
  2809. data/ext/apache2/CreateDirConfig.cpp.erb +0 -71
  2810. data/ext/apache2/DirectoryMapper.h +0 -274
  2811. data/ext/apache2/Hooks.cpp +0 -1734
  2812. data/ext/apache2/MergeDirConfig.cpp +0 -230
  2813. data/ext/apache2/MergeDirConfig.cpp.erb +0 -81
  2814. data/ext/apache2/SetHeaders.cpp +0 -151
  2815. data/ext/apache2/SetHeaders.cpp.erb +0 -90
  2816. data/ext/common/ApplicationPool2/AppTypes.cpp +0 -111
  2817. data/ext/common/ApplicationPool2/AppTypes.h +0 -274
  2818. data/ext/common/ApplicationPool2/BasicGroupInfo.h +0 -81
  2819. data/ext/common/ApplicationPool2/BasicProcessInfo.h +0 -106
  2820. data/ext/common/ApplicationPool2/Common.h +0 -213
  2821. data/ext/common/ApplicationPool2/Context.h +0 -94
  2822. data/ext/common/ApplicationPool2/ErrorRenderer.h +0 -116
  2823. data/ext/common/ApplicationPool2/Group.h +0 -495
  2824. data/ext/common/ApplicationPool2/Group/InitializationAndShutdown.cpp +0 -190
  2825. data/ext/common/ApplicationPool2/Group/InternalUtils.cpp +0 -329
  2826. data/ext/common/ApplicationPool2/Group/LifetimeAndBasics.cpp +0 -103
  2827. data/ext/common/ApplicationPool2/Group/Miscellaneous.cpp +0 -65
  2828. data/ext/common/ApplicationPool2/Group/OutOfBandWork.cpp +0 -323
  2829. data/ext/common/ApplicationPool2/Group/ProcessListManagement.cpp +0 -606
  2830. data/ext/common/ApplicationPool2/Group/SessionManagement.cpp +0 -337
  2831. data/ext/common/ApplicationPool2/Group/SpawningAndRestarting.cpp +0 -478
  2832. data/ext/common/ApplicationPool2/Group/StateInspection.cpp +0 -197
  2833. data/ext/common/ApplicationPool2/Group/Verification.cpp +0 -159
  2834. data/ext/common/ApplicationPool2/Implementation.cpp +0 -335
  2835. data/ext/common/ApplicationPool2/Options.h +0 -704
  2836. data/ext/common/ApplicationPool2/Pool.h +0 -463
  2837. data/ext/common/ApplicationPool2/Pool/AnalyticsCollection.cpp +0 -254
  2838. data/ext/common/ApplicationPool2/Pool/GarbageCollection.cpp +0 -200
  2839. data/ext/common/ApplicationPool2/Pool/GeneralUtils.cpp +0 -241
  2840. data/ext/common/ApplicationPool2/Pool/GroupUtils.cpp +0 -276
  2841. data/ext/common/ApplicationPool2/Pool/InitializationAndShutdown.cpp +0 -145
  2842. data/ext/common/ApplicationPool2/Pool/Miscellaneous.cpp +0 -244
  2843. data/ext/common/ApplicationPool2/Pool/ProcessUtils.cpp +0 -330
  2844. data/ext/common/ApplicationPool2/Pool/StateInspection.cpp +0 -299
  2845. data/ext/common/ApplicationPool2/Process.h +0 -906
  2846. data/ext/common/ApplicationPool2/Session.h +0 -255
  2847. data/ext/common/ApplicationPool2/Socket.h +0 -293
  2848. data/ext/common/Constants.h +0 -160
  2849. data/ext/common/Constants.h.erb +0 -42
  2850. data/ext/common/EventedClient.h +0 -723
  2851. data/ext/common/EventedMessageServer.h +0 -332
  2852. data/ext/common/EventedServer.h +0 -295
  2853. data/ext/common/InstanceDirectory.h +0 -242
  2854. data/ext/common/Logging.cpp +0 -294
  2855. data/ext/common/MemoryKit/mbuf.cpp +0 -302
  2856. data/ext/common/MemoryKit/mbuf.h +0 -256
  2857. data/ext/common/MessageClient.h +0 -300
  2858. data/ext/common/MessageReadersWriters.h +0 -527
  2859. data/ext/common/MessageServer.h +0 -625
  2860. data/ext/common/ResourceLocator.h +0 -181
  2861. data/ext/common/ServerKit/Channel.h +0 -765
  2862. data/ext/common/ServerKit/Client.h +0 -166
  2863. data/ext/common/ServerKit/Context.h +0 -138
  2864. data/ext/common/ServerKit/FdSinkChannel.h +0 -217
  2865. data/ext/common/ServerKit/FdSourceChannel.h +0 -251
  2866. data/ext/common/ServerKit/FileBufferedChannel.h +0 -1605
  2867. data/ext/common/ServerKit/HttpClient.h +0 -94
  2868. data/ext/common/ServerKit/HttpRequest.h +0 -276
  2869. data/ext/common/ServerKit/HttpServer.h +0 -1212
  2870. data/ext/common/ServerKit/Server.h +0 -1101
  2871. data/ext/common/SpawningKit/Config.h +0 -107
  2872. data/ext/common/SpawningKit/DirectSpawner.h +0 -254
  2873. data/ext/common/SpawningKit/DummySpawner.h +0 -94
  2874. data/ext/common/SpawningKit/Factory.h +0 -113
  2875. data/ext/common/SpawningKit/Options.h +0 -40
  2876. data/ext/common/SpawningKit/PipeWatcher.h +0 -148
  2877. data/ext/common/SpawningKit/Result.h +0 -49
  2878. data/ext/common/SpawningKit/SmartSpawner.h +0 -818
  2879. data/ext/common/SpawningKit/Spawner.h +0 -1199
  2880. data/ext/common/SpawningKit/UserSwitchingRules.h +0 -265
  2881. data/ext/common/UnionStation/Connection.h +0 -229
  2882. data/ext/common/UnionStation/Core.h +0 -508
  2883. data/ext/common/UnionStation/StopwatchLog.h +0 -172
  2884. data/ext/common/UnionStation/Transaction.h +0 -276
  2885. data/ext/common/Utils.cpp +0 -1389
  2886. data/ext/common/Utils/BCrypt.cpp +0 -343
  2887. data/ext/common/Utils/BCrypt.h +0 -73
  2888. data/ext/common/Utils/Blowfish.c +0 -685
  2889. data/ext/common/Utils/Blowfish.h +0 -103
  2890. data/ext/common/Utils/Dechunker.h +0 -242
  2891. data/ext/common/Utils/IOUtils.cpp +0 -1293
  2892. data/ext/common/Utils/IOUtils.h +0 -644
  2893. data/ext/common/Utils/JsonUtils.h +0 -261
  2894. data/ext/common/Utils/MD5.cpp +0 -409
  2895. data/ext/common/Utils/MD5.h +0 -108
  2896. data/ext/common/Utils/StrIntUtils.cpp +0 -698
  2897. data/ext/common/Utils/VariantMap.h +0 -494
  2898. data/ext/common/Utils/jsoncpp.cpp +0 -4237
  2899. data/ext/common/Utils/modp_b64.cpp +0 -290
  2900. data/ext/common/Utils/utf8.h +0 -35
  2901. data/ext/common/Utils/utf8/checked.h +0 -324
  2902. data/ext/common/Utils/utf8/unchecked.h +0 -229
  2903. data/ext/common/agent/ApiServerUtils.h +0 -941
  2904. data/ext/common/agent/Base.cpp +0 -1647
  2905. data/ext/common/agent/Core/ApiServer.h +0 -623
  2906. data/ext/common/agent/Core/CoreMain.cpp +0 -1203
  2907. data/ext/common/agent/Core/RequestHandler.h +0 -469
  2908. data/ext/common/agent/Core/RequestHandler/AppResponse.h +0 -230
  2909. data/ext/common/agent/Core/RequestHandler/Client.h +0 -56
  2910. data/ext/common/agent/Core/RequestHandler/Request.h +0 -158
  2911. data/ext/common/agent/Core/RequestHandler/TurboCaching.h +0 -294
  2912. data/ext/common/agent/SpawnPreparer/SpawnPreparerMain.cpp +0 -207
  2913. data/ext/common/agent/UstRouter/ApiServer.h +0 -279
  2914. data/ext/common/agent/UstRouter/FilterSupport.cpp +0 -66
  2915. data/ext/common/agent/UstRouter/FilterSupport.h +0 -1619
  2916. data/ext/common/agent/UstRouter/LoggingServer.h +0 -1206
  2917. data/ext/common/agent/UstRouter/OptionParser.h +0 -167
  2918. data/ext/common/agent/UstRouter/RemoteSender.h +0 -621
  2919. data/ext/common/agent/UstRouter/UstRouterMain.cpp +0 -558
  2920. data/ext/common/agent/Watchdog/ApiServer.h +0 -311
  2921. data/ext/common/agent/Watchdog/WatchdogMain.cpp +0 -1359
  2922. data/ext/libuv/.gitignore +0 -72
  2923. data/ext/libuv/m4/.gitignore +0 -4
  2924. data/ext/nginx/CacheLocationConfig.c +0 -673
  2925. data/ext/nginx/CacheLocationConfig.c.erb +0 -158
  2926. data/ext/nginx/Configuration.c +0 -1465
  2927. data/ext/nginx/ConfigurationCommands.c +0 -631
  2928. data/ext/nginx/ConfigurationCommands.c.erb +0 -143
  2929. data/ext/nginx/ConfigurationFields.h +0 -134
  2930. data/ext/nginx/ConfigurationFields.h.erb +0 -111
  2931. data/ext/nginx/ContentHandler.c +0 -1494
  2932. data/ext/nginx/ContentHandler.h +0 -58
  2933. data/ext/nginx/CreateLocationConfig.c +0 -205
  2934. data/ext/nginx/CreateLocationConfig.c.erb +0 -77
  2935. data/ext/nginx/MergeLocationConfig.c +0 -267
  2936. data/ext/nginx/MergeLocationConfig.c.erb +0 -117
  2937. data/ext/nginx/config +0 -102
  2938. data/ext/nginx/ngx_http_passenger_module.c +0 -512
  2939. data/ext/nginx/ngx_http_passenger_module.h +0 -65
  2940. data/helper-scripts/download_binaries/extconf.rb +0 -116
  2941. data/helper-scripts/node-loader.js +0 -259
  2942. data/lib/phusion_passenger.rb +0 -313
  2943. data/lib/phusion_passenger/active_support3_extensions/init.rb +0 -198
  2944. data/lib/phusion_passenger/admin_tools/memory_stats.rb +0 -300
  2945. data/lib/phusion_passenger/apache2/config_options.rb +0 -247
  2946. data/lib/phusion_passenger/common_library.rb +0 -549
  2947. data/lib/phusion_passenger/constants.rb +0 -128
  2948. data/lib/phusion_passenger/loader_shared_helpers.rb +0 -510
  2949. data/lib/phusion_passenger/message_channel.rb +0 -343
  2950. data/lib/phusion_passenger/message_client.rb +0 -208
  2951. data/lib/phusion_passenger/nginx/config_options.rb +0 -392
  2952. data/lib/phusion_passenger/packaging.rb +0 -145
  2953. data/lib/phusion_passenger/public_api.rb +0 -225
  2954. data/lib/phusion_passenger/rack/thread_handler_extension.rb +0 -360
  2955. data/lib/phusion_passenger/request_handler/thread_handler.rb +0 -422
  2956. data/lib/phusion_passenger/standalone/start_command.rb +0 -824
  2957. data/lib/phusion_passenger/union_station/connection.rb +0 -67
  2958. data/lib/phusion_passenger/union_station/core.rb +0 -283
  2959. data/lib/phusion_passenger/union_station/transaction.rb +0 -168
@@ -0,0 +1,143 @@
1
+ /*
2
+ * Phusion Passenger - https://www.phusionpassenger.com/
3
+ * Copyright (c) 2010-2015 Phusion
4
+ *
5
+ * "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
6
+ *
7
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ * of this software and associated documentation files (the "Software"), to deal
9
+ * in the Software without restriction, including without limitation the rights
10
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ * copies of the Software, and to permit persons to whom the Software is
12
+ * furnished to do so, subject to the following conditions:
13
+ *
14
+ * The above copyright notice and this permission notice shall be included in
15
+ * all copies or substantial portions of the Software.
16
+ *
17
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ * THE SOFTWARE.
24
+ */
25
+
26
+ /*
27
+ * ConfigurationCommands.c is automatically generated from ConfigurationCommands.c.erb,
28
+ * using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
29
+ * Edits to ConfigurationCommands.c will be lost.
30
+ *
31
+ * To update ConfigurationCommands.c:
32
+ * rake nginx
33
+ *
34
+ * To force regeneration of ConfigurationCommands.c:
35
+ * rm -f src/nginx_module/ConfigurationCommands.c
36
+ * rake src/nginx_module/ConfigurationCommands.c
37
+ */
38
+
39
+ <%
40
+ require 'phusion_passenger/nginx/config_options'
41
+
42
+ def resolve_possible_alias(option)
43
+ if option[:alias_for]
44
+ the_alias = LOCATION_CONFIGURATION_OPTIONS.find do |o|
45
+ o[:name] == option[:alias_for]
46
+ end.dup
47
+ the_alias[:aliased_for] = option[:name]
48
+ return the_alias
49
+ else
50
+ return option
51
+ end
52
+ end
53
+
54
+ def name_for(option)
55
+ return (option[:aliased_for] || option[:name]).inspect
56
+ end
57
+
58
+ def context_for(option)
59
+ context = option.fetch(:context, [:main, :srv, :loc, :lif])
60
+ return context.map{ |c| "NGX_HTTP_#{c.to_s.upcase}_CONF" }.join(" | ")
61
+ end
62
+
63
+ def take_type_for(option)
64
+ return option[:take] if option[:take]
65
+
66
+ case option[:type]
67
+ when :string, :integer, :uinteger, :string_array
68
+ return "NGX_CONF_TAKE1"
69
+ when :flag
70
+ return "NGX_CONF_FLAG"
71
+ when :string_keyval
72
+ return "NGX_CONF_TAKE2"
73
+ else
74
+ raise "Unknown type #{option[:type].inspect} for option #{option[:name]}"
75
+ end
76
+ end
77
+
78
+ def setter_function_for(option)
79
+ return option[:function] if option[:function]
80
+
81
+ case option[:type]
82
+ when :string
83
+ return "ngx_conf_set_str_slot"
84
+ when :integer, :uinteger
85
+ return "ngx_conf_set_num_slot"
86
+ when :flag
87
+ return "ngx_conf_set_flag_slot"
88
+ when :string_array
89
+ return "ngx_conf_set_str_array_slot"
90
+ when :string_keyval
91
+ return "ngx_conf_set_keyval_slot"
92
+ when :path
93
+ return "ngx_conf_set_path_slot"
94
+ else
95
+ raise "Unknown type #{option[:type].inspect} for option #{option[:name]}"
96
+ end
97
+ end
98
+
99
+ def struct_for(option)
100
+ option[:struct] || "NGX_HTTP_LOC_CONF_OFFSET"
101
+ end
102
+
103
+ def struct_type_for(option)
104
+ case struct_for(option)
105
+ when "NGX_HTTP_LOC_CONF_OFFSET"
106
+ return "passenger_loc_conf_t"
107
+ when "NGX_HTTP_MAIN_CONF_OFFSET"
108
+ return "passenger_main_conf_t"
109
+ else
110
+ raise "Unknown struct #{struct_for(option).inspect}"
111
+ end
112
+ end
113
+
114
+ def struct_field_for(option)
115
+ if option.has_key?(:field)
116
+ if field = option[:field]
117
+ return "offsetof(#{struct_type_for(option)}, #{field})"
118
+ else
119
+ return "0"
120
+ end
121
+ else
122
+ field = option[:name].sub(/^passenger_/, '')
123
+ return "offsetof(#{struct_type_for(option)}, #{field})"
124
+ end
125
+ end
126
+
127
+ def post_for(option)
128
+ return option[:post] if option[:post]
129
+ return "NULL"
130
+ end
131
+ %>
132
+
133
+ <% for option in LOCATION_CONFIGURATION_OPTIONS %>
134
+ {
135
+ <% option = resolve_possible_alias(option) %>
136
+ ngx_string(<%= name_for(option) %>),
137
+ <%= context_for(option) %> | <%= take_type_for(option) %>,
138
+ <%= setter_function_for(option) %>,
139
+ <%= struct_for(option) %>,
140
+ <%= struct_field_for(option) %>,
141
+ <%= post_for(option) %>
142
+ },
143
+ <% end %>
@@ -0,0 +1,134 @@
1
+ /*
2
+ * Phusion Passenger - https://www.phusionpassenger.com/
3
+ * Copyright (c) 2010-2015 Phusion
4
+ *
5
+ * "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
6
+ *
7
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ * of this software and associated documentation files (the "Software"), to deal
9
+ * in the Software without restriction, including without limitation the rights
10
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ * copies of the Software, and to permit persons to whom the Software is
12
+ * furnished to do so, subject to the following conditions:
13
+ *
14
+ * The above copyright notice and this permission notice shall be included in
15
+ * all copies or substantial portions of the Software.
16
+ *
17
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ * THE SOFTWARE.
24
+ */
25
+
26
+ /*
27
+ * ConfigurationFields.h is automatically generated from ConfigurationFields.h.erb,
28
+ * using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
29
+ * Edits to ConfigurationFields.h will be lost.
30
+ *
31
+ * To update ConfigurationFields.h:
32
+ * rake nginx
33
+ *
34
+ * To force regeneration of ConfigurationFields.h:
35
+ * rm -f src/nginx_module/ConfigurationFields.h
36
+ * rake src/nginx_module/ConfigurationFields.h
37
+ */
38
+
39
+ typedef struct {
40
+ ngx_http_upstream_conf_t upstream_config;
41
+ ngx_array_t *flushes;
42
+ ngx_array_t *headers_set_len;
43
+ ngx_array_t *headers_set;
44
+ ngx_hash_t headers_set_hash;
45
+
46
+ /** Raw HTTP header data for this location are cached here. */
47
+ ngx_str_t options_cache;
48
+ ngx_str_t env_vars_cache;
49
+
50
+
51
+
52
+
53
+ ngx_array_t *base_uris;
54
+
55
+ ngx_int_t debugger;
56
+
57
+ ngx_int_t enabled;
58
+
59
+ ngx_array_t *env_vars;
60
+
61
+ ngx_int_t friendly_error_pages;
62
+
63
+ ngx_uint_t headers_hash_bucket_size;
64
+
65
+ ngx_uint_t headers_hash_max_size;
66
+
67
+ ngx_array_t *headers_source;
68
+
69
+ ngx_int_t load_shell_envvars;
70
+
71
+ ngx_int_t max_instances_per_app;
72
+
73
+ ngx_int_t max_preloader_idle_time;
74
+
75
+ ngx_int_t max_request_queue_size;
76
+
77
+ ngx_int_t max_requests;
78
+
79
+ ngx_int_t min_instances;
80
+
81
+ ngx_int_t request_queue_overflow_status_code;
82
+
83
+ ngx_int_t start_timeout;
84
+
85
+ ngx_int_t sticky_sessions;
86
+
87
+ ngx_array_t *union_station_filters;
88
+
89
+ ngx_int_t union_station_support;
90
+
91
+ ngx_str_t app_group_name;
92
+
93
+ ngx_str_t app_rights;
94
+
95
+ ngx_str_t app_root;
96
+
97
+ ngx_str_t app_type;
98
+
99
+ ngx_str_t document_root;
100
+
101
+ ngx_str_t environment;
102
+
103
+ ngx_str_t group;
104
+
105
+ ngx_str_t meteor_app_settings;
106
+
107
+ ngx_str_t nodejs;
108
+
109
+ ngx_str_t python;
110
+
111
+ ngx_str_t restart_dir;
112
+
113
+ ngx_str_t ruby;
114
+
115
+ ngx_str_t spawn_method;
116
+
117
+ ngx_str_t startup_file;
118
+
119
+ ngx_str_t sticky_sessions_cookie_name;
120
+
121
+ ngx_str_t union_station_key;
122
+
123
+ ngx_str_t user;
124
+
125
+ ngx_str_t vary_turbocache_by_cookie;
126
+
127
+
128
+
129
+ #if (NGX_HTTP_CACHE)
130
+ ngx_http_complex_value_t cache_key;
131
+ #endif
132
+
133
+ /************************************/
134
+ } passenger_loc_conf_t;
@@ -0,0 +1,111 @@
1
+ /*
2
+ * Phusion Passenger - https://www.phusionpassenger.com/
3
+ * Copyright (c) 2010-2015 Phusion
4
+ *
5
+ * "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
6
+ *
7
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ * of this software and associated documentation files (the "Software"), to deal
9
+ * in the Software without restriction, including without limitation the rights
10
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ * copies of the Software, and to permit persons to whom the Software is
12
+ * furnished to do so, subject to the following conditions:
13
+ *
14
+ * The above copyright notice and this permission notice shall be included in
15
+ * all copies or substantial portions of the Software.
16
+ *
17
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ * THE SOFTWARE.
24
+ */
25
+
26
+ /*
27
+ * ConfigurationFields.h is automatically generated from ConfigurationFields.h.erb,
28
+ * using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
29
+ * Edits to ConfigurationFields.h will be lost.
30
+ *
31
+ * To update ConfigurationFields.h:
32
+ * rake nginx
33
+ *
34
+ * To force regeneration of ConfigurationFields.h:
35
+ * rm -f src/nginx_module/ConfigurationFields.h
36
+ * rake src/nginx_module/ConfigurationFields.h
37
+ */
38
+
39
+ typedef struct {
40
+ ngx_http_upstream_conf_t upstream_config;
41
+ ngx_array_t *flushes;
42
+ ngx_array_t *headers_set_len;
43
+ ngx_array_t *headers_set;
44
+ ngx_hash_t headers_set_hash;
45
+
46
+ /** Raw HTTP header data for this location are cached here. */
47
+ ngx_str_t options_cache;
48
+ ngx_str_t env_vars_cache;
49
+
50
+ <%
51
+ require 'phusion_passenger/nginx/config_options'
52
+
53
+ def filter_eligible_options(options)
54
+ return options.reject do |option|
55
+ option[:alias_for] ||
56
+ option.fetch(:field, true).nil? ||
57
+ option[:field].to_s =~ /\./
58
+ end
59
+ end
60
+
61
+ def struct_field_for(option)
62
+ if option.has_key?(:field)
63
+ return option[:field].to_s
64
+ else
65
+ return option[:name].sub(/^passenger_/, '')
66
+ end
67
+ end
68
+
69
+ # Returns [definition_source, estimated_size_on_x86_64, field_name]
70
+ def definition_for(option)
71
+ field = struct_field_for(option)
72
+ case option[:type]
73
+ when :string
74
+ return ["ngx_str_t #{field}", 8 + 4, field]
75
+ when :integer, :flag
76
+ return ["ngx_int_t #{field}", 8, field]
77
+ when :uinteger
78
+ return ["ngx_uint_t #{field}", 8, field]
79
+ when :string_array, :string_keyval
80
+ return ["ngx_array_t *#{field}", 8, field];
81
+ else
82
+ raise "Unknown option type #{option[:type].inspect} for option #{option[:name]}"
83
+ end
84
+ end
85
+
86
+ eligible_options = filter_eligible_options(LOCATION_CONFIGURATION_OPTIONS)
87
+ definitions = eligible_options.map { |o| definition_for(o) }
88
+ # Sort the definitions by size in order to make the struct smaller.
89
+ # It's possible to make it even smaller with a smarter algorithm but for now
90
+ # I don't bother.
91
+ definitions.sort! do |d1, d2|
92
+ if d1[1] == d2[1]
93
+ # After sorting on size, sort alphabetically.
94
+ d1[2] <=> d2[2]
95
+ else
96
+ d1[1] <=> d2[1]
97
+ end
98
+ end
99
+ %>
100
+
101
+ <% for definition in definitions %>
102
+ <%= definition[0] %>;
103
+ <% end %>
104
+
105
+
106
+ #if (NGX_HTTP_CACHE)
107
+ ngx_http_complex_value_t cache_key;
108
+ #endif
109
+
110
+ /************************************/
111
+ } passenger_loc_conf_t;
@@ -0,0 +1,1494 @@
1
+ /*
2
+ * Copyright (C) Igor Sysoev
3
+ * Copyright (C) 2007 Manlio Perillo (manlio.perillo@gmail.com)
4
+ * Copyright (C) 2010-2015 Phusion
5
+ *
6
+ * Redistribution and use in source and binary forms, with or without
7
+ * modification, are permitted provided that the following conditions
8
+ * are met:
9
+ * 1. Redistributions of source code must retain the above copyright
10
+ * notice, this list of conditions and the following disclaimer.
11
+ * 2. Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in the
13
+ * documentation and/or other materials provided with the distribution.
14
+ *
15
+ * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
+ * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
19
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
+ * SUCH DAMAGE.
26
+ */
27
+
28
+ #include <nginx.h>
29
+ #include <ngx_http.h>
30
+ #include "ngx_http_passenger_module.h"
31
+ #include "ContentHandler.h"
32
+ #include "StaticContentHandler.h"
33
+ #include "Configuration.h"
34
+ #include "cxx_supportlib/Constants.h"
35
+
36
+
37
+ #define NGX_HTTP_SCGI_PARSE_NO_HEADER 20
38
+
39
+ typedef enum {
40
+ FT_ERROR,
41
+ FT_FILE,
42
+ FT_DIRECTORY,
43
+ FT_OTHER
44
+ } FileType;
45
+
46
+
47
+ static ngx_int_t reinit_request(ngx_http_request_t *r);
48
+ static ngx_int_t process_status_line(ngx_http_request_t *r);
49
+ static ngx_int_t parse_status_line(ngx_http_request_t *r,
50
+ passenger_context_t *context);
51
+ static ngx_int_t process_header(ngx_http_request_t *r);
52
+ static void abort_request(ngx_http_request_t *r);
53
+ static void finalize_request(ngx_http_request_t *r, ngx_int_t rc);
54
+
55
+
56
+ static FileType
57
+ get_file_type(const u_char *filename, unsigned int throttle_rate) {
58
+ struct stat buf;
59
+ int ret;
60
+
61
+ ret = pp_cached_file_stat_perform(pp_stat_cache,
62
+ (const char *) filename,
63
+ &buf,
64
+ throttle_rate);
65
+ if (ret == 0) {
66
+ if (S_ISREG(buf.st_mode)) {
67
+ return FT_FILE;
68
+ } else if (S_ISDIR(buf.st_mode)) {
69
+ return FT_DIRECTORY;
70
+ } else {
71
+ return FT_OTHER;
72
+ }
73
+ } else {
74
+ return FT_ERROR;
75
+ }
76
+ }
77
+
78
+ static int
79
+ file_exists(const u_char *filename, unsigned int throttle_rate) {
80
+ return get_file_type(filename, throttle_rate) == FT_FILE;
81
+ }
82
+
83
+ static int
84
+ mapped_filename_equals(const u_char *filename, size_t filename_len, ngx_str_t *str)
85
+ {
86
+ return (str->len == filename_len &&
87
+ memcmp(str->data, filename, filename_len) == 0) ||
88
+ (str->len == filename_len - 1 &&
89
+ filename[filename_len - 1] == '/' &&
90
+ memcmp(str->data, filename, filename_len - 1) == 0);
91
+ }
92
+
93
+ /**
94
+ * Maps the URI for the given request to a page cache file, if possible.
95
+ *
96
+ * @return Whether the URI has been successfully mapped to a page cache file.
97
+ * @param r The corresponding request.
98
+ * @param public_dir The web application's 'public' directory.
99
+ * @param filename The filename that the URI normally maps to.
100
+ * @param filename_len The length of the <tt>filename</tt> string.
101
+ * @param root The size of the root path in <tt>filename</tt>.
102
+ * @param page_cache_file If mapping was successful, then the page cache
103
+ * file's filename will be stored in here.
104
+ * <tt>page_cache_file.data</tt> must already point to
105
+ * a buffer, and <tt>page_cache_file.len</tt> must be set
106
+ * to the size of this buffer, including terminating NUL.
107
+ */
108
+ static int
109
+ map_uri_to_page_cache_file(ngx_http_request_t *r, ngx_str_t *public_dir,
110
+ const u_char *filename, size_t filename_len,
111
+ ngx_str_t *page_cache_file)
112
+ {
113
+ u_char *end;
114
+
115
+ if ((r->method != NGX_HTTP_GET && r->method != NGX_HTTP_HEAD) || filename_len == 0) {
116
+ return 0;
117
+ }
118
+
119
+ /* From this point on we know that filename is not an empty string. */
120
+
121
+
122
+ /* Check whether `filename` is equal to public_dir.
123
+ * `filename` may also be equal to public_dir + "/" so check for that as well.
124
+ */
125
+ if (mapped_filename_equals(filename, filename_len, public_dir)) {
126
+ /* If the URI maps to the 'public' or the alias directory (i.e. the request is the
127
+ * base URI) then index.html is the page cache file.
128
+ */
129
+
130
+ if (filename_len + sizeof("/index.html") > page_cache_file->len) {
131
+ /* Page cache filename doesn't fit in the buffer. */
132
+ return 0;
133
+ }
134
+
135
+ end = ngx_copy(page_cache_file->data, filename, filename_len);
136
+ if (filename[filename_len - 1] != '/') {
137
+ end = ngx_copy(end, "/", 1);
138
+ }
139
+ end = ngx_copy(end, "index.html", sizeof("index.html"));
140
+
141
+ } else if (filename[filename_len - 1] == '/') {
142
+ /* if the filename ends with '/' check for filename + "index.html". */
143
+
144
+ if (filename_len + sizeof("index.html") > page_cache_file->len) {
145
+ /* Page cache filename doesn't fit in the buffer. */
146
+ return 0;
147
+ }
148
+
149
+ end = ngx_copy(page_cache_file->data, filename, filename_len);
150
+ end = ngx_copy(end, "index.html", sizeof("index.html"));
151
+ } else {
152
+ /* Otherwise, the page cache file is just filename + ".html". */
153
+
154
+ if (filename_len + sizeof(".html") > page_cache_file->len) {
155
+ /* Page cache filename doesn't fit in the buffer. */
156
+ return 0;
157
+ }
158
+
159
+ end = ngx_copy(page_cache_file->data, filename, filename_len);
160
+ end = ngx_copy(end, ".html", sizeof(".html"));
161
+ }
162
+
163
+ if (file_exists(page_cache_file->data, 0)) {
164
+ page_cache_file->len = end - page_cache_file->data - 1;
165
+ return 1;
166
+ } else {
167
+ return 0;
168
+ }
169
+ }
170
+
171
+ static int
172
+ find_base_uri(ngx_http_request_t *r, const passenger_loc_conf_t *loc,
173
+ ngx_str_t *found_base_uri)
174
+ {
175
+ ngx_uint_t i;
176
+ ngx_str_t *base_uris, *base_uri, *uri;
177
+
178
+ if (loc->base_uris == NGX_CONF_UNSET_PTR) {
179
+ return 0;
180
+ } else {
181
+ base_uris = (ngx_str_t *) loc->base_uris->elts;
182
+ uri = &r->uri;
183
+ for (i = 0; i < loc->base_uris->nelts; i++) {
184
+ base_uri = &base_uris[i];
185
+
186
+ if (base_uri->len == 1 && base_uri->data[0] == '/') {
187
+ /* Ignore 'passenger_base_uri /' options. Users usually
188
+ * specify this out of ignorance.
189
+ */
190
+ continue;
191
+ }
192
+
193
+ if (( uri->len == base_uri->len
194
+ && ngx_strncmp(uri->data, base_uri->data, uri->len) == 0 )
195
+ || ( uri->len > base_uri->len
196
+ && ngx_strncmp(uri->data, base_uri->data, base_uri->len) == 0
197
+ && uri->data[base_uri->len] == (u_char) '/' )) {
198
+ *found_base_uri = *base_uri;
199
+ return 1;
200
+ }
201
+ }
202
+ return 0;
203
+ }
204
+ }
205
+
206
+ static void
207
+ set_upstream_server_address(ngx_http_upstream_t *upstream, ngx_http_upstream_conf_t *upstream_config) {
208
+ ngx_http_upstream_server_t *servers = upstream_config->upstream->servers->elts;
209
+ ngx_addr_t *address = &servers[0].addrs[0];
210
+ const char *core_address;
211
+ unsigned int core_address_len;
212
+ struct sockaddr_un *sockaddr;
213
+
214
+ /* The Nginx API makes it extremely difficult to register an upstream server
215
+ * address outside of the configuration loading phase. However we don't know
216
+ * the Passenger core's request socket filename until we're done with loading
217
+ * the configuration. So during configuration loading we register a placeholder
218
+ * address for the upstream configuration, and while processing requests
219
+ * we substitute the placeholder filename with the real Passenger core request
220
+ * socket filename.
221
+ */
222
+ if (address->name.data == pp_placeholder_upstream_address.data) {
223
+ sockaddr = (struct sockaddr_un *) address->sockaddr;
224
+ core_address =
225
+ pp_agents_starter_get_core_address(pp_agents_starter,
226
+ &core_address_len);
227
+ core_address += sizeof("unix:") - 1;
228
+ core_address_len -= sizeof("unix:") - 1;
229
+
230
+ address->name.data = (u_char *) core_address;
231
+ address->name.len = core_address_len;
232
+ strncpy(sockaddr->sun_path, core_address, sizeof(sockaddr->sun_path));
233
+ sockaddr->sun_path[sizeof(sockaddr->sun_path) - 1] = '\0';
234
+ }
235
+ }
236
+
237
+ /**
238
+ * If the Passenger core socket cannot be connected to then we want Nginx to print
239
+ * the proper socket filename in the error message. The socket filename is stored
240
+ * in one of the upstream peer data structures. This name is initialized during
241
+ * the first ngx_http_read_client_request_body() call so there's no way to fix the
242
+ * name before the first request, which is why we do it after the fact.
243
+ */
244
+ static void
245
+ fix_peer_address(ngx_http_request_t *r) {
246
+ ngx_http_upstream_rr_peer_data_t *rrp;
247
+ ngx_http_upstream_rr_peers_t *peers;
248
+ ngx_http_upstream_rr_peer_t *peer;
249
+ unsigned int peer_index;
250
+ const char *core_address;
251
+ unsigned int core_address_len;
252
+
253
+ if (r->upstream->peer.get != ngx_http_upstream_get_round_robin_peer) {
254
+ /* This function only supports the round-robin upstream method. */
255
+ return;
256
+ }
257
+
258
+ rrp = r->upstream->peer.data;
259
+ peers = rrp->peers;
260
+ core_address =
261
+ pp_agents_starter_get_core_address(pp_agents_starter,
262
+ &core_address_len);
263
+
264
+ while (peers != NULL) {
265
+ if (peers->name) {
266
+ if (peers->name->data == (u_char *) core_address) {
267
+ /* Peer names already fixed. */
268
+ return;
269
+ }
270
+ peers->name->data = (u_char *) core_address;
271
+ peers->name->len = core_address_len;
272
+ }
273
+ peer_index = 0;
274
+ while (1) {
275
+ peer = &peers->peer[peer_index];
276
+ peer->name.data = (u_char *) core_address;
277
+ peer->name.len = core_address_len;
278
+ if (peer->down) {
279
+ peer_index++;
280
+ } else {
281
+ break;
282
+ }
283
+ }
284
+ peers = peers->next;
285
+ }
286
+ }
287
+
288
+
289
+ #if (NGX_HTTP_CACHE)
290
+
291
+ static ngx_int_t
292
+ create_key(ngx_http_request_t *r)
293
+ {
294
+ ngx_str_t *key;
295
+ passenger_loc_conf_t *slcf;
296
+
297
+ key = ngx_array_push(&r->cache->keys);
298
+ if (key == NULL) {
299
+ return NGX_ERROR;
300
+ }
301
+
302
+ slcf = ngx_http_get_module_loc_conf(r, ngx_http_passenger_module);
303
+
304
+ if (ngx_http_complex_value(r, &slcf->cache_key, key) != NGX_OK) {
305
+ return NGX_ERROR;
306
+ }
307
+
308
+ return NGX_OK;
309
+ }
310
+
311
+ #endif
312
+
313
+ /**
314
+ * Checks whether the given header is "Transfer-Encoding".
315
+ * We do not pass Transfer-Encoding headers to the Passenger core because
316
+ * Nginx always buffers the request body and always sets Content-Length
317
+ * in the request headers.
318
+ */
319
+ static int
320
+ header_is_transfer_encoding(ngx_str_t *key)
321
+ {
322
+ return key->len == sizeof("transfer-encoding") - 1 &&
323
+ ngx_tolower(key->data[0]) == (u_char) 't' &&
324
+ ngx_tolower(key->data[sizeof("transfer-encoding") - 2]) == (u_char) 'g' &&
325
+ ngx_strncasecmp(key->data + 1, (u_char *) "ransfer-encodin", sizeof("ransfer-encodin") - 1) == 0;
326
+ }
327
+
328
+ #define SET_NGX_STR(str, the_data) \
329
+ do { \
330
+ (str)->data = (u_char *) the_data; \
331
+ (str)->len = sizeof(the_data) - 1; \
332
+ } while (0)
333
+
334
+ #define SET_NGX_STR_WITH_NULL(str, the_data) \
335
+ do { \
336
+ (str)->data = (u_char *) the_data; \
337
+ (str)->len = sizeof(the_data); \
338
+ } while (0)
339
+
340
+ typedef struct {
341
+ ngx_str_t method; /* Includes trailing space */
342
+ ngx_str_t app_type;
343
+ ngx_str_t escaped_uri;
344
+ ngx_str_t content_length;
345
+ ngx_str_t core_password;
346
+ ngx_str_t remote_port;
347
+ } buffer_construction_state;
348
+
349
+ static ngx_int_t
350
+ prepare_request_buffer_construction(ngx_http_request_t *r, passenger_context_t *context,
351
+ buffer_construction_state *state)
352
+ {
353
+ unsigned int len;
354
+ ngx_uint_t port;
355
+ struct sockaddr_in *sin;
356
+ #if (NGX_HAVE_INET6)
357
+ struct sockaddr_in6 *sin6;
358
+ #endif
359
+
360
+ switch (r->method) {
361
+ case NGX_HTTP_GET:
362
+ SET_NGX_STR(&state->method, "GET ");
363
+ break;
364
+ case NGX_HTTP_HEAD:
365
+ SET_NGX_STR(&state->method, "HEAD ");
366
+ break;
367
+ case NGX_HTTP_POST:
368
+ SET_NGX_STR(&state->method, "POST ");
369
+ break;
370
+ case NGX_HTTP_PUT:
371
+ SET_NGX_STR(&state->method, "PUT ");
372
+ break;
373
+ case NGX_HTTP_DELETE:
374
+ SET_NGX_STR(&state->method, "DELETE ");
375
+ break;
376
+ case NGX_HTTP_MKCOL:
377
+ SET_NGX_STR(&state->method, "MKCOL ");
378
+ break;
379
+ case NGX_HTTP_COPY:
380
+ SET_NGX_STR(&state->method, "COPY ");
381
+ break;
382
+ case NGX_HTTP_MOVE:
383
+ SET_NGX_STR(&state->method, "MOVE ");
384
+ break;
385
+ case NGX_HTTP_OPTIONS:
386
+ SET_NGX_STR(&state->method, "OPTIONS ");
387
+ break;
388
+ case NGX_HTTP_PROPFIND:
389
+ SET_NGX_STR(&state->method, "PROPFIND ");
390
+ break;
391
+ case NGX_HTTP_PROPPATCH:
392
+ SET_NGX_STR(&state->method, "PROPPATCH ");
393
+ break;
394
+ case NGX_HTTP_LOCK:
395
+ SET_NGX_STR(&state->method, "LOCK ");
396
+ break;
397
+ case NGX_HTTP_UNLOCK:
398
+ SET_NGX_STR(&state->method, "UNLOCK ");
399
+ break;
400
+ case NGX_HTTP_PATCH:
401
+ SET_NGX_STR(&state->method, "PATCH ");
402
+ break;
403
+ case NGX_HTTP_TRACE:
404
+ SET_NGX_STR(&state->method, "TRACE ");
405
+ break;
406
+ default:
407
+ SET_NGX_STR(&state->method, "UNKNOWN ");
408
+ break;
409
+ }
410
+
411
+ state->app_type.data = (u_char *) pp_get_app_type_name(context->app_type);
412
+ /* Include null terminator */
413
+ state->app_type.len = strlen((const char *) state->app_type.data);
414
+
415
+ /*
416
+ * Nginx unescapes URI's before passing them to Phusion Passenger,
417
+ * but backend processes expect the escaped version.
418
+ * http://code.google.com/p/phusion-passenger/issues/detail?id=404
419
+ *
420
+ * Here we check whether Nginx has rewritten the URI or not. If not,
421
+ * we can use the raw, unparsed URI as sent by the client.
422
+ */
423
+ if (r->valid_unparsed_uri && r->main) {
424
+ state->escaped_uri = r->unparsed_uri;
425
+ const char *pos = memchr((const char *) r->unparsed_uri.data, '?', r->unparsed_uri.len);
426
+ if (pos != NULL) {
427
+ state->escaped_uri.len = pos - (const char *) r->unparsed_uri.data;
428
+ }
429
+ } else {
430
+ state->escaped_uri.len =
431
+ 2 * ngx_escape_uri(NULL, r->uri.data, r->uri.len, NGX_ESCAPE_URI)
432
+ + r->uri.len;
433
+ state->escaped_uri.data = ngx_pnalloc(r->pool, state->escaped_uri.len);
434
+ if (state->escaped_uri.data == NULL) {
435
+ return NGX_ERROR;
436
+ }
437
+ ngx_escape_uri(state->escaped_uri.data, r->uri.data, r->uri.len,
438
+ NGX_ESCAPE_URI);
439
+ }
440
+
441
+ if (r->headers_in.chunked) {
442
+ /* If the request body is chunked, then Nginx sets r->headers_in.content_length_n
443
+ * but does not set r->headers_in.headers, so we add this header ourselves.
444
+ */
445
+ state->content_length.data = ngx_pnalloc(r->pool, sizeof("4294967295") - 1);
446
+ state->content_length.len = ngx_snprintf(state->content_length.data,
447
+ sizeof("4294967295") - 1, "%O", r->headers_in.content_length_n)
448
+ - state->content_length.data;
449
+ }
450
+
451
+ state->core_password.data = (u_char *) pp_agents_starter_get_core_password(
452
+ pp_agents_starter, &len);
453
+ state->core_password.len = len;
454
+
455
+ switch (r->connection->sockaddr->sa_family) {
456
+ #if (NGX_HAVE_INET6)
457
+ case AF_INET6:
458
+ sin6 = (struct sockaddr_in6 *) r->connection->sockaddr;
459
+ port = ntohs(sin6->sin6_port);
460
+ break;
461
+ #endif
462
+
463
+ #if (NGX_HAVE_UNIX_DOMAIN)
464
+ case AF_UNIX:
465
+ port = 0;
466
+ break;
467
+ #endif
468
+
469
+ default: /* AF_INET */
470
+ sin = (struct sockaddr_in *) r->connection->sockaddr;
471
+ port = ntohs(sin->sin_port);
472
+ break;
473
+ }
474
+
475
+ state->remote_port.data = ngx_pnalloc(r->pool, sizeof("65535") - 1);
476
+ if (state->remote_port.data == NULL) {
477
+ return NGX_ERROR;
478
+ }
479
+
480
+ if (port > 0 && port < 65536) {
481
+ state->remote_port.len = ngx_snprintf(state->remote_port.data,
482
+ sizeof("65535") - 1, "%ui", port) - state->remote_port.data;
483
+ } else {
484
+ state->remote_port.len = 0;
485
+ }
486
+
487
+ return NGX_OK;
488
+ }
489
+
490
+ static ngx_uint_t
491
+ construct_request_buffer(ngx_http_request_t *r, passenger_loc_conf_t *slcf,
492
+ passenger_context_t *context, buffer_construction_state *state, ngx_buf_t *b)
493
+ {
494
+ #define PUSH_STATIC_STR(str) \
495
+ do { \
496
+ if (b != NULL) { \
497
+ b->last = ngx_copy(b->last, (const u_char *) str, \
498
+ sizeof(str) - 1); \
499
+ } \
500
+ total_size += sizeof(str) - 1; \
501
+ } while (0)
502
+
503
+ ngx_uint_t total_size = 0;
504
+ ngx_str_t *union_station_filters;
505
+ ngx_uint_t i;
506
+ ngx_list_part_t *part;
507
+ ngx_table_elt_t *header;
508
+ size_t len;
509
+ ngx_http_script_len_code_pt lcode;
510
+ ngx_http_script_code_pt code;
511
+ ngx_http_script_engine_t e, le;
512
+
513
+ if (b != NULL) {
514
+ b->last = ngx_copy(b->last, state->method.data, state->method.len);
515
+ }
516
+ total_size += state->method.len;
517
+
518
+ if (b != NULL) {
519
+ b->last = ngx_copy(b->last, state->escaped_uri.data, state->escaped_uri.len);
520
+ }
521
+ total_size += state->escaped_uri.len;
522
+ if (r->args.len > 0) {
523
+ if (b != NULL) {
524
+ b->last = ngx_copy(b->last, "?", 1);
525
+ b->last = ngx_copy(b->last, r->args.data, r->args.len);
526
+ }
527
+ total_size += r->args.len + 1;
528
+ }
529
+
530
+ PUSH_STATIC_STR(" HTTP/1.1\r\nConnection: close\r\n");
531
+
532
+ part = &r->headers_in.headers.part;
533
+ header = part->elts;
534
+ for (i = 0; /* void */; i++) {
535
+ if (i >= part->nelts) {
536
+ if (part->next == NULL) {
537
+ break;
538
+ }
539
+
540
+ part = part->next;
541
+ header = part->elts;
542
+ i = 0;
543
+ }
544
+
545
+ if (ngx_hash_find(&slcf->headers_set_hash, header[i].hash,
546
+ header[i].lowcase_key, header[i].key.len)
547
+ || header_is_transfer_encoding(&header[i].key))
548
+ {
549
+ continue;
550
+ }
551
+
552
+ if (b != NULL) {
553
+ b->last = ngx_copy(b->last, header[i].key.data, header[i].key.len);
554
+ b->last = ngx_copy(b->last, ": ", 2);
555
+ b->last = ngx_copy(b->last, header[i].value.data, header[i].value.len);
556
+ b->last = ngx_copy(b->last, "\r\n", 2);
557
+ }
558
+ total_size += header[i].key.len + header[i].value.len + 4;
559
+ }
560
+
561
+ if (r->headers_in.chunked) {
562
+ PUSH_STATIC_STR("Content-Length: ");
563
+ if (b != NULL) {
564
+ b->last = ngx_copy(b->last, state->content_length.data,
565
+ state->content_length.len);
566
+ }
567
+ total_size += state->content_length.len;
568
+ PUSH_STATIC_STR("\r\n");
569
+ }
570
+
571
+ if (slcf->headers_set_len) {
572
+ ngx_memzero(&le, sizeof(ngx_http_script_engine_t));
573
+
574
+ ngx_http_script_flush_no_cacheable_variables(r, slcf->flushes);
575
+
576
+ le.ip = slcf->headers_set_len->elts;
577
+ le.request = r;
578
+ le.flushed = 1;
579
+
580
+ while (*(uintptr_t *) le.ip) {
581
+ while (*(uintptr_t *) le.ip) {
582
+ lcode = *(ngx_http_script_len_code_pt *) le.ip;
583
+ total_size += lcode(&le);
584
+ }
585
+ le.ip += sizeof(uintptr_t);
586
+ }
587
+
588
+ if (b != NULL) {
589
+ ngx_memzero(&e, sizeof(ngx_http_script_engine_t));
590
+
591
+ e.ip = slcf->headers_set->elts;
592
+ e.pos = b->last;
593
+ e.request = r;
594
+ e.flushed = 1;
595
+
596
+ le.ip = slcf->headers_set_len->elts;
597
+
598
+ while (*(uintptr_t *) le.ip) {
599
+ lcode = *(ngx_http_script_len_code_pt *) le.ip;
600
+
601
+ /* skip the header line name length */
602
+ (void) lcode(&le);
603
+
604
+ if (*(ngx_http_script_len_code_pt *) le.ip) {
605
+
606
+ for (len = 0; *(uintptr_t *) le.ip; len += lcode(&le)) {
607
+ lcode = *(ngx_http_script_len_code_pt *) le.ip;
608
+ }
609
+
610
+ e.skip = (len == sizeof("\r\n") - 1) ? 1 : 0;
611
+
612
+ } else {
613
+ e.skip = 0;
614
+ }
615
+
616
+ le.ip += sizeof(uintptr_t);
617
+
618
+ while (*(uintptr_t *) e.ip) {
619
+ code = *(ngx_http_script_code_pt *) e.ip;
620
+ code((ngx_http_script_engine_t *) &e);
621
+ }
622
+ e.ip += sizeof(uintptr_t);
623
+ }
624
+
625
+ b->last = e.pos;
626
+ }
627
+ }
628
+
629
+ if (b != NULL) {
630
+ b->last = ngx_copy(b->last, "!~: ", sizeof("!~: ") - 1);
631
+ b->last = ngx_copy(b->last, state->core_password.data,
632
+ state->core_password.len);
633
+ b->last = ngx_copy(b->last, "\r\n", sizeof("\r\n") - 1);
634
+ }
635
+ total_size += (sizeof("!~: \r\n") - 1) + state->core_password.len;
636
+
637
+ PUSH_STATIC_STR("!~DOCUMENT_ROOT: ");
638
+ if (b != NULL) {
639
+ b->last = ngx_copy(b->last, context->public_dir.data,
640
+ context->public_dir.len);
641
+ }
642
+ total_size += context->public_dir.len;
643
+ PUSH_STATIC_STR("\r\n");
644
+
645
+ if (context->base_uri.len > 0) {
646
+ PUSH_STATIC_STR("!~SCRIPT_NAME: ");
647
+ if (b != NULL) {
648
+ b->last = ngx_copy(b->last, context->base_uri.data,
649
+ context->base_uri.len);
650
+ }
651
+ total_size += context->base_uri.len;
652
+ PUSH_STATIC_STR("\r\n");
653
+ }
654
+
655
+ PUSH_STATIC_STR("!~REMOTE_ADDR: ");
656
+ if (b != NULL) {
657
+ b->last = ngx_copy(b->last, r->connection->addr_text.data,
658
+ r->connection->addr_text.len);
659
+ }
660
+ total_size += r->connection->addr_text.len;
661
+ PUSH_STATIC_STR("\r\n");
662
+
663
+ PUSH_STATIC_STR("!~REMOTE_PORT: ");
664
+ if (b != NULL) {
665
+ b->last = ngx_copy(b->last, state->remote_port.data,
666
+ state->remote_port.len);
667
+ }
668
+ total_size += state->remote_port.len;
669
+ PUSH_STATIC_STR("\r\n");
670
+
671
+ if (r->headers_in.user.len > 0) {
672
+ PUSH_STATIC_STR("!~REMOTE_USER: ");
673
+ if (b != NULL) {
674
+ b->last = ngx_copy(b->last, r->headers_in.user.data,
675
+ r->headers_in.user.len);
676
+ }
677
+ total_size += r->headers_in.user.len;
678
+ PUSH_STATIC_STR("\r\n");
679
+ }
680
+
681
+ if (slcf->app_group_name.data == NULL) {
682
+ PUSH_STATIC_STR("!~PASSENGER_APP_GROUP_NAME: ");
683
+ if (b != NULL) {
684
+ b->last = ngx_copy(b->last, context->public_dir.data,
685
+ context->public_dir.len);
686
+ }
687
+ total_size += context->public_dir.len;
688
+ if (slcf->environment.data != NULL) {
689
+ if (b != NULL) {
690
+ b->last = ngx_copy(b->last, " (", 2);
691
+ b->last = ngx_copy(b->last, slcf->environment.data,
692
+ slcf->environment.len);
693
+ b->last = ngx_copy(b->last, ")", 1);
694
+ }
695
+ total_size += (sizeof(" (") - 1) + slcf->environment.len + (sizeof(")") - 1);
696
+ }
697
+ PUSH_STATIC_STR("\r\n");
698
+ }
699
+
700
+ PUSH_STATIC_STR("!~PASSENGER_APP_TYPE: ");
701
+ if (b != NULL) {
702
+ b->last = ngx_copy(b->last, state->app_type.data,
703
+ state->app_type.len);
704
+ }
705
+ total_size += state->app_type.len;
706
+ PUSH_STATIC_STR("\r\n");
707
+
708
+ if (slcf->union_station_filters != NGX_CONF_UNSET_PTR
709
+ && slcf->union_station_filters->nelts > 0)
710
+ {
711
+ union_station_filters = (ngx_str_t *) slcf->union_station_filters->elts;
712
+ for (i = 0; i < slcf->union_station_filters->nelts; i++) {
713
+ PUSH_STATIC_STR("!~UNION_STATION_FILTERS: ");
714
+ if (b != NULL) {
715
+ b->last = ngx_copy(b->last, union_station_filters[i].data,
716
+ union_station_filters[i].len);
717
+ }
718
+ total_size += union_station_filters[i].len;
719
+ PUSH_STATIC_STR("\r\n");
720
+ }
721
+ }
722
+
723
+ if (b != NULL) {
724
+ b->last = ngx_copy(b->last, slcf->options_cache.data, slcf->options_cache.len);
725
+ }
726
+ total_size += slcf->options_cache.len;
727
+
728
+ if (slcf->env_vars_cache.data != NULL) {
729
+ PUSH_STATIC_STR("!~PASSENGER_ENV_VARS: ");
730
+ if (b != NULL) {
731
+ b->last = ngx_copy(b->last, slcf->env_vars_cache.data, slcf->env_vars_cache.len);
732
+ }
733
+ total_size += slcf->env_vars_cache.len;
734
+ PUSH_STATIC_STR("\r\n");
735
+ }
736
+
737
+ /* D = Dechunk response
738
+ * Prevent Nginx from rechunking the response.
739
+ * C = Strip 100 Continue header
740
+ * S = SSL
741
+ */
742
+
743
+ PUSH_STATIC_STR("!~FLAGS: DC");
744
+ #if (NGX_HTTP_SSL)
745
+ if (r->http_connection->ssl) {
746
+ PUSH_STATIC_STR("S");
747
+ }
748
+ #endif
749
+ PUSH_STATIC_STR("\r\n\r\n");
750
+
751
+ return total_size;
752
+
753
+ #undef PUSH_STATIC_STR
754
+ }
755
+
756
+ static ngx_int_t
757
+ create_request(ngx_http_request_t *r)
758
+ {
759
+ passenger_loc_conf_t *slcf;
760
+ passenger_context_t *context;
761
+ buffer_construction_state state;
762
+ ngx_uint_t request_size;
763
+ ngx_buf_t *b;
764
+ ngx_chain_t *cl, *body;
765
+
766
+ slcf = ngx_http_get_module_loc_conf(r, ngx_http_passenger_module);
767
+ context = ngx_http_get_module_ctx(r, ngx_http_passenger_module);
768
+ if (context == NULL) {
769
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
770
+ }
771
+
772
+ /* Construct and pass request headers */
773
+
774
+ if (prepare_request_buffer_construction(r, context, &state) != NGX_OK) {
775
+ return NGX_ERROR;
776
+ }
777
+ request_size = construct_request_buffer(r, slcf, context, &state, NULL);
778
+
779
+ b = ngx_create_temp_buf(r->pool, request_size);
780
+ if (b == NULL) {
781
+ return NGX_ERROR;
782
+ }
783
+ cl = ngx_alloc_chain_link(r->pool);
784
+ if (cl == NULL) {
785
+ return NGX_ERROR;
786
+ }
787
+ cl->buf = b;
788
+
789
+ construct_request_buffer(r, slcf, context, &state, b);
790
+
791
+ /* Pass request body */
792
+
793
+ body = r->upstream->request_bufs;
794
+ r->upstream->request_bufs = cl;
795
+
796
+ while (body) {
797
+ b = ngx_alloc_buf(r->pool);
798
+ if (b == NULL) {
799
+ return NGX_ERROR;
800
+ }
801
+
802
+ ngx_memcpy(b, body->buf, sizeof(ngx_buf_t));
803
+
804
+ cl->next = ngx_alloc_chain_link(r->pool);
805
+ if (cl->next == NULL) {
806
+ return NGX_ERROR;
807
+ }
808
+
809
+ cl = cl->next;
810
+ cl->buf = b;
811
+
812
+ body = body->next;
813
+ }
814
+ b->flush = 1;
815
+ cl->next = NULL;
816
+
817
+ return NGX_OK;
818
+ }
819
+
820
+
821
+ static ngx_int_t
822
+ reinit_request(ngx_http_request_t *r)
823
+ {
824
+ passenger_context_t *context;
825
+
826
+ context = ngx_http_get_module_ctx(r, ngx_http_passenger_module);
827
+
828
+ if (context == NULL) {
829
+ return NGX_OK;
830
+ }
831
+
832
+ context->status = 0;
833
+ context->status_count = 0;
834
+ context->status_start = NULL;
835
+ context->status_end = NULL;
836
+
837
+ r->upstream->process_header = process_status_line;
838
+ r->state = 0;
839
+
840
+ return NGX_OK;
841
+ }
842
+
843
+
844
+ static ngx_int_t
845
+ process_status_line(ngx_http_request_t *r)
846
+ {
847
+ ngx_int_t rc;
848
+ ngx_http_upstream_t *u;
849
+ passenger_context_t *context;
850
+
851
+ context = ngx_http_get_module_ctx(r, ngx_http_passenger_module);
852
+
853
+ if (context == NULL) {
854
+ return NGX_ERROR;
855
+ }
856
+
857
+ rc = parse_status_line(r, context);
858
+
859
+ if (rc == NGX_AGAIN) {
860
+ return rc;
861
+ }
862
+
863
+ u = r->upstream;
864
+
865
+ if (rc == NGX_HTTP_SCGI_PARSE_NO_HEADER) {
866
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
867
+ "upstream sent no valid HTTP/1.0 header");
868
+
869
+ #if 0
870
+ if (u->accel) {
871
+ return NGX_HTTP_UPSTREAM_INVALID_HEADER;
872
+ }
873
+ #endif
874
+
875
+ u->headers_in.status_n = NGX_HTTP_OK;
876
+ u->state->status = NGX_HTTP_OK;
877
+
878
+ return NGX_OK;
879
+ }
880
+
881
+ u->headers_in.status_n = context->status;
882
+ u->state->status = context->status;
883
+
884
+ u->headers_in.status_line.len = context->status_end - context->status_start;
885
+ u->headers_in.status_line.data = ngx_palloc(r->pool,
886
+ u->headers_in.status_line.len);
887
+ if (u->headers_in.status_line.data == NULL) {
888
+ return NGX_ERROR;
889
+ }
890
+
891
+ ngx_memcpy(u->headers_in.status_line.data, context->status_start,
892
+ u->headers_in.status_line.len);
893
+
894
+ ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
895
+ "http scgi status %ui \"%V\"",
896
+ u->headers_in.status_n, &u->headers_in.status_line);
897
+
898
+ u->process_header = process_header;
899
+
900
+ return process_header(r);
901
+ }
902
+
903
+
904
+ static ngx_int_t
905
+ parse_status_line(ngx_http_request_t *r, passenger_context_t *context)
906
+ {
907
+ u_char ch;
908
+ u_char *pos;
909
+ ngx_http_upstream_t *u;
910
+ enum {
911
+ sw_start = 0,
912
+ sw_H,
913
+ sw_HT,
914
+ sw_HTT,
915
+ sw_HTTP,
916
+ sw_first_major_digit,
917
+ sw_major_digit,
918
+ sw_first_minor_digit,
919
+ sw_minor_digit,
920
+ sw_status,
921
+ sw_space_after_status,
922
+ sw_status_text,
923
+ sw_almost_done
924
+ } state;
925
+
926
+ u = r->upstream;
927
+
928
+ state = r->state;
929
+
930
+ for (pos = u->buffer.pos; pos < u->buffer.last; pos++) {
931
+ ch = *pos;
932
+
933
+ switch (state) {
934
+
935
+ /* "HTTP/" */
936
+ case sw_start:
937
+ switch (ch) {
938
+ case 'H':
939
+ state = sw_H;
940
+ break;
941
+ default:
942
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
943
+ }
944
+ break;
945
+
946
+ case sw_H:
947
+ switch (ch) {
948
+ case 'T':
949
+ state = sw_HT;
950
+ break;
951
+ default:
952
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
953
+ }
954
+ break;
955
+
956
+ case sw_HT:
957
+ switch (ch) {
958
+ case 'T':
959
+ state = sw_HTT;
960
+ break;
961
+ default:
962
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
963
+ }
964
+ break;
965
+
966
+ case sw_HTT:
967
+ switch (ch) {
968
+ case 'P':
969
+ state = sw_HTTP;
970
+ break;
971
+ default:
972
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
973
+ }
974
+ break;
975
+
976
+ case sw_HTTP:
977
+ switch (ch) {
978
+ case '/':
979
+ state = sw_first_major_digit;
980
+ break;
981
+ default:
982
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
983
+ }
984
+ break;
985
+
986
+ /* the first digit of major HTTP version */
987
+ case sw_first_major_digit:
988
+ if (ch < '1' || ch > '9') {
989
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
990
+ }
991
+
992
+ state = sw_major_digit;
993
+ break;
994
+
995
+ /* the major HTTP version or dot */
996
+ case sw_major_digit:
997
+ if (ch == '.') {
998
+ state = sw_first_minor_digit;
999
+ break;
1000
+ }
1001
+
1002
+ if (ch < '0' || ch > '9') {
1003
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
1004
+ }
1005
+
1006
+ break;
1007
+
1008
+ /* the first digit of minor HTTP version */
1009
+ case sw_first_minor_digit:
1010
+ if (ch < '0' || ch > '9') {
1011
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
1012
+ }
1013
+
1014
+ state = sw_minor_digit;
1015
+ break;
1016
+
1017
+ /* the minor HTTP version or the end of the request line */
1018
+ case sw_minor_digit:
1019
+ if (ch == ' ') {
1020
+ state = sw_status;
1021
+ break;
1022
+ }
1023
+
1024
+ if (ch < '0' || ch > '9') {
1025
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
1026
+ }
1027
+
1028
+ break;
1029
+
1030
+ /* HTTP status code */
1031
+ case sw_status:
1032
+ if (ch == ' ') {
1033
+ break;
1034
+ }
1035
+
1036
+ if (ch < '0' || ch > '9') {
1037
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
1038
+ }
1039
+
1040
+ context->status = context->status * 10 + ch - '0';
1041
+
1042
+ if (++context->status_count == 3) {
1043
+ state = sw_space_after_status;
1044
+ context->status_start = pos - 2;
1045
+ }
1046
+
1047
+ break;
1048
+
1049
+ /* space or end of line */
1050
+ case sw_space_after_status:
1051
+ switch (ch) {
1052
+ case ' ':
1053
+ state = sw_status_text;
1054
+ break;
1055
+ case '.': /* IIS may send 403.1, 403.2, etc */
1056
+ state = sw_status_text;
1057
+ break;
1058
+ case CR:
1059
+ state = sw_almost_done;
1060
+ break;
1061
+ case LF:
1062
+ goto done;
1063
+ default:
1064
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
1065
+ }
1066
+ break;
1067
+
1068
+ /* any text until end of line */
1069
+ case sw_status_text:
1070
+ switch (ch) {
1071
+ case CR:
1072
+ state = sw_almost_done;
1073
+
1074
+ break;
1075
+ case LF:
1076
+ goto done;
1077
+ }
1078
+ break;
1079
+
1080
+ /* end of status line */
1081
+ case sw_almost_done:
1082
+ context->status_end = pos - 1;
1083
+ switch (ch) {
1084
+ case LF:
1085
+ goto done;
1086
+ default:
1087
+ return NGX_HTTP_SCGI_PARSE_NO_HEADER;
1088
+ }
1089
+ }
1090
+ }
1091
+
1092
+ u->buffer.pos = pos;
1093
+ r->state = state;
1094
+
1095
+ return NGX_AGAIN;
1096
+
1097
+ done:
1098
+
1099
+ u->buffer.pos = pos + 1;
1100
+
1101
+ if (context->status_end == NULL) {
1102
+ context->status_end = pos;
1103
+ }
1104
+
1105
+ r->state = sw_start;
1106
+
1107
+ return NGX_OK;
1108
+ }
1109
+
1110
+
1111
+ static ngx_int_t
1112
+ process_header(ngx_http_request_t *r)
1113
+ {
1114
+ ngx_str_t *status_line;
1115
+ ngx_int_t rc, status;
1116
+ ngx_table_elt_t *h;
1117
+ ngx_http_upstream_t *u;
1118
+ ngx_http_upstream_header_t *hh;
1119
+ ngx_http_upstream_main_conf_t *umcf;
1120
+ ngx_http_core_loc_conf_t *clcf;
1121
+
1122
+ umcf = ngx_http_get_module_main_conf(r, ngx_http_upstream_module);
1123
+ clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1124
+
1125
+ for ( ;; ) {
1126
+
1127
+ rc = ngx_http_parse_header_line(r, &r->upstream->buffer, 1);
1128
+
1129
+ if (rc == NGX_OK) {
1130
+
1131
+ /* a header line has been parsed successfully */
1132
+
1133
+ h = ngx_list_push(&r->upstream->headers_in.headers);
1134
+ if (h == NULL) {
1135
+ return NGX_ERROR;
1136
+ }
1137
+
1138
+ h->hash = r->header_hash;
1139
+
1140
+ h->key.len = r->header_name_end - r->header_name_start;
1141
+ h->value.len = r->header_end - r->header_start;
1142
+
1143
+ h->key.data = ngx_pnalloc(r->pool,
1144
+ h->key.len + 1 + h->value.len + 1
1145
+ + h->key.len);
1146
+ if (h->key.data == NULL) {
1147
+ return NGX_ERROR;
1148
+ }
1149
+
1150
+ h->value.data = h->key.data + h->key.len + 1;
1151
+ h->lowcase_key = h->key.data + h->key.len + 1 + h->value.len + 1;
1152
+
1153
+ ngx_memcpy(h->key.data, r->header_name_start, h->key.len);
1154
+ h->key.data[h->key.len] = '\0';
1155
+ ngx_memcpy(h->value.data, r->header_start, h->value.len);
1156
+ h->value.data[h->value.len] = '\0';
1157
+
1158
+ if (h->key.len == r->lowcase_index) {
1159
+ ngx_memcpy(h->lowcase_key, r->lowcase_header, h->key.len);
1160
+
1161
+ } else {
1162
+ ngx_strlow(h->lowcase_key, h->key.data, h->key.len);
1163
+ }
1164
+
1165
+ hh = ngx_hash_find(&umcf->headers_in_hash, h->hash,
1166
+ h->lowcase_key, h->key.len);
1167
+
1168
+ if (hh && hh->handler(r, h, hh->offset) != NGX_OK) {
1169
+ return NGX_ERROR;
1170
+ }
1171
+
1172
+ ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1173
+ "http scgi header: \"%V: %V\"", &h->key, &h->value);
1174
+
1175
+ continue;
1176
+ }
1177
+
1178
+ if (rc == NGX_HTTP_PARSE_HEADER_DONE) {
1179
+
1180
+ /* a whole header has been parsed successfully */
1181
+
1182
+ ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1183
+ "http scgi header done");
1184
+
1185
+ /*
1186
+ * if no "Server" and "Date" in header line,
1187
+ * then add the default headers
1188
+ */
1189
+
1190
+ if (r->upstream->headers_in.server == NULL) {
1191
+ h = ngx_list_push(&r->upstream->headers_in.headers);
1192
+ if (h == NULL) {
1193
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
1194
+ }
1195
+
1196
+ h->hash = ngx_hash(ngx_hash(ngx_hash(ngx_hash(
1197
+ ngx_hash('s', 'e'), 'r'), 'v'), 'e'), 'r');
1198
+
1199
+ h->key.len = sizeof("Server") - 1;
1200
+ h->key.data = (u_char *) "Server";
1201
+ if (!passenger_main_conf.show_version_in_header) {
1202
+ if (clcf->server_tokens) {
1203
+ h->value.data = (u_char *) (NGINX_VER " + " PROGRAM_NAME);
1204
+ } else {
1205
+ h->value.data = (u_char *) ("nginx + " PROGRAM_NAME);
1206
+ }
1207
+ } else {
1208
+ if (clcf->server_tokens) {
1209
+ h->value.data = (u_char *) (NGINX_VER " + " PROGRAM_NAME " " PASSENGER_VERSION);
1210
+ } else {
1211
+ h->value.data = (u_char *) ("nginx + " PROGRAM_NAME " " PASSENGER_VERSION);
1212
+ }
1213
+ }
1214
+ h->value.len = ngx_strlen(h->value.data);
1215
+ h->lowcase_key = (u_char *) "server";
1216
+ }
1217
+
1218
+ if (r->upstream->headers_in.date == NULL) {
1219
+ h = ngx_list_push(&r->upstream->headers_in.headers);
1220
+ if (h == NULL) {
1221
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
1222
+ }
1223
+
1224
+ h->hash = ngx_hash(ngx_hash(ngx_hash('d', 'a'), 't'), 'e');
1225
+
1226
+ h->key.len = sizeof("Date") - 1;
1227
+ h->key.data = (u_char *) "Date";
1228
+ h->value.len = 0;
1229
+ h->value.data = NULL;
1230
+ h->lowcase_key = (u_char *) "date";
1231
+ }
1232
+
1233
+ /* Process "Status" header. */
1234
+
1235
+ u = r->upstream;
1236
+
1237
+ if (u->headers_in.status_n) {
1238
+ goto done;
1239
+ }
1240
+
1241
+ if (u->headers_in.status) {
1242
+ status_line = &u->headers_in.status->value;
1243
+
1244
+ status = ngx_atoi(status_line->data, 3);
1245
+ if (status == NGX_ERROR) {
1246
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
1247
+ "upstream sent invalid status \"%V\"",
1248
+ status_line);
1249
+ return NGX_HTTP_UPSTREAM_INVALID_HEADER;
1250
+ }
1251
+
1252
+ u->headers_in.status_n = status;
1253
+ u->headers_in.status_line = *status_line;
1254
+
1255
+ } else if (u->headers_in.location) {
1256
+ u->headers_in.status_n = 302;
1257
+ ngx_str_set(&u->headers_in.status_line,
1258
+ "302 Moved Temporarily");
1259
+
1260
+ } else {
1261
+ u->headers_in.status_n = 200;
1262
+ ngx_str_set(&u->headers_in.status_line, "200 OK");
1263
+ }
1264
+
1265
+ if (u->state && u->state->status == 0) {
1266
+ u->state->status = u->headers_in.status_n;
1267
+ }
1268
+
1269
+ done:
1270
+
1271
+ /* Supported since Nginx 1.3.15. */
1272
+ #ifdef NGX_HTTP_SWITCHING_PROTOCOLS
1273
+ if (u->headers_in.status_n == NGX_HTTP_SWITCHING_PROTOCOLS
1274
+ && r->headers_in.upgrade)
1275
+ {
1276
+ u->upgrade = 1;
1277
+ }
1278
+ #endif
1279
+
1280
+ return NGX_OK;
1281
+ }
1282
+
1283
+ if (rc == NGX_AGAIN) {
1284
+ return NGX_AGAIN;
1285
+ }
1286
+
1287
+ /* there was error while a header line parsing */
1288
+
1289
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
1290
+ "upstream sent invalid header");
1291
+
1292
+ return NGX_HTTP_UPSTREAM_INVALID_HEADER;
1293
+ }
1294
+ }
1295
+
1296
+
1297
+ static void
1298
+ abort_request(ngx_http_request_t *r)
1299
+ {
1300
+ ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1301
+ "abort Passenger request");
1302
+ }
1303
+
1304
+
1305
+ static void
1306
+ finalize_request(ngx_http_request_t *r, ngx_int_t rc)
1307
+ {
1308
+ ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1309
+ "finalize Passenger request");
1310
+ }
1311
+
1312
+
1313
+ ngx_int_t
1314
+ passenger_content_handler(ngx_http_request_t *r)
1315
+ {
1316
+ ngx_int_t rc;
1317
+ ngx_http_upstream_t *u;
1318
+ passenger_loc_conf_t *slcf;
1319
+ ngx_str_t path, base_uri;
1320
+ u_char *path_last, *end;
1321
+ u_char root_path_str[NGX_MAX_PATH + 1];
1322
+ ngx_str_t root_path;
1323
+ size_t root_len, len;
1324
+ u_char page_cache_file_str[NGX_MAX_PATH + 1];
1325
+ ngx_str_t page_cache_file;
1326
+ passenger_context_t *context;
1327
+ PP_Error error;
1328
+
1329
+ if (passenger_main_conf.root_dir.len == 0) {
1330
+ return NGX_DECLINED;
1331
+ }
1332
+
1333
+ slcf = ngx_http_get_module_loc_conf(r, ngx_http_passenger_module);
1334
+
1335
+ /* Let the next content handler take care of this request if Phusion
1336
+ * Passenger is disabled for this URL.
1337
+ */
1338
+ if (!slcf->enabled) {
1339
+ return NGX_DECLINED;
1340
+ }
1341
+
1342
+ /* Let the next content handler take care of this request if this URL
1343
+ * maps to an existing file.
1344
+ */
1345
+ path_last = ngx_http_map_uri_to_path(r, &path, &root_len, 0);
1346
+ if (path_last != NULL && file_exists(path.data, 0)) {
1347
+ return NGX_DECLINED;
1348
+ }
1349
+
1350
+ /* Create a string containing the root path. This path already
1351
+ * contains a trailing slash.
1352
+ */
1353
+ end = ngx_copy(root_path_str, path.data, root_len);
1354
+ *end = '\0';
1355
+ root_path.data = root_path_str;
1356
+ root_path.len = root_len;
1357
+
1358
+
1359
+ context = ngx_pcalloc(r->pool, sizeof(passenger_context_t));
1360
+ if (context == NULL) {
1361
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
1362
+ }
1363
+ ngx_http_set_ctx(r, context, ngx_http_passenger_module);
1364
+
1365
+
1366
+ /* Find the base URI for this web application, if any. */
1367
+ if (find_base_uri(r, slcf, &base_uri)) {
1368
+ /* Store the found base URI into context->public_dir. We infer that
1369
+ * the 'public' directory of the web app equals document root + base URI.
1370
+ */
1371
+ if (slcf->document_root.data != NULL) {
1372
+ len = slcf->document_root.len + 1;
1373
+ context->public_dir.data = ngx_palloc(r->pool, sizeof(u_char) * len);
1374
+ end = ngx_copy(context->public_dir.data, slcf->document_root.data,
1375
+ slcf->document_root.len);
1376
+ } else {
1377
+ len = root_path.len + base_uri.len + 1;
1378
+ context->public_dir.data = ngx_palloc(r->pool, sizeof(u_char) * len);
1379
+ end = ngx_copy(context->public_dir.data, root_path.data, root_path.len);
1380
+ end = ngx_copy(end, base_uri.data, base_uri.len);
1381
+ }
1382
+ *end = '\0';
1383
+ context->public_dir.len = len - 1;
1384
+ context->base_uri = base_uri;
1385
+ } else {
1386
+ /* No base URI directives are applicable for this request. So assume that
1387
+ * the web application's public directory is the document root.
1388
+ * context->base_uri is now a NULL string.
1389
+ */
1390
+ len = sizeof(u_char *) * (root_path.len + 1);
1391
+ context->public_dir.data = ngx_palloc(r->pool, len);
1392
+ end = ngx_copy(context->public_dir.data, root_path.data,
1393
+ root_path.len);
1394
+ *end = '\0';
1395
+ context->public_dir.len = root_path.len;
1396
+ }
1397
+
1398
+ /* If there's a corresponding page cache file for this URL, then serve that
1399
+ * file instead.
1400
+ */
1401
+ page_cache_file.data = page_cache_file_str;
1402
+ page_cache_file.len = sizeof(page_cache_file_str);
1403
+ if (map_uri_to_page_cache_file(r, &context->public_dir, path.data,
1404
+ path_last - path.data, &page_cache_file)) {
1405
+ return passenger_static_content_handler(r, &page_cache_file);
1406
+ }
1407
+
1408
+ if (slcf->app_type.data == NULL) {
1409
+ pp_error_init(&error);
1410
+ if (slcf->app_root.data == NULL) {
1411
+ context->app_type = pp_app_type_detector_check_document_root(
1412
+ pp_app_type_detector,
1413
+ (const char *) context->public_dir.data, context->public_dir.len,
1414
+ context->base_uri.len != 0,
1415
+ &error);
1416
+ } else {
1417
+ context->app_type = pp_app_type_detector_check_app_root(
1418
+ pp_app_type_detector,
1419
+ (const char *) slcf->app_root.data, slcf->app_root.len,
1420
+ &error);
1421
+ }
1422
+ if (context->app_type == PAT_NONE) {
1423
+ return NGX_DECLINED;
1424
+ } else if (context->app_type == PAT_ERROR) {
1425
+ if (error.errnoCode == EACCES) {
1426
+ ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
1427
+ "%s; This error means that the Nginx worker process (PID %d, "
1428
+ "running as UID %d) does not have permission to access this file. "
1429
+ "Please read this page to learn how to fix this problem: "
1430
+ "https://www.phusionpassenger.com/library/admin/nginx/troubleshooting/?a=upon-accessing-the-web-app-nginx-reports-a-permission-denied-error; Extra info",
1431
+ error.message,
1432
+ (int) getpid(),
1433
+ (int) getuid());
1434
+ } else {
1435
+ ngx_log_error(NGX_LOG_ALERT, r->connection->log,
1436
+ (error.errnoCode == PP_NO_ERRNO) ? 0 : error.errnoCode,
1437
+ "%s",
1438
+ error.message);
1439
+ }
1440
+ pp_error_destroy(&error);
1441
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
1442
+ }
1443
+ } else {
1444
+ context->app_type = pp_get_app_type2((const char *) slcf->app_type.data,
1445
+ slcf->app_type.len);
1446
+ if (context->app_type == PAT_NONE) {
1447
+ return NGX_DECLINED;
1448
+ }
1449
+ }
1450
+
1451
+
1452
+ /* Setup upstream stuff and prepare sending the request to the Passenger core. */
1453
+
1454
+ if (ngx_http_upstream_create(r) != NGX_OK) {
1455
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
1456
+ }
1457
+ u = r->upstream;
1458
+
1459
+ u->schema = pp_schema_string;
1460
+ u->output.tag = (ngx_buf_tag_t) &ngx_http_passenger_module;
1461
+ set_upstream_server_address(u, &slcf->upstream_config);
1462
+ u->conf = &slcf->upstream_config;
1463
+
1464
+ #if (NGX_HTTP_CACHE)
1465
+ u->create_key = create_key;
1466
+ #endif
1467
+ u->create_request = create_request;
1468
+ u->reinit_request = reinit_request;
1469
+ u->process_header = process_status_line;
1470
+ u->abort_request = abort_request;
1471
+ u->finalize_request = finalize_request;
1472
+ r->state = 0;
1473
+
1474
+ u->buffering = slcf->upstream_config.buffering;
1475
+
1476
+ u->pipe = ngx_pcalloc(r->pool, sizeof(ngx_event_pipe_t));
1477
+ if (u->pipe == NULL) {
1478
+ return NGX_HTTP_INTERNAL_SERVER_ERROR;
1479
+ }
1480
+
1481
+ u->pipe->input_filter = ngx_event_pipe_copy_input_filter;
1482
+ u->pipe->input_ctx = r;
1483
+
1484
+ rc = ngx_http_read_client_request_body(r, ngx_http_upstream_init);
1485
+
1486
+ fix_peer_address(r);
1487
+
1488
+ if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
1489
+ return rc;
1490
+ }
1491
+
1492
+ return NGX_DONE;
1493
+ }
1494
+