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.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/CHANGELOG +11 -0
- data/CONTRIBUTING.md +14 -14
- data/README.md +1 -1
- data/Rakefile +3 -3
- data/bin/passenger +2 -2
- data/bin/passenger-config +2 -2
- data/bin/passenger-install-apache2-module +1 -1
- data/bin/passenger-install-nginx-module +1 -1
- data/bin/passenger-memory-stats +2 -2
- data/bin/passenger-status +2 -2
- data/build/README.md +3 -0
- data/build/agent.rb +97 -0
- data/build/apache2.rb +70 -95
- data/build/basics.rb +15 -1
- data/build/common_library.rb +41 -36
- data/build/cplusplus_support.rb +89 -16
- data/build/cxx_dependency_map.rb +7900 -0
- data/build/cxx_tests.rb +146 -265
- data/build/integration_tests.rb +1 -1
- data/build/misc.rb +29 -22
- data/build/nginx.rb +10 -10
- data/build/oxt_tests.rb +36 -27
- data/build/packaging.rb +11 -11
- data/build/ruby_extension.rb +2 -2
- data/build/ruby_tests.rb +1 -1
- data/build/test_basics.rb +24 -16
- data/dev/ci/run_travis.sh +28 -6
- data/dev/index_cxx_dependencies.rb +206 -0
- data/dev/list_tests +1 -1
- data/dev/runner +1 -1
- data/dev/vagrant/nginx_rakefile +1 -1
- data/doc/Design and Architecture.html +14 -14
- data/doc/Design and Architecture.txt +14 -14
- data/doc/Packaging.html +5 -5
- data/doc/Packaging.txt.md +5 -5
- data/passenger.gemspec +3 -3
- data/src/README.md +7 -0
- data/{ext/common → src}/agent/AgentMain.cpp +0 -0
- data/src/agent/Core/ApiServer.h +624 -0
- data/src/agent/Core/ApplicationPool/BasicGroupInfo.h +81 -0
- data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +107 -0
- data/src/agent/Core/ApplicationPool/Common.h +213 -0
- data/src/agent/Core/ApplicationPool/Context.h +94 -0
- data/src/agent/Core/ApplicationPool/ErrorRenderer.h +116 -0
- data/src/agent/Core/ApplicationPool/Group.h +496 -0
- data/src/agent/Core/ApplicationPool/Group/InitializationAndShutdown.cpp +190 -0
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +329 -0
- data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +103 -0
- data/src/agent/Core/ApplicationPool/Group/Miscellaneous.cpp +65 -0
- data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +323 -0
- data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +606 -0
- data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +337 -0
- data/src/agent/Core/ApplicationPool/Group/SpawningAndRestarting.cpp +478 -0
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +197 -0
- data/src/agent/Core/ApplicationPool/Group/Verification.cpp +159 -0
- data/src/agent/Core/ApplicationPool/Implementation.cpp +335 -0
- data/src/agent/Core/ApplicationPool/Options.h +704 -0
- data/src/agent/Core/ApplicationPool/Pool.h +464 -0
- data/src/agent/Core/ApplicationPool/Pool/AnalyticsCollection.cpp +254 -0
- data/src/agent/Core/ApplicationPool/Pool/GarbageCollection.cpp +200 -0
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +241 -0
- data/src/agent/Core/ApplicationPool/Pool/GroupUtils.cpp +276 -0
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +146 -0
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +244 -0
- data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +330 -0
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +299 -0
- data/src/agent/Core/ApplicationPool/Process.h +907 -0
- data/src/agent/Core/ApplicationPool/Session.h +256 -0
- data/src/agent/Core/ApplicationPool/Socket.h +293 -0
- data/src/agent/Core/CoreMain.cpp +1202 -0
- data/{ext/common → src}/agent/Core/OptionParser.h +0 -0
- data/src/agent/Core/RequestHandler.h +470 -0
- data/src/agent/Core/RequestHandler/AppResponse.h +230 -0
- data/{ext/common → src}/agent/Core/RequestHandler/BufferBody.cpp +0 -0
- data/{ext/common → src}/agent/Core/RequestHandler/CheckoutSession.cpp +0 -0
- data/src/agent/Core/RequestHandler/Client.h +56 -0
- data/{ext/common → src}/agent/Core/RequestHandler/ForwardResponse.cpp +0 -0
- data/{ext/common → src}/agent/Core/RequestHandler/Hooks.cpp +0 -0
- data/{ext/common → src}/agent/Core/RequestHandler/InitRequest.cpp +0 -0
- data/src/agent/Core/RequestHandler/Request.h +158 -0
- data/{ext/common → src}/agent/Core/RequestHandler/SendRequest.cpp +0 -0
- data/src/agent/Core/RequestHandler/TurboCaching.h +294 -0
- data/{ext/common → src}/agent/Core/RequestHandler/Utils.cpp +0 -0
- data/{ext/common → src}/agent/Core/ResponseCache.h +0 -0
- data/{ext/common → src/agent/Core}/SpawningKit/BackgroundIOCapturer.h +0 -0
- data/src/agent/Core/SpawningKit/Config.h +107 -0
- data/src/agent/Core/SpawningKit/DirectSpawner.h +254 -0
- data/src/agent/Core/SpawningKit/DummySpawner.h +94 -0
- data/src/agent/Core/SpawningKit/Factory.h +113 -0
- data/src/agent/Core/SpawningKit/Options.h +40 -0
- data/src/agent/Core/SpawningKit/PipeWatcher.h +148 -0
- data/src/agent/Core/SpawningKit/Result.h +49 -0
- data/src/agent/Core/SpawningKit/SmartSpawner.h +818 -0
- data/src/agent/Core/SpawningKit/Spawner.h +1199 -0
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +265 -0
- data/src/agent/Core/UnionStation/Connection.h +172 -0
- data/src/agent/Core/UnionStation/Core.h +539 -0
- data/src/agent/Core/UnionStation/StopwatchLog.h +172 -0
- data/src/agent/Core/UnionStation/Transaction.h +262 -0
- data/src/agent/README.md +9 -0
- data/src/agent/Shared/ApiServerUtils.h +941 -0
- data/{ext/common/ApplicationPool2/ApiKey.h → src/agent/Shared/ApplicationPoolApiKey.h} +0 -0
- data/src/agent/Shared/Base.cpp +1647 -0
- data/{ext/common/agent → src/agent/Shared}/Base.h +0 -0
- data/src/agent/SpawnPreparer/SpawnPreparerMain.cpp +207 -0
- data/{ext/common → src}/agent/SystemMetrics/SystemMetricsMain.cpp +0 -0
- data/{ext/common → src}/agent/TempDirToucher/TempDirToucherMain.cpp +0 -0
- data/src/agent/UstRouter/ApiServer.h +285 -0
- data/src/agent/UstRouter/Client.h +111 -0
- data/src/agent/UstRouter/Controller.h +1189 -0
- data/{ext/common → src}/agent/UstRouter/DataStoreId.h +0 -0
- data/src/agent/UstRouter/FileSink.h +83 -0
- data/src/agent/UstRouter/LogSink.h +145 -0
- data/src/agent/UstRouter/OptionParser.h +173 -0
- data/src/agent/UstRouter/RemoteSender.h +699 -0
- data/src/agent/UstRouter/RemoteSink.h +143 -0
- data/src/agent/UstRouter/Transaction.h +145 -0
- data/src/agent/UstRouter/UstRouterMain.cpp +642 -0
- data/{ext/common → src}/agent/Watchdog/AgentWatcher.cpp +0 -0
- data/src/agent/Watchdog/ApiServer.h +311 -0
- data/{ext/common → src}/agent/Watchdog/CoreWatcher.cpp +0 -0
- data/{ext/common → src}/agent/Watchdog/InstanceDirToucher.cpp +0 -0
- data/{ext/common → src}/agent/Watchdog/UstRouterWatcher.cpp +0 -0
- data/src/agent/Watchdog/WatchdogMain.cpp +1360 -0
- data/{ext/apache2 → src/apache2_module}/Bucket.cpp +0 -0
- data/{ext/apache2 → src/apache2_module}/Bucket.h +0 -0
- data/src/apache2_module/Configuration.cpp +663 -0
- data/{ext/apache2 → src/apache2_module}/Configuration.h +0 -0
- data/{ext/apache2 → src/apache2_module}/Configuration.hpp +0 -0
- data/src/apache2_module/ConfigurationCommands.cpp +251 -0
- data/src/apache2_module/ConfigurationCommands.cpp.erb +108 -0
- data/src/apache2_module/ConfigurationFields.hpp +98 -0
- data/src/apache2_module/ConfigurationFields.hpp.erb +97 -0
- data/src/apache2_module/ConfigurationSetters.cpp +422 -0
- data/src/apache2_module/ConfigurationSetters.cpp.erb +127 -0
- data/src/apache2_module/CreateDirConfig.cpp +68 -0
- data/src/apache2_module/CreateDirConfig.cpp.erb +71 -0
- data/src/apache2_module/DirectoryMapper.h +273 -0
- data/src/apache2_module/Hooks.cpp +1734 -0
- data/{ext/apache2 → src/apache2_module}/Hooks.h +0 -0
- data/src/apache2_module/MergeDirConfig.cpp +230 -0
- data/src/apache2_module/MergeDirConfig.cpp.erb +81 -0
- data/src/apache2_module/README.md +5 -0
- data/src/apache2_module/SetHeaders.cpp +151 -0
- data/src/apache2_module/SetHeaders.cpp.erb +90 -0
- data/{ext/apache2 → src/apache2_module}/mod_passenger.c +0 -0
- data/{ext/common → src/cxx_supportlib}/Account.h +0 -0
- data/{ext/common → src/cxx_supportlib}/AccountsDatabase.h +0 -0
- data/{ext/common → src/cxx_supportlib}/AgentsStarter.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/AgentsStarter.h +0 -0
- data/src/cxx_supportlib/AppTypes.cpp +108 -0
- data/src/cxx_supportlib/AppTypes.h +272 -0
- data/{ext/common → src/cxx_supportlib}/BackgroundEventLoop.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/BackgroundEventLoop.h +0 -0
- data/src/cxx_supportlib/Constants.h +158 -0
- data/src/cxx_supportlib/Constants.h.erb +42 -0
- data/{ext/common → src/cxx_supportlib}/DataStructures/HashedStaticString.h +0 -0
- data/{ext/common → src/cxx_supportlib}/DataStructures/LString.h +0 -0
- data/{ext/common → src/cxx_supportlib}/DataStructures/StringKeyTable.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Exceptions.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Exceptions.h +0 -0
- data/{ext/common → src/cxx_supportlib}/FileDescriptor.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Hooks.h +0 -0
- data/src/cxx_supportlib/InstanceDirectory.h +242 -0
- data/src/cxx_supportlib/Logging.cpp +294 -0
- data/{ext/common → src/cxx_supportlib}/Logging.h +0 -0
- data/src/cxx_supportlib/MemoryKit/mbuf.cpp +403 -0
- data/src/cxx_supportlib/MemoryKit/mbuf.h +260 -0
- data/{ext/common → src/cxx_supportlib}/MemoryKit/palloc.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/MemoryKit/palloc.h +0 -0
- data/src/cxx_supportlib/MessageClient.h +308 -0
- data/src/cxx_supportlib/MessageReadersWriters.h +545 -0
- data/src/cxx_supportlib/README.md +3 -0
- data/{ext/common → src/cxx_supportlib}/RandomGenerator.h +0 -0
- data/src/cxx_supportlib/ResourceLocator.h +181 -0
- data/{ext/common → src/cxx_supportlib}/SafeLibev.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/AcceptLoadBalancer.h +0 -0
- data/src/cxx_supportlib/ServerKit/Channel.h +765 -0
- data/src/cxx_supportlib/ServerKit/Client.h +166 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/ClientRef.h +0 -0
- data/src/cxx_supportlib/ServerKit/Context.h +138 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/CookieUtils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/Errors.h +0 -0
- data/src/cxx_supportlib/ServerKit/FdSinkChannel.h +217 -0
- data/src/cxx_supportlib/ServerKit/FdSourceChannel.h +251 -0
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +1605 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/FileBufferedFdSinkChannel.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HeaderTable.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/Hooks.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpChunkedBodyParser.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpChunkedBodyParserState.h +0 -0
- data/src/cxx_supportlib/ServerKit/HttpClient.h +94 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpHeaderParser.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpHeaderParserState.h +0 -0
- data/src/cxx_supportlib/ServerKit/HttpRequest.h +276 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpRequestRef.h +0 -0
- data/src/cxx_supportlib/ServerKit/HttpServer.h +1212 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/Implementation.cpp +0 -0
- data/src/cxx_supportlib/ServerKit/Server.h +1107 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/http_parser.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/http_parser.h +0 -0
- data/{ext/common → src/cxx_supportlib}/StaticString.h +0 -0
- data/src/cxx_supportlib/UnionStationFilterSupport.cpp +66 -0
- data/src/cxx_supportlib/UnionStationFilterSupport.h +1621 -0
- data/src/cxx_supportlib/Utils.cpp +1388 -0
- data/{ext/common → src/cxx_supportlib}/Utils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/AnsiColorConstants.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/BlockingQueue.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/BufferedIO.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.hpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/ClassUtils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Curl.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/DateParsing.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/FastStringStream.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/FileChangeChecker.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/HashMap.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Hasher.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Hasher.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/HttpConstants.h +0 -0
- data/src/cxx_supportlib/Utils/IOUtils.cpp +1297 -0
- data/src/cxx_supportlib/Utils/IOUtils.h +646 -0
- data/{ext/common → src/cxx_supportlib}/Utils/IniFile.h +0 -0
- data/src/cxx_supportlib/Utils/JsonUtils.h +270 -0
- data/{ext/common → src/cxx_supportlib}/Utils/LargeFiles.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/LargeFiles.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Lock.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MemZeroGuard.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MemoryBarrier.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MessageIO.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MessagePassing.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/OptionParsing.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/ProcessMetricsCollector.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/ScopeGuard.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SpeedMeter.h +0 -0
- data/src/cxx_supportlib/Utils/StrIntUtils.cpp +698 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StrIntUtils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StrIntUtilsNoStrictAliasing.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StringMap.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StringScanning.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SystemMetricsCollector.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SystemTime.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SystemTime.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Template.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Timer.h +0 -0
- data/src/cxx_supportlib/Utils/VariantMap.h +494 -0
- data/{ext → src/cxx_supportlib}/oxt/Readme.txt +0 -0
- data/{ext → src/cxx_supportlib}/oxt/backtrace.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/backtrace_disabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/backtrace_enabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/context.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_darwin.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_gcc_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_portable.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_pthreads.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/tracable_exception_disabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/tracable_exception_enabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/dynamic_thread_group.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/implementation.cpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/initialize.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/macros.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/spin_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/system_calls.cpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/system_calls.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/tracable_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/Changes +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/LICENSE +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/Makefile.am +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/Makefile.in +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/README +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/aclocal.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/autogen.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.guess +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.h.in +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.sub +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/configure +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/configure.ac +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/depcomp +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev++.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_epoll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_kqueue.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_poll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_port.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_select.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_vars.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_win32.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_wrap.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/event.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/event.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/install-sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/libev.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ltmain.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/missing +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/mkinstalldirs +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/AUTHORS +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/ChangeLog +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/LICENSE +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/Makefile.am +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/Makefile.in +4268 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/README.md +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/aclocal.m4 +1217 -0
- data/src/cxx_supportlib/vendor-copy/libuv/ar-lib +270 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.0 +15374 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.1 +15374 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.2 +15374 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/requests +568 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.0 +3104 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.1 +3104 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.2 +699 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/checksparse.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/common.gypi +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/compile +347 -0
- data/src/cxx_supportlib/vendor-copy/libuv/config.guess +1421 -0
- data/src/cxx_supportlib/vendor-copy/libuv/config.sub +1807 -0
- data/src/cxx_supportlib/vendor-copy/libuv/configure +15374 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/configure.ac +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/depcomp +791 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/gyp_uv.py +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/android-ifaddrs.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/pthread-fixes.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/tree.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-aix.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-bsd.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-darwin.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-errno.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-linux.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-sunos.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-threadpool.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-unix.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-version.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv.h +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/install-sh +501 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/libuv.pc.in +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/ltmain.sh +11140 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/m4/as_case.m4 +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/libtool.m4 +8364 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/m4/libuv-check-flags.m4 +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/libuv-extra-automake-flags.m4 +1 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/ltoptions.m4 +437 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/ltsugar.m4 +124 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/ltversion.m4 +23 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/lt~obsolete.m4 +99 -0
- data/src/cxx_supportlib/vendor-copy/libuv/missing +215 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/fs-poll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/heap-inl.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/inet.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/queue.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/threadpool.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/aix.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/android-ifaddrs.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/async.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/atomic-ops.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/core.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/darwin-proctitle.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/darwin.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/dl.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/freebsd.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/fs.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/fsevents.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/getaddrinfo.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/getnameinfo.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/internal.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/kqueue.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-core.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-inotify.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-syscalls.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-syscalls.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/loop-watcher.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/loop.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/netbsd.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/openbsd.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/pipe.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/poll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/process.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/proctitle.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/pthread-fixes.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/signal.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/spinlock.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/stream.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/sunos.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/tcp.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/thread.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/timer.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/tty.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/udp.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/uv-common.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/uv-common.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/version.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/uv.gyp +0 -0
- data/src/cxx_supportlib/vendor-copy/utf8.h +35 -0
- data/src/cxx_supportlib/vendor-copy/utf8/checked.h +324 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-copy}/utf8/core.h +0 -0
- data/src/cxx_supportlib/vendor-copy/utf8/unchecked.h +229 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/SmallVector.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/case_conv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/compare.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/concept.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/constants.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/case_conv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format_all.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format_store.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/finder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/replace_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/erase.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/find_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/finder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/sequence_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/yes_no_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/aligned_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/atomic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas32strong.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas32weak.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas64strong.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-alpha.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-armv6plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-cas.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-sparcv9.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/generic-cas.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/interlocked.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/linux-arm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/lockpool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/platform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/type-classification.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_mf2_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_mf_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_template.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn_template.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/cerrno.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/checked_delete.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/ceil.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/clock_string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/is_evenly_divisible_by.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/static_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/system.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/system_clocks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/time_point.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/backward_compatibility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/concept_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/concept_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/general.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/has_constraints.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/usage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept_check.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/borland_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/borland_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/msvc_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/msvc_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/auto_link.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/borland.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/clang.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/codegear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/comeau.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/common_edg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/compaq_cxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/cray.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/digitalmars.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/gcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/gcc_xml.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/greenhills.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/hp_acc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/intel.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/kai.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/metrowerks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/mpw.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/nvcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/pathscale.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/pgi.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/sgi_mipspro.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/sunpro_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/vacpp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/visualc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/cmath.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/complex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/functional.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/memory.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/aix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/amigaos.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/beos.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/bsd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/cray.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/cygwin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/hpux.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/irix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/linux.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/macos.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/qnxnto.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/solaris.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/symbian.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/vms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/vxworks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/posix_features.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/requires_threads.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_compiler_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_platform_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_stdlib_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/dinkumware.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libcomo.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libcpp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libstdcpp3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/modena.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/msl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/roguewave.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/sgi.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/stlport.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/vacpp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/user.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/warning_disable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/allocator_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/container_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/adaptive_node_pool_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/advanced_insert_int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/allocation_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/allocator_version_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/config_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/config_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/destroyers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/flat_tree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/function_detector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/iterators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/math_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/memory_util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/mpl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/multiallocation_chain.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/node_alloc_holder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/node_pool_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/pair.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/pool_common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/transform_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/tree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/type_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/utilities.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/value_init.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/variadic_templates_tools.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/version_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/flat_map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/flat_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/scoped_allocator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/scoped_allocator_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/slist.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/stable_vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/static_vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/throw_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/cregex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/cstdint.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/current_function.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/adjust_functors.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/c_time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/compiler_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/constrained_value.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_clock_device.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_defs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_duration_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_facet.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_format_simple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting_limited.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting_locales.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generator_formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generator_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_names_put.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_parsing.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/dst_rules.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/filetime_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/format_date_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/conversion.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/formatters.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/formatters_limited.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_calendar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_date.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_day.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_day_of_year.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_duration_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_month.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_weekday.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_year.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_ymd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian_io.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/parsers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian_calendar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian_calendar.ipp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/int_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/iso_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/locale_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/microsec_time_clock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/parse_format_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period_formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/conversion.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/date_duration_operators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_io.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_system.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/ptime.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_formatters.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_parsers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_period.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_defs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_values_formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_values_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/string_convert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/string_parse_tree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/strings_from_facet.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_clock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_defs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_facet.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_formatting_streams.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_parsing.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_resolution_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_system_counted.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_system_split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/wrapping_int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/year_month_day.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/atomic_redef_macros.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/atomic_undef_macros.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/container_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/endian.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/fenv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/indirect_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/is_incrementable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/is_xxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/lcast_precision.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/no_exceptions_support.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/reference_content.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/scoped_enum_emulation.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/select_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/sp_typeinfo.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/enable_shared_from_this.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/current_exception_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/attribute_noreturn.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/clone_current_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/error_info_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/exception_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/is_output_streamable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/object_hex_dump.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/type_info.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/diagnostic_information.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/get_error_info.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/info.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/to_string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/to_string_stub.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/foreach.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/foreach_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/function_iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/maybe_include.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/prologue.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_template.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/float_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/hash_float.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/extensions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/hash.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/hash_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/get_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/indirect_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer/static_log2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/any_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avl_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avl_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avltree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avltree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/bs_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/circular_list_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/circular_slist_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/derivation_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/any_node_and_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/avltree_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/clear_on_destructor_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/common_slist_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/config_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/config_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/ebo_functor_holder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/function_detector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/generic_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/has_member_function_callable_with.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/hashtable_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/is_stateful_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/list_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/memory_util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/mpl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/parent_from_member.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/rbtree_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/slist_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/transform_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/tree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/tree_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/utilities.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/hashtable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/intrusive_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/linear_slist_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/link_mode.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/list_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/member_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/options.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/parent_from_member.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/pointer_plus_bits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/pointer_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/priority_compare.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/rbtree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/rbtree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sg_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sgtree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sgtree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/slist.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/slist_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splay_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splay_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splaytree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splaytree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/trivial_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/unordered_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/unordered_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/io/ios_state.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/io_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/is_placeholder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/config_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/config_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/enable_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/facade_iterator_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/minimum_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/interoperable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_adaptor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_categories.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_facade.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/reverse_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/transform_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/lexical_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/atomic/lockpool.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/c_regex_traits.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/cpp_regex_traits.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/cregex.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/instances.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/internals.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/posix_api.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_debug.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_raw_buffer.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_traits_defaults.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/static_mutex.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/wc_regex_traits.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/wide_posix_api.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/winstances.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/system/src/error_code.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/system/src/local_free_on_destruction.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/future.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/once.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/once_atomic.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/thread.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/timeconv.inl +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/tss_null.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/make_shared.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/common_factor_ct.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/policies/policy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/detail/fp_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/detail/round_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/fpclassify.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/math_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/sign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/promotion.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/real_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/user.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mem_fn.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/memory_order.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/algorithm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/core.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/config_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/config_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/meta_utils.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/move_helpers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/move.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/O1_size_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/accumulate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/advance.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/advance_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/alias.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/always.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arg_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arithmetic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/as_sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/at.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/at_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/O1_size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/adl_barrier.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/apply_1st.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arg_typedef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arithmetic_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arity_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/at_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/back_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/begin_end_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/clear_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/common_name_wknd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/comparison_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/adl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/arrays.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/bcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/compiler.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dependent_nttp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dtp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/eti.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/forwarding.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/gcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/has_apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/has_xxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/integral.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/intel.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/msvc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/msvc_typename.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/nttp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/operators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/overload_resolution.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/pp_counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/static_constant.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/ttp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/typeof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/use_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/contains_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/count_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/count_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/empty_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/erase_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/erase_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/filter_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/find_if_pred.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_impl_body.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_pred.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/front_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_rebind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/insert_range_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/inserter_algorithm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/integral_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/is_msvc_eti_arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/joint_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_arity_param.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_support.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/largest_int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/logical_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_dtw.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_eti_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_is_class.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_never_true.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/nested_type_wknd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/nttp_decl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/numeric_cast_utils.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/numeric_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/order_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/overload_names.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/partition_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/pop_back_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/pop_front_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/add.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/def_params_tail.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/default_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/ext_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/filter_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/is_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/repeat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/sub.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/token_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/ptr_to_ref.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/push_back_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/push_front_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_fold_impl_body.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/sequence_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/shift_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/single_element_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/sort_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/static_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/template_arity_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/data.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/test_case.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/traits_lambda_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/transform_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/type_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/unwrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/value_wknd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/yes_no.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back_inserter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin_end_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitwise.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bool_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/char.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/char_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/clear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/clear_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/comparison.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/contains.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/contains_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/copy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/copy_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/deref.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/distance.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/distance_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_key.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_key_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/eval_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/filter_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/find.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/find_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front_inserter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_key.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_key_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_xxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/identity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/index_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/index_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inherit_linearly.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_range_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inserter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/int_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c_tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/is_placeholder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/is_sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iter_fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iter_fold_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_tags.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/joint_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/key_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/key_type_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lambda_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/unrolling.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/begin_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/clear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/numbered_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list0_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/logical.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/long.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/long_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lower_bound.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/at_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/begin_end_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/clear_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/contains_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/empty_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/erase_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/erase_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/has_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/key_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/map0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/value_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/fixed_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/is_even.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/rational_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/max_element.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min_element.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min_max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiplies.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/count_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/multiset0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/multiset0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/negate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/next.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/next_prior.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/not.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/numeric_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/order.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/order_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pair.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pair_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/partition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_back_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_front_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/print.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/prior.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/protect.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_back_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_front_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/range_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/remove.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/remove_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/replace_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse_fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse_iter_fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/same_as.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sequence_tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sequence_tag_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/at_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/begin_end_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/clear_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/empty_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/erase_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/erase_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/has_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/key_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/numbered_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/set0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/value_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set0_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/single_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_t.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_t_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sizeof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sort.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/stable_partition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/switch.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/transform_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/unique.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/upper_bound.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/value_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/value_type_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/at.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/begin_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/clear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/numbered_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/vector0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector0_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/void.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/void_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/zip_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/next_prior.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/non_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/noncopyable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/none.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/none_t.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/bounds.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/conversion_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/converter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/converter_policies.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/bounds.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/conversion_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/converter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/int_float_mixture.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/is_subranged.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/meta.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/numeric_cast_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/sign_mixture.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/int_float_mixture_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/numeric_cast_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/sign_mixture_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/udt_builtin_mixture_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/operators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional/optional.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional/optional_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/arg_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/default.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/is_maybe.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/maybe.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/overloads.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/parameter_requirements.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/parenthesized_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/preprocessor/flatten.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/preprocessor/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/python/invoker.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/python/invoker_iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/result_of0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/tagged_argument.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/template_keyword.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/unwrap_cv_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/void.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/yesno.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/binding.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/keyword.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/macros.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/match.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/name.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/parameters.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/python.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/value_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pointee.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pointer_to_other.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/for.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.bat +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.ipp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.bat +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.ipp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/object_pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/pool_alloc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/poolfwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/simple_segregated_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/singleton_pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/add.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/dec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/detail/div_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/div.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/inc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/mod.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/mul.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/sub.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/data.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/insert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/remove.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/assert_msg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/cat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comma.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comma_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/not_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/config/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/config/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/deduce_d.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/dmc/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/edg/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/msvc/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/expr_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/expr_iif.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/iif.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/error.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/line.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/dec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/auto_rec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/check.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/dmc/auto_rec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_binary.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_nullary.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_unary.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/null.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params_with_a_default.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params_with_defaults.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_shifted.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_shifted_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/expand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/expr_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/expand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/identity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/intercept.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_empty_or_1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/overload.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/identity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/inc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/finish.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/local.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/rlocal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/self.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/start.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/local.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/self.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/library.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/adt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/append.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/at.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/cat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/dmc/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/edg/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/edg/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/filter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/first_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each_i.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each_product.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/rest_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitnor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/compl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/nor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/not.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/xor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/min.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/comma.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/comma_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/paren.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/paren_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_2nd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_3rd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to_2nd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to_3rd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/deduce_r.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/deduce_z.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/dmc/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/edg/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/msvc/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_binary_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params_with_a_default.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params_with_defaults.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted_binary_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing_binary_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/repeat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/repeat_from_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection/max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection/min.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/cat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/detail/binary_transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/detail/split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/filter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/first_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each_i.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each_product.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/insert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/remove.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/rest_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/subseq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/shared.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/slot.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/stringize.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/eat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/rem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/wstringize.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/algorithm/equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/as_literal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/const_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/extract_optional_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/implementation_help.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/misc_concept.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/safe_bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/sfinae.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/str_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/difference_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/distance.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range_core.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range_io.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/mutable_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/rbegin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/rend.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/reverse_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/size_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/value_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/abs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/gcd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/lcm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/sign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/overflow_helpers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/ratio.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/ratio_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ref.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config/borland.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config/cwchar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/mfc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pattern_except.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/object_cache.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/static_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/unicode_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/user.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex_creator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/c_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/char_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/cpp_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/cregex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/error_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/fileiter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/instances.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/iterator_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/iterator_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/match_flags.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/match_results.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/mem_block_cache.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_non_recursive.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_recursive.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/primary_transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/protected_call.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regbase.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_grep.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_match.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_merge.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_raw_buffer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_search.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_token_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_traits_defaults.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/states.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/sub_match.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/syntax_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/u32regex_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/u32regex_token_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/w32_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/scoped_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/scoped_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/shared_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/allocate_shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/bad_weak_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/allocate_array_helper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_deleter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_gcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_pthreads.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/make_array_helper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/operator_bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/shared_count.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_convertible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_aix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_nt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_pt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_spin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_has_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_if_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_nullptr_t.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_nt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_pt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/yield_k.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/enable_shared_from_this.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/intrusive_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared_object.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/scoped_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/scoped_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/shared_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/weak_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/static_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/swap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/api_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/error_code.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/system_error.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/barrier.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/completion_latch.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/condition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/condition_variable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/cv_status.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/async_func.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/delete.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/force_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/invoke.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/is_convertible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/lockable_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/log.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/make_tuple_indices.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/memory.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/move.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/platform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/singleton.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_group.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_heap_alloc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_interruption.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/tss_hooks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/exceptions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/externally_locked.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/externally_locked_stream.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/future.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/future_error_code.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/is_locked_by_this_thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/latch.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_factories.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_options.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/locks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/null_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/once.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_lockable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_lockable_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_shared_lockable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_shared_lockable_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/condition_variable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/condition_variable_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/once.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/once_atomic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/recursive_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/shared_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/shared_mutex_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/thread_data.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/thread_heap_alloc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/timespec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/recursive_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/reverse_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/scoped_thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/shared_lock_guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/shared_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/strict_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/sync_bounded_queue.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/sync_queue.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/synchronized_value.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/testable_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_functors.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_only.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/tss.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/v2/shared_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/v2/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/xtime.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/throw_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/token_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/token_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/tokenizer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/tuple/detail/tuple_basic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/tuple/tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_const.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_cv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_lvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_rvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_volatile.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/aligned_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/alignment_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/broken_compiler_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/common_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/composite_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/conversion_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/cv_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/decay.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/common_type_imp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/cv_traits_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/false_result.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_binary_operator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_postfix_operator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_prefix_operator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_eq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_not.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_helper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_tester.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/template_arity_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/yes_no_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/function_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_left_shift.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_assign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_constructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_copy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_right_shift.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_assign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_constructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_copy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_destructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_assign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_constructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/ice.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/integral_constant.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/intrinsics.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_abstract.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_arithmetic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_base_and_derived.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_base_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_class.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_compound.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_const.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_convertible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_float.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_floating_point.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_function.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_fundamental.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_integral.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_lvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_function_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_assignable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_constructible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_object.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_pod.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_rvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_same.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_scalar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_signed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_stateless.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_union.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_unsigned.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_void.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_volatile.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/make_signed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/make_unsigned.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/object_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_bounds.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_const.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_cv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_volatile.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/same_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/transform_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/type_with_alignment.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/message.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/native.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/typeof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/units/detail/utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/allocate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/buckets.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/equivalent.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/extract_key.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/table.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/unique.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_map_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_set_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered_map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/addressof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/compare_pointees.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/declval.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/result_of_iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/enable_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/in_place_factory.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/result_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/swap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/version.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/visit_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/weak_ptr.hpp +0 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified/jsoncpp}/json-forwards.h +0 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified/jsoncpp}/json.h +0 -0
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +4237 -0
- data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +290 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/modp_b64.h +0 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/modp_b64_data.h +0 -0
- data/{ext/common/Utils/sysqueue.h → src/cxx_supportlib/vendor-modified/psg_sysqueue.h} +0 -0
- data/src/helper-scripts/README.md +1 -0
- data/{helper-scripts → src/helper-scripts}/backtrace-sanitizer.rb +0 -0
- data/{helper-scripts → src/helper-scripts}/crash-watch.rb +0 -0
- data/src/helper-scripts/download_binaries/extconf.rb +116 -0
- data/{helper-scripts → src/helper-scripts}/meteor-loader.rb +0 -0
- data/src/helper-scripts/node-loader.js +259 -0
- data/{helper-scripts → src/helper-scripts}/prespawn +0 -0
- data/{helper-scripts → src/helper-scripts}/rack-loader.rb +0 -0
- data/{helper-scripts → src/helper-scripts}/rack-preloader.rb +0 -0
- data/{helper-scripts → src/helper-scripts}/wsgi-loader.py +0 -0
- data/src/nginx_module/CacheLocationConfig.c +673 -0
- data/src/nginx_module/CacheLocationConfig.c.erb +158 -0
- data/src/nginx_module/Configuration.c +1465 -0
- data/{ext/nginx → src/nginx_module}/Configuration.h +0 -0
- data/src/nginx_module/ConfigurationCommands.c +631 -0
- data/src/nginx_module/ConfigurationCommands.c.erb +143 -0
- data/src/nginx_module/ConfigurationFields.h +134 -0
- data/src/nginx_module/ConfigurationFields.h.erb +111 -0
- data/src/nginx_module/ContentHandler.c +1494 -0
- data/src/nginx_module/ContentHandler.h +58 -0
- data/src/nginx_module/CreateLocationConfig.c +205 -0
- data/src/nginx_module/CreateLocationConfig.c.erb +77 -0
- data/src/nginx_module/MergeLocationConfig.c +267 -0
- data/src/nginx_module/MergeLocationConfig.c.erb +117 -0
- data/src/nginx_module/README.md +5 -0
- data/{ext/nginx → src/nginx_module}/StaticContentHandler.c +0 -0
- data/{ext/nginx → src/nginx_module}/StaticContentHandler.h +0 -0
- data/src/nginx_module/config +102 -0
- data/src/nginx_module/ngx_http_passenger_module.c +512 -0
- data/src/nginx_module/ngx_http_passenger_module.h +65 -0
- data/{node_lib → src/nodejs_supportlib}/phusion_passenger/line_reader.js +0 -0
- data/{ext/ruby → src/ruby_native_extension}/extconf.rb +0 -0
- data/{ext/ruby → src/ruby_native_extension}/passenger_native_support.c +0 -0
- data/src/ruby_supportlib/phusion_passenger.rb +313 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/abstract_installer.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools/instance.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools/instance_registry.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/admin_tools/memory_stats.rb +312 -0
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +247 -0
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +341 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/about_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/agent_compiler.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/api_call_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/build_native_support_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/compile_agent_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/compile_nginx_engine_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/detach_process_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/download_agent_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/download_nginx_engine_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/install_agent_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/install_standalone_runtime_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/installation_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/list_instances_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/main.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/nginx_engine_compiler.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/reopen_logs_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/restart_app_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/system_metrics_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/validate_install_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/console_text_template.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/constants.rb +125 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/debug_logging.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +515 -0
- data/src/ruby_supportlib/phusion_passenger/message_channel.rb +343 -0
- data/src/ruby_supportlib/phusion_passenger/message_client.rb +135 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/native_support.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +392 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +128 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/apache.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/apache_detector.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/binary_compatibility.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/compiler.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/curl.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/cxx_portability.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/apache2.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/compiler_toolchain.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/gems.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/libs.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/ruby.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/utilities.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/linux.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/operating_system.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/ruby.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/zlib.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/plugin.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/preloader_shared_helpers.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/public_api.rb +93 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/rack/out_of_band_gc.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +379 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/request_handler.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +366 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/ruby_core_enhancements.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/ruby_core_io_enhancements.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/simple_benchmarking.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/app_finder.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/config_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/control_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/main.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +825 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/start_command/builtin_engine.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/start_command/nginx_engine.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/status_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/stop_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/version_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/ansi_colors.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/download.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/file_system_watcher.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/hosts_file_parser.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/json.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/lock.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/native_support_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/progress_bar.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/shellwords.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/tee_input.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/terminal_choice_menu.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/tmpio.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/unseekable_socket.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/app.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/gdb_controller.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/version.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/lock_file.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/spawn.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/version.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/CONFIG.md +37 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile +17 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile.lock +59 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/LICENSE.md +19 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README-API.md +5 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README.md +117 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Rakefile +88 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core.rb +366 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/api.rb +192 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/connection.rb +67 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/context.rb +279 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/lock.rb +62 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/log.rb +66 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/message_channel.rb +157 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter.rb +150 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/basics.rb +196 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/controllers.rb +187 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/misc.rb +299 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/view_rendering.rb +91 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/spec_helper.rb +259 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/time_point.rb +53 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/transaction.rb +182 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/utils.rb +161 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version.rb +32 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version_data.rb +44 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml +2 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.example +16 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis +18 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/union_station_hooks_core.gemspec +23 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile +14 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile.lock +45 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/LICENSE.md +19 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/README.md +104 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Rakefile +160 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails.rb +173 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_controller_extension.rb +45 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_view_subscriber.rb +55 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_record_subscriber.rb +41 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_benchmarkable_extension.rb +47 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_cache_subscriber.rb +70 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/exception_logger.rb +57 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/initialize.rb +30 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version.rb +32 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version_data.rb +44 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/union_station_hooks_rails.gemspec +34 -0
- metadata +2764 -2717
- metadata.gz.asc +7 -7
- data/build/agents.rb +0 -174
- data/build/preprocessor.rb +0 -140
- data/build/rake_extensions.rb +0 -187
- data/ext/apache2/Configuration.cpp +0 -663
- data/ext/apache2/ConfigurationCommands.cpp +0 -251
- data/ext/apache2/ConfigurationCommands.cpp.erb +0 -108
- data/ext/apache2/ConfigurationFields.hpp +0 -98
- data/ext/apache2/ConfigurationFields.hpp.erb +0 -97
- data/ext/apache2/ConfigurationSetters.cpp +0 -422
- data/ext/apache2/ConfigurationSetters.cpp.erb +0 -127
- data/ext/apache2/CreateDirConfig.cpp +0 -68
- data/ext/apache2/CreateDirConfig.cpp.erb +0 -71
- data/ext/apache2/DirectoryMapper.h +0 -274
- data/ext/apache2/Hooks.cpp +0 -1734
- data/ext/apache2/MergeDirConfig.cpp +0 -230
- data/ext/apache2/MergeDirConfig.cpp.erb +0 -81
- data/ext/apache2/SetHeaders.cpp +0 -151
- data/ext/apache2/SetHeaders.cpp.erb +0 -90
- data/ext/common/ApplicationPool2/AppTypes.cpp +0 -111
- data/ext/common/ApplicationPool2/AppTypes.h +0 -274
- data/ext/common/ApplicationPool2/BasicGroupInfo.h +0 -81
- data/ext/common/ApplicationPool2/BasicProcessInfo.h +0 -106
- data/ext/common/ApplicationPool2/Common.h +0 -213
- data/ext/common/ApplicationPool2/Context.h +0 -94
- data/ext/common/ApplicationPool2/ErrorRenderer.h +0 -116
- data/ext/common/ApplicationPool2/Group.h +0 -495
- data/ext/common/ApplicationPool2/Group/InitializationAndShutdown.cpp +0 -190
- data/ext/common/ApplicationPool2/Group/InternalUtils.cpp +0 -329
- data/ext/common/ApplicationPool2/Group/LifetimeAndBasics.cpp +0 -103
- data/ext/common/ApplicationPool2/Group/Miscellaneous.cpp +0 -65
- data/ext/common/ApplicationPool2/Group/OutOfBandWork.cpp +0 -323
- data/ext/common/ApplicationPool2/Group/ProcessListManagement.cpp +0 -606
- data/ext/common/ApplicationPool2/Group/SessionManagement.cpp +0 -337
- data/ext/common/ApplicationPool2/Group/SpawningAndRestarting.cpp +0 -478
- data/ext/common/ApplicationPool2/Group/StateInspection.cpp +0 -197
- data/ext/common/ApplicationPool2/Group/Verification.cpp +0 -159
- data/ext/common/ApplicationPool2/Implementation.cpp +0 -335
- data/ext/common/ApplicationPool2/Options.h +0 -704
- data/ext/common/ApplicationPool2/Pool.h +0 -463
- data/ext/common/ApplicationPool2/Pool/AnalyticsCollection.cpp +0 -254
- data/ext/common/ApplicationPool2/Pool/GarbageCollection.cpp +0 -200
- data/ext/common/ApplicationPool2/Pool/GeneralUtils.cpp +0 -241
- data/ext/common/ApplicationPool2/Pool/GroupUtils.cpp +0 -276
- data/ext/common/ApplicationPool2/Pool/InitializationAndShutdown.cpp +0 -145
- data/ext/common/ApplicationPool2/Pool/Miscellaneous.cpp +0 -244
- data/ext/common/ApplicationPool2/Pool/ProcessUtils.cpp +0 -330
- data/ext/common/ApplicationPool2/Pool/StateInspection.cpp +0 -299
- data/ext/common/ApplicationPool2/Process.h +0 -906
- data/ext/common/ApplicationPool2/Session.h +0 -255
- data/ext/common/ApplicationPool2/Socket.h +0 -293
- data/ext/common/Constants.h +0 -160
- data/ext/common/Constants.h.erb +0 -42
- data/ext/common/EventedClient.h +0 -723
- data/ext/common/EventedMessageServer.h +0 -332
- data/ext/common/EventedServer.h +0 -295
- data/ext/common/InstanceDirectory.h +0 -242
- data/ext/common/Logging.cpp +0 -294
- data/ext/common/MemoryKit/mbuf.cpp +0 -302
- data/ext/common/MemoryKit/mbuf.h +0 -256
- data/ext/common/MessageClient.h +0 -300
- data/ext/common/MessageReadersWriters.h +0 -527
- data/ext/common/MessageServer.h +0 -625
- data/ext/common/ResourceLocator.h +0 -181
- data/ext/common/ServerKit/Channel.h +0 -765
- data/ext/common/ServerKit/Client.h +0 -166
- data/ext/common/ServerKit/Context.h +0 -138
- data/ext/common/ServerKit/FdSinkChannel.h +0 -217
- data/ext/common/ServerKit/FdSourceChannel.h +0 -251
- data/ext/common/ServerKit/FileBufferedChannel.h +0 -1605
- data/ext/common/ServerKit/HttpClient.h +0 -94
- data/ext/common/ServerKit/HttpRequest.h +0 -276
- data/ext/common/ServerKit/HttpServer.h +0 -1212
- data/ext/common/ServerKit/Server.h +0 -1101
- data/ext/common/SpawningKit/Config.h +0 -107
- data/ext/common/SpawningKit/DirectSpawner.h +0 -254
- data/ext/common/SpawningKit/DummySpawner.h +0 -94
- data/ext/common/SpawningKit/Factory.h +0 -113
- data/ext/common/SpawningKit/Options.h +0 -40
- data/ext/common/SpawningKit/PipeWatcher.h +0 -148
- data/ext/common/SpawningKit/Result.h +0 -49
- data/ext/common/SpawningKit/SmartSpawner.h +0 -818
- data/ext/common/SpawningKit/Spawner.h +0 -1199
- data/ext/common/SpawningKit/UserSwitchingRules.h +0 -265
- data/ext/common/UnionStation/Connection.h +0 -229
- data/ext/common/UnionStation/Core.h +0 -508
- data/ext/common/UnionStation/StopwatchLog.h +0 -172
- data/ext/common/UnionStation/Transaction.h +0 -276
- data/ext/common/Utils.cpp +0 -1389
- data/ext/common/Utils/BCrypt.cpp +0 -343
- data/ext/common/Utils/BCrypt.h +0 -73
- data/ext/common/Utils/Blowfish.c +0 -685
- data/ext/common/Utils/Blowfish.h +0 -103
- data/ext/common/Utils/Dechunker.h +0 -242
- data/ext/common/Utils/IOUtils.cpp +0 -1293
- data/ext/common/Utils/IOUtils.h +0 -644
- data/ext/common/Utils/JsonUtils.h +0 -261
- data/ext/common/Utils/MD5.cpp +0 -409
- data/ext/common/Utils/MD5.h +0 -108
- data/ext/common/Utils/StrIntUtils.cpp +0 -698
- data/ext/common/Utils/VariantMap.h +0 -494
- data/ext/common/Utils/jsoncpp.cpp +0 -4237
- data/ext/common/Utils/modp_b64.cpp +0 -290
- data/ext/common/Utils/utf8.h +0 -35
- data/ext/common/Utils/utf8/checked.h +0 -324
- data/ext/common/Utils/utf8/unchecked.h +0 -229
- data/ext/common/agent/ApiServerUtils.h +0 -941
- data/ext/common/agent/Base.cpp +0 -1647
- data/ext/common/agent/Core/ApiServer.h +0 -623
- data/ext/common/agent/Core/CoreMain.cpp +0 -1203
- data/ext/common/agent/Core/RequestHandler.h +0 -469
- data/ext/common/agent/Core/RequestHandler/AppResponse.h +0 -230
- data/ext/common/agent/Core/RequestHandler/Client.h +0 -56
- data/ext/common/agent/Core/RequestHandler/Request.h +0 -158
- data/ext/common/agent/Core/RequestHandler/TurboCaching.h +0 -294
- data/ext/common/agent/SpawnPreparer/SpawnPreparerMain.cpp +0 -207
- data/ext/common/agent/UstRouter/ApiServer.h +0 -279
- data/ext/common/agent/UstRouter/FilterSupport.cpp +0 -66
- data/ext/common/agent/UstRouter/FilterSupport.h +0 -1619
- data/ext/common/agent/UstRouter/LoggingServer.h +0 -1206
- data/ext/common/agent/UstRouter/OptionParser.h +0 -167
- data/ext/common/agent/UstRouter/RemoteSender.h +0 -621
- data/ext/common/agent/UstRouter/UstRouterMain.cpp +0 -558
- data/ext/common/agent/Watchdog/ApiServer.h +0 -311
- data/ext/common/agent/Watchdog/WatchdogMain.cpp +0 -1359
- data/ext/libuv/.gitignore +0 -72
- data/ext/libuv/m4/.gitignore +0 -4
- data/ext/nginx/CacheLocationConfig.c +0 -673
- data/ext/nginx/CacheLocationConfig.c.erb +0 -158
- data/ext/nginx/Configuration.c +0 -1465
- data/ext/nginx/ConfigurationCommands.c +0 -631
- data/ext/nginx/ConfigurationCommands.c.erb +0 -143
- data/ext/nginx/ConfigurationFields.h +0 -134
- data/ext/nginx/ConfigurationFields.h.erb +0 -111
- data/ext/nginx/ContentHandler.c +0 -1494
- data/ext/nginx/ContentHandler.h +0 -58
- data/ext/nginx/CreateLocationConfig.c +0 -205
- data/ext/nginx/CreateLocationConfig.c.erb +0 -77
- data/ext/nginx/MergeLocationConfig.c +0 -267
- data/ext/nginx/MergeLocationConfig.c.erb +0 -117
- data/ext/nginx/config +0 -102
- data/ext/nginx/ngx_http_passenger_module.c +0 -512
- data/ext/nginx/ngx_http_passenger_module.h +0 -65
- data/helper-scripts/download_binaries/extconf.rb +0 -116
- data/helper-scripts/node-loader.js +0 -259
- data/lib/phusion_passenger.rb +0 -313
- data/lib/phusion_passenger/active_support3_extensions/init.rb +0 -198
- data/lib/phusion_passenger/admin_tools/memory_stats.rb +0 -300
- data/lib/phusion_passenger/apache2/config_options.rb +0 -247
- data/lib/phusion_passenger/common_library.rb +0 -549
- data/lib/phusion_passenger/constants.rb +0 -128
- data/lib/phusion_passenger/loader_shared_helpers.rb +0 -510
- data/lib/phusion_passenger/message_channel.rb +0 -343
- data/lib/phusion_passenger/message_client.rb +0 -208
- data/lib/phusion_passenger/nginx/config_options.rb +0 -392
- data/lib/phusion_passenger/packaging.rb +0 -145
- data/lib/phusion_passenger/public_api.rb +0 -225
- data/lib/phusion_passenger/rack/thread_handler_extension.rb +0 -360
- data/lib/phusion_passenger/request_handler/thread_handler.rb +0 -422
- data/lib/phusion_passenger/standalone/start_command.rb +0 -824
- data/lib/phusion_passenger/union_station/connection.rb +0 -67
- data/lib/phusion_passenger/union_station/core.rb +0 -283
- data/lib/phusion_passenger/union_station/transaction.rb +0 -168
@@ -0,0 +1,1807 @@
|
|
1
|
+
#! /bin/sh
|
2
|
+
# Configuration validation subroutine script.
|
3
|
+
# Copyright 1992-2014 Free Software Foundation, Inc.
|
4
|
+
|
5
|
+
timestamp='2014-12-03'
|
6
|
+
|
7
|
+
# This file is free software; you can redistribute it and/or modify it
|
8
|
+
# under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation; either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful, but
|
13
|
+
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
# General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
19
|
+
#
|
20
|
+
# As a special exception to the GNU General Public License, if you
|
21
|
+
# distribute this file as part of a program that contains a
|
22
|
+
# configuration script generated by Autoconf, you may include it under
|
23
|
+
# the same distribution terms that you use for the rest of that
|
24
|
+
# program. This Exception is an additional permission under section 7
|
25
|
+
# of the GNU General Public License, version 3 ("GPLv3").
|
26
|
+
|
27
|
+
|
28
|
+
# Please send patches to <config-patches@gnu.org>.
|
29
|
+
#
|
30
|
+
# Configuration subroutine to validate and canonicalize a configuration type.
|
31
|
+
# Supply the specified configuration type as an argument.
|
32
|
+
# If it is invalid, we print an error message on stderr and exit with code 1.
|
33
|
+
# Otherwise, we print the canonical config type on stdout and succeed.
|
34
|
+
|
35
|
+
# You can get the latest version of this script from:
|
36
|
+
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
|
37
|
+
|
38
|
+
# This file is supposed to be the same for all GNU packages
|
39
|
+
# and recognize all the CPU types, system types and aliases
|
40
|
+
# that are meaningful with *any* GNU software.
|
41
|
+
# Each package is responsible for reporting which valid configurations
|
42
|
+
# it does not support. The user should be able to distinguish
|
43
|
+
# a failure to support a valid configuration from a meaningless
|
44
|
+
# configuration.
|
45
|
+
|
46
|
+
# The goal of this file is to map all the various variations of a given
|
47
|
+
# machine specification into a single specification in the form:
|
48
|
+
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
|
49
|
+
# or in some cases, the newer four-part form:
|
50
|
+
# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
|
51
|
+
# It is wrong to echo any other type of specification.
|
52
|
+
|
53
|
+
me=`echo "$0" | sed -e 's,.*/,,'`
|
54
|
+
|
55
|
+
usage="\
|
56
|
+
Usage: $0 [OPTION] CPU-MFR-OPSYS
|
57
|
+
$0 [OPTION] ALIAS
|
58
|
+
|
59
|
+
Canonicalize a configuration name.
|
60
|
+
|
61
|
+
Operation modes:
|
62
|
+
-h, --help print this help, then exit
|
63
|
+
-t, --time-stamp print date of last modification, then exit
|
64
|
+
-v, --version print version number, then exit
|
65
|
+
|
66
|
+
Report bugs and patches to <config-patches@gnu.org>."
|
67
|
+
|
68
|
+
version="\
|
69
|
+
GNU config.sub ($timestamp)
|
70
|
+
|
71
|
+
Copyright 1992-2014 Free Software Foundation, Inc.
|
72
|
+
|
73
|
+
This is free software; see the source for copying conditions. There is NO
|
74
|
+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
75
|
+
|
76
|
+
help="
|
77
|
+
Try \`$me --help' for more information."
|
78
|
+
|
79
|
+
# Parse command line
|
80
|
+
while test $# -gt 0 ; do
|
81
|
+
case $1 in
|
82
|
+
--time-stamp | --time* | -t )
|
83
|
+
echo "$timestamp" ; exit ;;
|
84
|
+
--version | -v )
|
85
|
+
echo "$version" ; exit ;;
|
86
|
+
--help | --h* | -h )
|
87
|
+
echo "$usage"; exit ;;
|
88
|
+
-- ) # Stop option processing
|
89
|
+
shift; break ;;
|
90
|
+
- ) # Use stdin as input.
|
91
|
+
break ;;
|
92
|
+
-* )
|
93
|
+
echo "$me: invalid option $1$help"
|
94
|
+
exit 1 ;;
|
95
|
+
|
96
|
+
*local*)
|
97
|
+
# First pass through any local machine types.
|
98
|
+
echo $1
|
99
|
+
exit ;;
|
100
|
+
|
101
|
+
* )
|
102
|
+
break ;;
|
103
|
+
esac
|
104
|
+
done
|
105
|
+
|
106
|
+
case $# in
|
107
|
+
0) echo "$me: missing argument$help" >&2
|
108
|
+
exit 1;;
|
109
|
+
1) ;;
|
110
|
+
*) echo "$me: too many arguments$help" >&2
|
111
|
+
exit 1;;
|
112
|
+
esac
|
113
|
+
|
114
|
+
# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
|
115
|
+
# Here we must recognize all the valid KERNEL-OS combinations.
|
116
|
+
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
|
117
|
+
case $maybe_os in
|
118
|
+
nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
|
119
|
+
linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
|
120
|
+
knetbsd*-gnu* | netbsd*-gnu* | \
|
121
|
+
kopensolaris*-gnu* | \
|
122
|
+
storm-chaos* | os2-emx* | rtmk-nova*)
|
123
|
+
os=-$maybe_os
|
124
|
+
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
|
125
|
+
;;
|
126
|
+
android-linux)
|
127
|
+
os=-linux-android
|
128
|
+
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
|
129
|
+
;;
|
130
|
+
*)
|
131
|
+
basic_machine=`echo $1 | sed 's/-[^-]*$//'`
|
132
|
+
if [ $basic_machine != $1 ]
|
133
|
+
then os=`echo $1 | sed 's/.*-/-/'`
|
134
|
+
else os=; fi
|
135
|
+
;;
|
136
|
+
esac
|
137
|
+
|
138
|
+
### Let's recognize common machines as not being operating systems so
|
139
|
+
### that things like config.sub decstation-3100 work. We also
|
140
|
+
### recognize some manufacturers as not being operating systems, so we
|
141
|
+
### can provide default operating systems below.
|
142
|
+
case $os in
|
143
|
+
-sun*os*)
|
144
|
+
# Prevent following clause from handling this invalid input.
|
145
|
+
;;
|
146
|
+
-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
|
147
|
+
-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
|
148
|
+
-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
|
149
|
+
-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
|
150
|
+
-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
|
151
|
+
-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
|
152
|
+
-apple | -axis | -knuth | -cray | -microblaze*)
|
153
|
+
os=
|
154
|
+
basic_machine=$1
|
155
|
+
;;
|
156
|
+
-bluegene*)
|
157
|
+
os=-cnk
|
158
|
+
;;
|
159
|
+
-sim | -cisco | -oki | -wec | -winbond)
|
160
|
+
os=
|
161
|
+
basic_machine=$1
|
162
|
+
;;
|
163
|
+
-scout)
|
164
|
+
;;
|
165
|
+
-wrs)
|
166
|
+
os=-vxworks
|
167
|
+
basic_machine=$1
|
168
|
+
;;
|
169
|
+
-chorusos*)
|
170
|
+
os=-chorusos
|
171
|
+
basic_machine=$1
|
172
|
+
;;
|
173
|
+
-chorusrdb)
|
174
|
+
os=-chorusrdb
|
175
|
+
basic_machine=$1
|
176
|
+
;;
|
177
|
+
-hiux*)
|
178
|
+
os=-hiuxwe2
|
179
|
+
;;
|
180
|
+
-sco6)
|
181
|
+
os=-sco5v6
|
182
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
183
|
+
;;
|
184
|
+
-sco5)
|
185
|
+
os=-sco3.2v5
|
186
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
187
|
+
;;
|
188
|
+
-sco4)
|
189
|
+
os=-sco3.2v4
|
190
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
191
|
+
;;
|
192
|
+
-sco3.2.[4-9]*)
|
193
|
+
os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
|
194
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
195
|
+
;;
|
196
|
+
-sco3.2v[4-9]*)
|
197
|
+
# Don't forget version if it is 3.2v4 or newer.
|
198
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
199
|
+
;;
|
200
|
+
-sco5v6*)
|
201
|
+
# Don't forget version if it is 3.2v4 or newer.
|
202
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
203
|
+
;;
|
204
|
+
-sco*)
|
205
|
+
os=-sco3.2v2
|
206
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
207
|
+
;;
|
208
|
+
-udk*)
|
209
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
210
|
+
;;
|
211
|
+
-isc)
|
212
|
+
os=-isc2.2
|
213
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
214
|
+
;;
|
215
|
+
-clix*)
|
216
|
+
basic_machine=clipper-intergraph
|
217
|
+
;;
|
218
|
+
-isc*)
|
219
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
220
|
+
;;
|
221
|
+
-lynx*178)
|
222
|
+
os=-lynxos178
|
223
|
+
;;
|
224
|
+
-lynx*5)
|
225
|
+
os=-lynxos5
|
226
|
+
;;
|
227
|
+
-lynx*)
|
228
|
+
os=-lynxos
|
229
|
+
;;
|
230
|
+
-ptx*)
|
231
|
+
basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
|
232
|
+
;;
|
233
|
+
-windowsnt*)
|
234
|
+
os=`echo $os | sed -e 's/windowsnt/winnt/'`
|
235
|
+
;;
|
236
|
+
-psos*)
|
237
|
+
os=-psos
|
238
|
+
;;
|
239
|
+
-mint | -mint[0-9]*)
|
240
|
+
basic_machine=m68k-atari
|
241
|
+
os=-mint
|
242
|
+
;;
|
243
|
+
esac
|
244
|
+
|
245
|
+
# Decode aliases for certain CPU-COMPANY combinations.
|
246
|
+
case $basic_machine in
|
247
|
+
# Recognize the basic CPU types without company name.
|
248
|
+
# Some are omitted here because they have special meanings below.
|
249
|
+
1750a | 580 \
|
250
|
+
| a29k \
|
251
|
+
| aarch64 | aarch64_be \
|
252
|
+
| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
|
253
|
+
| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
|
254
|
+
| am33_2.0 \
|
255
|
+
| arc | arceb \
|
256
|
+
| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
|
257
|
+
| avr | avr32 \
|
258
|
+
| be32 | be64 \
|
259
|
+
| bfin \
|
260
|
+
| c4x | c8051 | clipper \
|
261
|
+
| d10v | d30v | dlx | dsp16xx \
|
262
|
+
| epiphany \
|
263
|
+
| fido | fr30 | frv \
|
264
|
+
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
|
265
|
+
| hexagon \
|
266
|
+
| i370 | i860 | i960 | ia64 \
|
267
|
+
| ip2k | iq2000 \
|
268
|
+
| k1om \
|
269
|
+
| le32 | le64 \
|
270
|
+
| lm32 \
|
271
|
+
| m32c | m32r | m32rle | m68000 | m68k | m88k \
|
272
|
+
| maxq | mb | microblaze | microblazeel | mcore | mep | metag \
|
273
|
+
| mips | mipsbe | mipseb | mipsel | mipsle \
|
274
|
+
| mips16 \
|
275
|
+
| mips64 | mips64el \
|
276
|
+
| mips64octeon | mips64octeonel \
|
277
|
+
| mips64orion | mips64orionel \
|
278
|
+
| mips64r5900 | mips64r5900el \
|
279
|
+
| mips64vr | mips64vrel \
|
280
|
+
| mips64vr4100 | mips64vr4100el \
|
281
|
+
| mips64vr4300 | mips64vr4300el \
|
282
|
+
| mips64vr5000 | mips64vr5000el \
|
283
|
+
| mips64vr5900 | mips64vr5900el \
|
284
|
+
| mipsisa32 | mipsisa32el \
|
285
|
+
| mipsisa32r2 | mipsisa32r2el \
|
286
|
+
| mipsisa32r6 | mipsisa32r6el \
|
287
|
+
| mipsisa64 | mipsisa64el \
|
288
|
+
| mipsisa64r2 | mipsisa64r2el \
|
289
|
+
| mipsisa64r6 | mipsisa64r6el \
|
290
|
+
| mipsisa64sb1 | mipsisa64sb1el \
|
291
|
+
| mipsisa64sr71k | mipsisa64sr71kel \
|
292
|
+
| mipsr5900 | mipsr5900el \
|
293
|
+
| mipstx39 | mipstx39el \
|
294
|
+
| mn10200 | mn10300 \
|
295
|
+
| moxie \
|
296
|
+
| mt \
|
297
|
+
| msp430 \
|
298
|
+
| nds32 | nds32le | nds32be \
|
299
|
+
| nios | nios2 | nios2eb | nios2el \
|
300
|
+
| ns16k | ns32k \
|
301
|
+
| open8 | or1k | or1knd | or32 \
|
302
|
+
| pdp10 | pdp11 | pj | pjl \
|
303
|
+
| powerpc | powerpc64 | powerpc64le | powerpcle \
|
304
|
+
| pyramid \
|
305
|
+
| riscv32 | riscv64 \
|
306
|
+
| rl78 | rx \
|
307
|
+
| score \
|
308
|
+
| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
|
309
|
+
| sh64 | sh64le \
|
310
|
+
| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
|
311
|
+
| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
|
312
|
+
| spu \
|
313
|
+
| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
|
314
|
+
| ubicom32 \
|
315
|
+
| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
|
316
|
+
| visium \
|
317
|
+
| we32k \
|
318
|
+
| x86 | xc16x | xstormy16 | xtensa \
|
319
|
+
| z8k | z80)
|
320
|
+
basic_machine=$basic_machine-unknown
|
321
|
+
;;
|
322
|
+
c54x)
|
323
|
+
basic_machine=tic54x-unknown
|
324
|
+
;;
|
325
|
+
c55x)
|
326
|
+
basic_machine=tic55x-unknown
|
327
|
+
;;
|
328
|
+
c6x)
|
329
|
+
basic_machine=tic6x-unknown
|
330
|
+
;;
|
331
|
+
leon|leon[3-9])
|
332
|
+
basic_machine=sparc-$basic_machine
|
333
|
+
;;
|
334
|
+
m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
|
335
|
+
basic_machine=$basic_machine-unknown
|
336
|
+
os=-none
|
337
|
+
;;
|
338
|
+
m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
|
339
|
+
;;
|
340
|
+
ms1)
|
341
|
+
basic_machine=mt-unknown
|
342
|
+
;;
|
343
|
+
|
344
|
+
strongarm | thumb | xscale)
|
345
|
+
basic_machine=arm-unknown
|
346
|
+
;;
|
347
|
+
xgate)
|
348
|
+
basic_machine=$basic_machine-unknown
|
349
|
+
os=-none
|
350
|
+
;;
|
351
|
+
xscaleeb)
|
352
|
+
basic_machine=armeb-unknown
|
353
|
+
;;
|
354
|
+
|
355
|
+
xscaleel)
|
356
|
+
basic_machine=armel-unknown
|
357
|
+
;;
|
358
|
+
|
359
|
+
# We use `pc' rather than `unknown'
|
360
|
+
# because (1) that's what they normally are, and
|
361
|
+
# (2) the word "unknown" tends to confuse beginning users.
|
362
|
+
i*86 | x86_64)
|
363
|
+
basic_machine=$basic_machine-pc
|
364
|
+
;;
|
365
|
+
# Object if more than one company name word.
|
366
|
+
*-*-*)
|
367
|
+
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
|
368
|
+
exit 1
|
369
|
+
;;
|
370
|
+
# Recognize the basic CPU types with company name.
|
371
|
+
580-* \
|
372
|
+
| a29k-* \
|
373
|
+
| aarch64-* | aarch64_be-* \
|
374
|
+
| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
|
375
|
+
| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
|
376
|
+
| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
|
377
|
+
| arm-* | armbe-* | armle-* | armeb-* | armv*-* \
|
378
|
+
| avr-* | avr32-* \
|
379
|
+
| be32-* | be64-* \
|
380
|
+
| bfin-* | bs2000-* \
|
381
|
+
| c[123]* | c30-* | [cjt]90-* | c4x-* \
|
382
|
+
| c8051-* | clipper-* | craynv-* | cydra-* \
|
383
|
+
| d10v-* | d30v-* | dlx-* \
|
384
|
+
| elxsi-* \
|
385
|
+
| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
|
386
|
+
| h8300-* | h8500-* \
|
387
|
+
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
|
388
|
+
| hexagon-* \
|
389
|
+
| i*86-* | i860-* | i960-* | ia64-* \
|
390
|
+
| ip2k-* | iq2000-* \
|
391
|
+
| k1om-* \
|
392
|
+
| le32-* | le64-* \
|
393
|
+
| lm32-* \
|
394
|
+
| m32c-* | m32r-* | m32rle-* \
|
395
|
+
| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
|
396
|
+
| m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
|
397
|
+
| microblaze-* | microblazeel-* \
|
398
|
+
| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
|
399
|
+
| mips16-* \
|
400
|
+
| mips64-* | mips64el-* \
|
401
|
+
| mips64octeon-* | mips64octeonel-* \
|
402
|
+
| mips64orion-* | mips64orionel-* \
|
403
|
+
| mips64r5900-* | mips64r5900el-* \
|
404
|
+
| mips64vr-* | mips64vrel-* \
|
405
|
+
| mips64vr4100-* | mips64vr4100el-* \
|
406
|
+
| mips64vr4300-* | mips64vr4300el-* \
|
407
|
+
| mips64vr5000-* | mips64vr5000el-* \
|
408
|
+
| mips64vr5900-* | mips64vr5900el-* \
|
409
|
+
| mipsisa32-* | mipsisa32el-* \
|
410
|
+
| mipsisa32r2-* | mipsisa32r2el-* \
|
411
|
+
| mipsisa32r6-* | mipsisa32r6el-* \
|
412
|
+
| mipsisa64-* | mipsisa64el-* \
|
413
|
+
| mipsisa64r2-* | mipsisa64r2el-* \
|
414
|
+
| mipsisa64r6-* | mipsisa64r6el-* \
|
415
|
+
| mipsisa64sb1-* | mipsisa64sb1el-* \
|
416
|
+
| mipsisa64sr71k-* | mipsisa64sr71kel-* \
|
417
|
+
| mipsr5900-* | mipsr5900el-* \
|
418
|
+
| mipstx39-* | mipstx39el-* \
|
419
|
+
| mmix-* \
|
420
|
+
| mt-* \
|
421
|
+
| msp430-* \
|
422
|
+
| nds32-* | nds32le-* | nds32be-* \
|
423
|
+
| nios-* | nios2-* | nios2eb-* | nios2el-* \
|
424
|
+
| none-* | np1-* | ns16k-* | ns32k-* \
|
425
|
+
| open8-* \
|
426
|
+
| or1k*-* \
|
427
|
+
| orion-* \
|
428
|
+
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
429
|
+
| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
|
430
|
+
| pyramid-* \
|
431
|
+
| rl78-* | romp-* | rs6000-* | rx-* \
|
432
|
+
| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
|
433
|
+
| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
|
434
|
+
| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
|
435
|
+
| sparclite-* \
|
436
|
+
| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
|
437
|
+
| tahoe-* \
|
438
|
+
| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
|
439
|
+
| tile*-* \
|
440
|
+
| tron-* \
|
441
|
+
| ubicom32-* \
|
442
|
+
| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
|
443
|
+
| vax-* \
|
444
|
+
| visium-* \
|
445
|
+
| we32k-* \
|
446
|
+
| x86-* | x86_64-* | xc16x-* | xps100-* \
|
447
|
+
| xstormy16-* | xtensa*-* \
|
448
|
+
| ymp-* \
|
449
|
+
| z8k-* | z80-*)
|
450
|
+
;;
|
451
|
+
# Recognize the basic CPU types without company name, with glob match.
|
452
|
+
xtensa*)
|
453
|
+
basic_machine=$basic_machine-unknown
|
454
|
+
;;
|
455
|
+
# Recognize the various machine names and aliases which stand
|
456
|
+
# for a CPU type and a company and sometimes even an OS.
|
457
|
+
386bsd)
|
458
|
+
basic_machine=i386-unknown
|
459
|
+
os=-bsd
|
460
|
+
;;
|
461
|
+
3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
|
462
|
+
basic_machine=m68000-att
|
463
|
+
;;
|
464
|
+
3b*)
|
465
|
+
basic_machine=we32k-att
|
466
|
+
;;
|
467
|
+
a29khif)
|
468
|
+
basic_machine=a29k-amd
|
469
|
+
os=-udi
|
470
|
+
;;
|
471
|
+
abacus)
|
472
|
+
basic_machine=abacus-unknown
|
473
|
+
;;
|
474
|
+
adobe68k)
|
475
|
+
basic_machine=m68010-adobe
|
476
|
+
os=-scout
|
477
|
+
;;
|
478
|
+
alliant | fx80)
|
479
|
+
basic_machine=fx80-alliant
|
480
|
+
;;
|
481
|
+
altos | altos3068)
|
482
|
+
basic_machine=m68k-altos
|
483
|
+
;;
|
484
|
+
am29k)
|
485
|
+
basic_machine=a29k-none
|
486
|
+
os=-bsd
|
487
|
+
;;
|
488
|
+
amd64)
|
489
|
+
basic_machine=x86_64-pc
|
490
|
+
;;
|
491
|
+
amd64-*)
|
492
|
+
basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
|
493
|
+
;;
|
494
|
+
amdahl)
|
495
|
+
basic_machine=580-amdahl
|
496
|
+
os=-sysv
|
497
|
+
;;
|
498
|
+
amiga | amiga-*)
|
499
|
+
basic_machine=m68k-unknown
|
500
|
+
;;
|
501
|
+
amigaos | amigados)
|
502
|
+
basic_machine=m68k-unknown
|
503
|
+
os=-amigaos
|
504
|
+
;;
|
505
|
+
amigaunix | amix)
|
506
|
+
basic_machine=m68k-unknown
|
507
|
+
os=-sysv4
|
508
|
+
;;
|
509
|
+
apollo68)
|
510
|
+
basic_machine=m68k-apollo
|
511
|
+
os=-sysv
|
512
|
+
;;
|
513
|
+
apollo68bsd)
|
514
|
+
basic_machine=m68k-apollo
|
515
|
+
os=-bsd
|
516
|
+
;;
|
517
|
+
aros)
|
518
|
+
basic_machine=i386-pc
|
519
|
+
os=-aros
|
520
|
+
;;
|
521
|
+
aux)
|
522
|
+
basic_machine=m68k-apple
|
523
|
+
os=-aux
|
524
|
+
;;
|
525
|
+
balance)
|
526
|
+
basic_machine=ns32k-sequent
|
527
|
+
os=-dynix
|
528
|
+
;;
|
529
|
+
blackfin)
|
530
|
+
basic_machine=bfin-unknown
|
531
|
+
os=-linux
|
532
|
+
;;
|
533
|
+
blackfin-*)
|
534
|
+
basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
|
535
|
+
os=-linux
|
536
|
+
;;
|
537
|
+
bluegene*)
|
538
|
+
basic_machine=powerpc-ibm
|
539
|
+
os=-cnk
|
540
|
+
;;
|
541
|
+
c54x-*)
|
542
|
+
basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
|
543
|
+
;;
|
544
|
+
c55x-*)
|
545
|
+
basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
|
546
|
+
;;
|
547
|
+
c6x-*)
|
548
|
+
basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
|
549
|
+
;;
|
550
|
+
c90)
|
551
|
+
basic_machine=c90-cray
|
552
|
+
os=-unicos
|
553
|
+
;;
|
554
|
+
cegcc)
|
555
|
+
basic_machine=arm-unknown
|
556
|
+
os=-cegcc
|
557
|
+
;;
|
558
|
+
convex-c1)
|
559
|
+
basic_machine=c1-convex
|
560
|
+
os=-bsd
|
561
|
+
;;
|
562
|
+
convex-c2)
|
563
|
+
basic_machine=c2-convex
|
564
|
+
os=-bsd
|
565
|
+
;;
|
566
|
+
convex-c32)
|
567
|
+
basic_machine=c32-convex
|
568
|
+
os=-bsd
|
569
|
+
;;
|
570
|
+
convex-c34)
|
571
|
+
basic_machine=c34-convex
|
572
|
+
os=-bsd
|
573
|
+
;;
|
574
|
+
convex-c38)
|
575
|
+
basic_machine=c38-convex
|
576
|
+
os=-bsd
|
577
|
+
;;
|
578
|
+
cray | j90)
|
579
|
+
basic_machine=j90-cray
|
580
|
+
os=-unicos
|
581
|
+
;;
|
582
|
+
craynv)
|
583
|
+
basic_machine=craynv-cray
|
584
|
+
os=-unicosmp
|
585
|
+
;;
|
586
|
+
cr16 | cr16-*)
|
587
|
+
basic_machine=cr16-unknown
|
588
|
+
os=-elf
|
589
|
+
;;
|
590
|
+
crds | unos)
|
591
|
+
basic_machine=m68k-crds
|
592
|
+
;;
|
593
|
+
crisv32 | crisv32-* | etraxfs*)
|
594
|
+
basic_machine=crisv32-axis
|
595
|
+
;;
|
596
|
+
cris | cris-* | etrax*)
|
597
|
+
basic_machine=cris-axis
|
598
|
+
;;
|
599
|
+
crx)
|
600
|
+
basic_machine=crx-unknown
|
601
|
+
os=-elf
|
602
|
+
;;
|
603
|
+
da30 | da30-*)
|
604
|
+
basic_machine=m68k-da30
|
605
|
+
;;
|
606
|
+
decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
|
607
|
+
basic_machine=mips-dec
|
608
|
+
;;
|
609
|
+
decsystem10* | dec10*)
|
610
|
+
basic_machine=pdp10-dec
|
611
|
+
os=-tops10
|
612
|
+
;;
|
613
|
+
decsystem20* | dec20*)
|
614
|
+
basic_machine=pdp10-dec
|
615
|
+
os=-tops20
|
616
|
+
;;
|
617
|
+
delta | 3300 | motorola-3300 | motorola-delta \
|
618
|
+
| 3300-motorola | delta-motorola)
|
619
|
+
basic_machine=m68k-motorola
|
620
|
+
;;
|
621
|
+
delta88)
|
622
|
+
basic_machine=m88k-motorola
|
623
|
+
os=-sysv3
|
624
|
+
;;
|
625
|
+
dicos)
|
626
|
+
basic_machine=i686-pc
|
627
|
+
os=-dicos
|
628
|
+
;;
|
629
|
+
djgpp)
|
630
|
+
basic_machine=i586-pc
|
631
|
+
os=-msdosdjgpp
|
632
|
+
;;
|
633
|
+
dpx20 | dpx20-*)
|
634
|
+
basic_machine=rs6000-bull
|
635
|
+
os=-bosx
|
636
|
+
;;
|
637
|
+
dpx2* | dpx2*-bull)
|
638
|
+
basic_machine=m68k-bull
|
639
|
+
os=-sysv3
|
640
|
+
;;
|
641
|
+
ebmon29k)
|
642
|
+
basic_machine=a29k-amd
|
643
|
+
os=-ebmon
|
644
|
+
;;
|
645
|
+
elxsi)
|
646
|
+
basic_machine=elxsi-elxsi
|
647
|
+
os=-bsd
|
648
|
+
;;
|
649
|
+
encore | umax | mmax)
|
650
|
+
basic_machine=ns32k-encore
|
651
|
+
;;
|
652
|
+
es1800 | OSE68k | ose68k | ose | OSE)
|
653
|
+
basic_machine=m68k-ericsson
|
654
|
+
os=-ose
|
655
|
+
;;
|
656
|
+
fx2800)
|
657
|
+
basic_machine=i860-alliant
|
658
|
+
;;
|
659
|
+
genix)
|
660
|
+
basic_machine=ns32k-ns
|
661
|
+
;;
|
662
|
+
gmicro)
|
663
|
+
basic_machine=tron-gmicro
|
664
|
+
os=-sysv
|
665
|
+
;;
|
666
|
+
go32)
|
667
|
+
basic_machine=i386-pc
|
668
|
+
os=-go32
|
669
|
+
;;
|
670
|
+
h3050r* | hiux*)
|
671
|
+
basic_machine=hppa1.1-hitachi
|
672
|
+
os=-hiuxwe2
|
673
|
+
;;
|
674
|
+
h8300hms)
|
675
|
+
basic_machine=h8300-hitachi
|
676
|
+
os=-hms
|
677
|
+
;;
|
678
|
+
h8300xray)
|
679
|
+
basic_machine=h8300-hitachi
|
680
|
+
os=-xray
|
681
|
+
;;
|
682
|
+
h8500hms)
|
683
|
+
basic_machine=h8500-hitachi
|
684
|
+
os=-hms
|
685
|
+
;;
|
686
|
+
harris)
|
687
|
+
basic_machine=m88k-harris
|
688
|
+
os=-sysv3
|
689
|
+
;;
|
690
|
+
hp300-*)
|
691
|
+
basic_machine=m68k-hp
|
692
|
+
;;
|
693
|
+
hp300bsd)
|
694
|
+
basic_machine=m68k-hp
|
695
|
+
os=-bsd
|
696
|
+
;;
|
697
|
+
hp300hpux)
|
698
|
+
basic_machine=m68k-hp
|
699
|
+
os=-hpux
|
700
|
+
;;
|
701
|
+
hp3k9[0-9][0-9] | hp9[0-9][0-9])
|
702
|
+
basic_machine=hppa1.0-hp
|
703
|
+
;;
|
704
|
+
hp9k2[0-9][0-9] | hp9k31[0-9])
|
705
|
+
basic_machine=m68000-hp
|
706
|
+
;;
|
707
|
+
hp9k3[2-9][0-9])
|
708
|
+
basic_machine=m68k-hp
|
709
|
+
;;
|
710
|
+
hp9k6[0-9][0-9] | hp6[0-9][0-9])
|
711
|
+
basic_machine=hppa1.0-hp
|
712
|
+
;;
|
713
|
+
hp9k7[0-79][0-9] | hp7[0-79][0-9])
|
714
|
+
basic_machine=hppa1.1-hp
|
715
|
+
;;
|
716
|
+
hp9k78[0-9] | hp78[0-9])
|
717
|
+
# FIXME: really hppa2.0-hp
|
718
|
+
basic_machine=hppa1.1-hp
|
719
|
+
;;
|
720
|
+
hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
|
721
|
+
# FIXME: really hppa2.0-hp
|
722
|
+
basic_machine=hppa1.1-hp
|
723
|
+
;;
|
724
|
+
hp9k8[0-9][13679] | hp8[0-9][13679])
|
725
|
+
basic_machine=hppa1.1-hp
|
726
|
+
;;
|
727
|
+
hp9k8[0-9][0-9] | hp8[0-9][0-9])
|
728
|
+
basic_machine=hppa1.0-hp
|
729
|
+
;;
|
730
|
+
hppa-next)
|
731
|
+
os=-nextstep3
|
732
|
+
;;
|
733
|
+
hppaosf)
|
734
|
+
basic_machine=hppa1.1-hp
|
735
|
+
os=-osf
|
736
|
+
;;
|
737
|
+
hppro)
|
738
|
+
basic_machine=hppa1.1-hp
|
739
|
+
os=-proelf
|
740
|
+
;;
|
741
|
+
i370-ibm* | ibm*)
|
742
|
+
basic_machine=i370-ibm
|
743
|
+
;;
|
744
|
+
i*86v32)
|
745
|
+
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
746
|
+
os=-sysv32
|
747
|
+
;;
|
748
|
+
i*86v4*)
|
749
|
+
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
750
|
+
os=-sysv4
|
751
|
+
;;
|
752
|
+
i*86v)
|
753
|
+
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
754
|
+
os=-sysv
|
755
|
+
;;
|
756
|
+
i*86sol2)
|
757
|
+
basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
|
758
|
+
os=-solaris2
|
759
|
+
;;
|
760
|
+
i386mach)
|
761
|
+
basic_machine=i386-mach
|
762
|
+
os=-mach
|
763
|
+
;;
|
764
|
+
i386-vsta | vsta)
|
765
|
+
basic_machine=i386-unknown
|
766
|
+
os=-vsta
|
767
|
+
;;
|
768
|
+
iris | iris4d)
|
769
|
+
basic_machine=mips-sgi
|
770
|
+
case $os in
|
771
|
+
-irix*)
|
772
|
+
;;
|
773
|
+
*)
|
774
|
+
os=-irix4
|
775
|
+
;;
|
776
|
+
esac
|
777
|
+
;;
|
778
|
+
isi68 | isi)
|
779
|
+
basic_machine=m68k-isi
|
780
|
+
os=-sysv
|
781
|
+
;;
|
782
|
+
leon-*|leon[3-9]-*)
|
783
|
+
basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
|
784
|
+
;;
|
785
|
+
m68knommu)
|
786
|
+
basic_machine=m68k-unknown
|
787
|
+
os=-linux
|
788
|
+
;;
|
789
|
+
m68knommu-*)
|
790
|
+
basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
|
791
|
+
os=-linux
|
792
|
+
;;
|
793
|
+
m88k-omron*)
|
794
|
+
basic_machine=m88k-omron
|
795
|
+
;;
|
796
|
+
magnum | m3230)
|
797
|
+
basic_machine=mips-mips
|
798
|
+
os=-sysv
|
799
|
+
;;
|
800
|
+
merlin)
|
801
|
+
basic_machine=ns32k-utek
|
802
|
+
os=-sysv
|
803
|
+
;;
|
804
|
+
microblaze*)
|
805
|
+
basic_machine=microblaze-xilinx
|
806
|
+
;;
|
807
|
+
mingw64)
|
808
|
+
basic_machine=x86_64-pc
|
809
|
+
os=-mingw64
|
810
|
+
;;
|
811
|
+
mingw32)
|
812
|
+
basic_machine=i686-pc
|
813
|
+
os=-mingw32
|
814
|
+
;;
|
815
|
+
mingw32ce)
|
816
|
+
basic_machine=arm-unknown
|
817
|
+
os=-mingw32ce
|
818
|
+
;;
|
819
|
+
miniframe)
|
820
|
+
basic_machine=m68000-convergent
|
821
|
+
;;
|
822
|
+
*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
|
823
|
+
basic_machine=m68k-atari
|
824
|
+
os=-mint
|
825
|
+
;;
|
826
|
+
mips3*-*)
|
827
|
+
basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
|
828
|
+
;;
|
829
|
+
mips3*)
|
830
|
+
basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
|
831
|
+
;;
|
832
|
+
monitor)
|
833
|
+
basic_machine=m68k-rom68k
|
834
|
+
os=-coff
|
835
|
+
;;
|
836
|
+
morphos)
|
837
|
+
basic_machine=powerpc-unknown
|
838
|
+
os=-morphos
|
839
|
+
;;
|
840
|
+
moxiebox)
|
841
|
+
basic_machine=moxie-unknown
|
842
|
+
os=-moxiebox
|
843
|
+
;;
|
844
|
+
msdos)
|
845
|
+
basic_machine=i386-pc
|
846
|
+
os=-msdos
|
847
|
+
;;
|
848
|
+
ms1-*)
|
849
|
+
basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
|
850
|
+
;;
|
851
|
+
msys)
|
852
|
+
basic_machine=i686-pc
|
853
|
+
os=-msys
|
854
|
+
;;
|
855
|
+
mvs)
|
856
|
+
basic_machine=i370-ibm
|
857
|
+
os=-mvs
|
858
|
+
;;
|
859
|
+
nacl)
|
860
|
+
basic_machine=le32-unknown
|
861
|
+
os=-nacl
|
862
|
+
;;
|
863
|
+
ncr3000)
|
864
|
+
basic_machine=i486-ncr
|
865
|
+
os=-sysv4
|
866
|
+
;;
|
867
|
+
netbsd386)
|
868
|
+
basic_machine=i386-unknown
|
869
|
+
os=-netbsd
|
870
|
+
;;
|
871
|
+
netwinder)
|
872
|
+
basic_machine=armv4l-rebel
|
873
|
+
os=-linux
|
874
|
+
;;
|
875
|
+
news | news700 | news800 | news900)
|
876
|
+
basic_machine=m68k-sony
|
877
|
+
os=-newsos
|
878
|
+
;;
|
879
|
+
news1000)
|
880
|
+
basic_machine=m68030-sony
|
881
|
+
os=-newsos
|
882
|
+
;;
|
883
|
+
news-3600 | risc-news)
|
884
|
+
basic_machine=mips-sony
|
885
|
+
os=-newsos
|
886
|
+
;;
|
887
|
+
necv70)
|
888
|
+
basic_machine=v70-nec
|
889
|
+
os=-sysv
|
890
|
+
;;
|
891
|
+
next | m*-next )
|
892
|
+
basic_machine=m68k-next
|
893
|
+
case $os in
|
894
|
+
-nextstep* )
|
895
|
+
;;
|
896
|
+
-ns2*)
|
897
|
+
os=-nextstep2
|
898
|
+
;;
|
899
|
+
*)
|
900
|
+
os=-nextstep3
|
901
|
+
;;
|
902
|
+
esac
|
903
|
+
;;
|
904
|
+
nh3000)
|
905
|
+
basic_machine=m68k-harris
|
906
|
+
os=-cxux
|
907
|
+
;;
|
908
|
+
nh[45]000)
|
909
|
+
basic_machine=m88k-harris
|
910
|
+
os=-cxux
|
911
|
+
;;
|
912
|
+
nindy960)
|
913
|
+
basic_machine=i960-intel
|
914
|
+
os=-nindy
|
915
|
+
;;
|
916
|
+
mon960)
|
917
|
+
basic_machine=i960-intel
|
918
|
+
os=-mon960
|
919
|
+
;;
|
920
|
+
nonstopux)
|
921
|
+
basic_machine=mips-compaq
|
922
|
+
os=-nonstopux
|
923
|
+
;;
|
924
|
+
np1)
|
925
|
+
basic_machine=np1-gould
|
926
|
+
;;
|
927
|
+
neo-tandem)
|
928
|
+
basic_machine=neo-tandem
|
929
|
+
;;
|
930
|
+
nse-tandem)
|
931
|
+
basic_machine=nse-tandem
|
932
|
+
;;
|
933
|
+
nsr-tandem)
|
934
|
+
basic_machine=nsr-tandem
|
935
|
+
;;
|
936
|
+
op50n-* | op60c-*)
|
937
|
+
basic_machine=hppa1.1-oki
|
938
|
+
os=-proelf
|
939
|
+
;;
|
940
|
+
openrisc | openrisc-*)
|
941
|
+
basic_machine=or32-unknown
|
942
|
+
;;
|
943
|
+
os400)
|
944
|
+
basic_machine=powerpc-ibm
|
945
|
+
os=-os400
|
946
|
+
;;
|
947
|
+
OSE68000 | ose68000)
|
948
|
+
basic_machine=m68000-ericsson
|
949
|
+
os=-ose
|
950
|
+
;;
|
951
|
+
os68k)
|
952
|
+
basic_machine=m68k-none
|
953
|
+
os=-os68k
|
954
|
+
;;
|
955
|
+
pa-hitachi)
|
956
|
+
basic_machine=hppa1.1-hitachi
|
957
|
+
os=-hiuxwe2
|
958
|
+
;;
|
959
|
+
paragon)
|
960
|
+
basic_machine=i860-intel
|
961
|
+
os=-osf
|
962
|
+
;;
|
963
|
+
parisc)
|
964
|
+
basic_machine=hppa-unknown
|
965
|
+
os=-linux
|
966
|
+
;;
|
967
|
+
parisc-*)
|
968
|
+
basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
|
969
|
+
os=-linux
|
970
|
+
;;
|
971
|
+
pbd)
|
972
|
+
basic_machine=sparc-tti
|
973
|
+
;;
|
974
|
+
pbb)
|
975
|
+
basic_machine=m68k-tti
|
976
|
+
;;
|
977
|
+
pc532 | pc532-*)
|
978
|
+
basic_machine=ns32k-pc532
|
979
|
+
;;
|
980
|
+
pc98)
|
981
|
+
basic_machine=i386-pc
|
982
|
+
;;
|
983
|
+
pc98-*)
|
984
|
+
basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
|
985
|
+
;;
|
986
|
+
pentium | p5 | k5 | k6 | nexgen | viac3)
|
987
|
+
basic_machine=i586-pc
|
988
|
+
;;
|
989
|
+
pentiumpro | p6 | 6x86 | athlon | athlon_*)
|
990
|
+
basic_machine=i686-pc
|
991
|
+
;;
|
992
|
+
pentiumii | pentium2 | pentiumiii | pentium3)
|
993
|
+
basic_machine=i686-pc
|
994
|
+
;;
|
995
|
+
pentium4)
|
996
|
+
basic_machine=i786-pc
|
997
|
+
;;
|
998
|
+
pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
|
999
|
+
basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1000
|
+
;;
|
1001
|
+
pentiumpro-* | p6-* | 6x86-* | athlon-*)
|
1002
|
+
basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1003
|
+
;;
|
1004
|
+
pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
|
1005
|
+
basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1006
|
+
;;
|
1007
|
+
pentium4-*)
|
1008
|
+
basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1009
|
+
;;
|
1010
|
+
pn)
|
1011
|
+
basic_machine=pn-gould
|
1012
|
+
;;
|
1013
|
+
power) basic_machine=power-ibm
|
1014
|
+
;;
|
1015
|
+
ppc | ppcbe) basic_machine=powerpc-unknown
|
1016
|
+
;;
|
1017
|
+
ppc-* | ppcbe-*)
|
1018
|
+
basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1019
|
+
;;
|
1020
|
+
ppcle | powerpclittle | ppc-le | powerpc-little)
|
1021
|
+
basic_machine=powerpcle-unknown
|
1022
|
+
;;
|
1023
|
+
ppcle-* | powerpclittle-*)
|
1024
|
+
basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1025
|
+
;;
|
1026
|
+
ppc64) basic_machine=powerpc64-unknown
|
1027
|
+
;;
|
1028
|
+
ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1029
|
+
;;
|
1030
|
+
ppc64le | powerpc64little | ppc64-le | powerpc64-little)
|
1031
|
+
basic_machine=powerpc64le-unknown
|
1032
|
+
;;
|
1033
|
+
ppc64le-* | powerpc64little-*)
|
1034
|
+
basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1035
|
+
;;
|
1036
|
+
ps2)
|
1037
|
+
basic_machine=i386-ibm
|
1038
|
+
;;
|
1039
|
+
pw32)
|
1040
|
+
basic_machine=i586-unknown
|
1041
|
+
os=-pw32
|
1042
|
+
;;
|
1043
|
+
rdos | rdos64)
|
1044
|
+
basic_machine=x86_64-pc
|
1045
|
+
os=-rdos
|
1046
|
+
;;
|
1047
|
+
rdos32)
|
1048
|
+
basic_machine=i386-pc
|
1049
|
+
os=-rdos
|
1050
|
+
;;
|
1051
|
+
rom68k)
|
1052
|
+
basic_machine=m68k-rom68k
|
1053
|
+
os=-coff
|
1054
|
+
;;
|
1055
|
+
rm[46]00)
|
1056
|
+
basic_machine=mips-siemens
|
1057
|
+
;;
|
1058
|
+
rtpc | rtpc-*)
|
1059
|
+
basic_machine=romp-ibm
|
1060
|
+
;;
|
1061
|
+
s390 | s390-*)
|
1062
|
+
basic_machine=s390-ibm
|
1063
|
+
;;
|
1064
|
+
s390x | s390x-*)
|
1065
|
+
basic_machine=s390x-ibm
|
1066
|
+
;;
|
1067
|
+
sa29200)
|
1068
|
+
basic_machine=a29k-amd
|
1069
|
+
os=-udi
|
1070
|
+
;;
|
1071
|
+
sb1)
|
1072
|
+
basic_machine=mipsisa64sb1-unknown
|
1073
|
+
;;
|
1074
|
+
sb1el)
|
1075
|
+
basic_machine=mipsisa64sb1el-unknown
|
1076
|
+
;;
|
1077
|
+
sde)
|
1078
|
+
basic_machine=mipsisa32-sde
|
1079
|
+
os=-elf
|
1080
|
+
;;
|
1081
|
+
sei)
|
1082
|
+
basic_machine=mips-sei
|
1083
|
+
os=-seiux
|
1084
|
+
;;
|
1085
|
+
sequent)
|
1086
|
+
basic_machine=i386-sequent
|
1087
|
+
;;
|
1088
|
+
sh)
|
1089
|
+
basic_machine=sh-hitachi
|
1090
|
+
os=-hms
|
1091
|
+
;;
|
1092
|
+
sh5el)
|
1093
|
+
basic_machine=sh5le-unknown
|
1094
|
+
;;
|
1095
|
+
sh64)
|
1096
|
+
basic_machine=sh64-unknown
|
1097
|
+
;;
|
1098
|
+
sparclite-wrs | simso-wrs)
|
1099
|
+
basic_machine=sparclite-wrs
|
1100
|
+
os=-vxworks
|
1101
|
+
;;
|
1102
|
+
sps7)
|
1103
|
+
basic_machine=m68k-bull
|
1104
|
+
os=-sysv2
|
1105
|
+
;;
|
1106
|
+
spur)
|
1107
|
+
basic_machine=spur-unknown
|
1108
|
+
;;
|
1109
|
+
st2000)
|
1110
|
+
basic_machine=m68k-tandem
|
1111
|
+
;;
|
1112
|
+
stratus)
|
1113
|
+
basic_machine=i860-stratus
|
1114
|
+
os=-sysv4
|
1115
|
+
;;
|
1116
|
+
strongarm-* | thumb-*)
|
1117
|
+
basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
|
1118
|
+
;;
|
1119
|
+
sun2)
|
1120
|
+
basic_machine=m68000-sun
|
1121
|
+
;;
|
1122
|
+
sun2os3)
|
1123
|
+
basic_machine=m68000-sun
|
1124
|
+
os=-sunos3
|
1125
|
+
;;
|
1126
|
+
sun2os4)
|
1127
|
+
basic_machine=m68000-sun
|
1128
|
+
os=-sunos4
|
1129
|
+
;;
|
1130
|
+
sun3os3)
|
1131
|
+
basic_machine=m68k-sun
|
1132
|
+
os=-sunos3
|
1133
|
+
;;
|
1134
|
+
sun3os4)
|
1135
|
+
basic_machine=m68k-sun
|
1136
|
+
os=-sunos4
|
1137
|
+
;;
|
1138
|
+
sun4os3)
|
1139
|
+
basic_machine=sparc-sun
|
1140
|
+
os=-sunos3
|
1141
|
+
;;
|
1142
|
+
sun4os4)
|
1143
|
+
basic_machine=sparc-sun
|
1144
|
+
os=-sunos4
|
1145
|
+
;;
|
1146
|
+
sun4sol2)
|
1147
|
+
basic_machine=sparc-sun
|
1148
|
+
os=-solaris2
|
1149
|
+
;;
|
1150
|
+
sun3 | sun3-*)
|
1151
|
+
basic_machine=m68k-sun
|
1152
|
+
;;
|
1153
|
+
sun4)
|
1154
|
+
basic_machine=sparc-sun
|
1155
|
+
;;
|
1156
|
+
sun386 | sun386i | roadrunner)
|
1157
|
+
basic_machine=i386-sun
|
1158
|
+
;;
|
1159
|
+
sv1)
|
1160
|
+
basic_machine=sv1-cray
|
1161
|
+
os=-unicos
|
1162
|
+
;;
|
1163
|
+
symmetry)
|
1164
|
+
basic_machine=i386-sequent
|
1165
|
+
os=-dynix
|
1166
|
+
;;
|
1167
|
+
t3e)
|
1168
|
+
basic_machine=alphaev5-cray
|
1169
|
+
os=-unicos
|
1170
|
+
;;
|
1171
|
+
t90)
|
1172
|
+
basic_machine=t90-cray
|
1173
|
+
os=-unicos
|
1174
|
+
;;
|
1175
|
+
tile*)
|
1176
|
+
basic_machine=$basic_machine-unknown
|
1177
|
+
os=-linux-gnu
|
1178
|
+
;;
|
1179
|
+
tx39)
|
1180
|
+
basic_machine=mipstx39-unknown
|
1181
|
+
;;
|
1182
|
+
tx39el)
|
1183
|
+
basic_machine=mipstx39el-unknown
|
1184
|
+
;;
|
1185
|
+
toad1)
|
1186
|
+
basic_machine=pdp10-xkl
|
1187
|
+
os=-tops20
|
1188
|
+
;;
|
1189
|
+
tower | tower-32)
|
1190
|
+
basic_machine=m68k-ncr
|
1191
|
+
;;
|
1192
|
+
tpf)
|
1193
|
+
basic_machine=s390x-ibm
|
1194
|
+
os=-tpf
|
1195
|
+
;;
|
1196
|
+
udi29k)
|
1197
|
+
basic_machine=a29k-amd
|
1198
|
+
os=-udi
|
1199
|
+
;;
|
1200
|
+
ultra3)
|
1201
|
+
basic_machine=a29k-nyu
|
1202
|
+
os=-sym1
|
1203
|
+
;;
|
1204
|
+
v810 | necv810)
|
1205
|
+
basic_machine=v810-nec
|
1206
|
+
os=-none
|
1207
|
+
;;
|
1208
|
+
vaxv)
|
1209
|
+
basic_machine=vax-dec
|
1210
|
+
os=-sysv
|
1211
|
+
;;
|
1212
|
+
vms)
|
1213
|
+
basic_machine=vax-dec
|
1214
|
+
os=-vms
|
1215
|
+
;;
|
1216
|
+
vpp*|vx|vx-*)
|
1217
|
+
basic_machine=f301-fujitsu
|
1218
|
+
;;
|
1219
|
+
vxworks960)
|
1220
|
+
basic_machine=i960-wrs
|
1221
|
+
os=-vxworks
|
1222
|
+
;;
|
1223
|
+
vxworks68)
|
1224
|
+
basic_machine=m68k-wrs
|
1225
|
+
os=-vxworks
|
1226
|
+
;;
|
1227
|
+
vxworks29k)
|
1228
|
+
basic_machine=a29k-wrs
|
1229
|
+
os=-vxworks
|
1230
|
+
;;
|
1231
|
+
w65*)
|
1232
|
+
basic_machine=w65-wdc
|
1233
|
+
os=-none
|
1234
|
+
;;
|
1235
|
+
w89k-*)
|
1236
|
+
basic_machine=hppa1.1-winbond
|
1237
|
+
os=-proelf
|
1238
|
+
;;
|
1239
|
+
xbox)
|
1240
|
+
basic_machine=i686-pc
|
1241
|
+
os=-mingw32
|
1242
|
+
;;
|
1243
|
+
xps | xps100)
|
1244
|
+
basic_machine=xps100-honeywell
|
1245
|
+
;;
|
1246
|
+
xscale-* | xscalee[bl]-*)
|
1247
|
+
basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
|
1248
|
+
;;
|
1249
|
+
ymp)
|
1250
|
+
basic_machine=ymp-cray
|
1251
|
+
os=-unicos
|
1252
|
+
;;
|
1253
|
+
z8k-*-coff)
|
1254
|
+
basic_machine=z8k-unknown
|
1255
|
+
os=-sim
|
1256
|
+
;;
|
1257
|
+
z80-*-coff)
|
1258
|
+
basic_machine=z80-unknown
|
1259
|
+
os=-sim
|
1260
|
+
;;
|
1261
|
+
none)
|
1262
|
+
basic_machine=none-none
|
1263
|
+
os=-none
|
1264
|
+
;;
|
1265
|
+
|
1266
|
+
# Here we handle the default manufacturer of certain CPU types. It is in
|
1267
|
+
# some cases the only manufacturer, in others, it is the most popular.
|
1268
|
+
w89k)
|
1269
|
+
basic_machine=hppa1.1-winbond
|
1270
|
+
;;
|
1271
|
+
op50n)
|
1272
|
+
basic_machine=hppa1.1-oki
|
1273
|
+
;;
|
1274
|
+
op60c)
|
1275
|
+
basic_machine=hppa1.1-oki
|
1276
|
+
;;
|
1277
|
+
romp)
|
1278
|
+
basic_machine=romp-ibm
|
1279
|
+
;;
|
1280
|
+
mmix)
|
1281
|
+
basic_machine=mmix-knuth
|
1282
|
+
;;
|
1283
|
+
rs6000)
|
1284
|
+
basic_machine=rs6000-ibm
|
1285
|
+
;;
|
1286
|
+
vax)
|
1287
|
+
basic_machine=vax-dec
|
1288
|
+
;;
|
1289
|
+
pdp10)
|
1290
|
+
# there are many clones, so DEC is not a safe bet
|
1291
|
+
basic_machine=pdp10-unknown
|
1292
|
+
;;
|
1293
|
+
pdp11)
|
1294
|
+
basic_machine=pdp11-dec
|
1295
|
+
;;
|
1296
|
+
we32k)
|
1297
|
+
basic_machine=we32k-att
|
1298
|
+
;;
|
1299
|
+
sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
|
1300
|
+
basic_machine=sh-unknown
|
1301
|
+
;;
|
1302
|
+
sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
|
1303
|
+
basic_machine=sparc-sun
|
1304
|
+
;;
|
1305
|
+
cydra)
|
1306
|
+
basic_machine=cydra-cydrome
|
1307
|
+
;;
|
1308
|
+
orion)
|
1309
|
+
basic_machine=orion-highlevel
|
1310
|
+
;;
|
1311
|
+
orion105)
|
1312
|
+
basic_machine=clipper-highlevel
|
1313
|
+
;;
|
1314
|
+
mac | mpw | mac-mpw)
|
1315
|
+
basic_machine=m68k-apple
|
1316
|
+
;;
|
1317
|
+
pmac | pmac-mpw)
|
1318
|
+
basic_machine=powerpc-apple
|
1319
|
+
;;
|
1320
|
+
*-unknown)
|
1321
|
+
# Make sure to match an already-canonicalized machine name.
|
1322
|
+
;;
|
1323
|
+
*)
|
1324
|
+
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
|
1325
|
+
exit 1
|
1326
|
+
;;
|
1327
|
+
esac
|
1328
|
+
|
1329
|
+
# Here we canonicalize certain aliases for manufacturers.
|
1330
|
+
case $basic_machine in
|
1331
|
+
*-digital*)
|
1332
|
+
basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
|
1333
|
+
;;
|
1334
|
+
*-commodore*)
|
1335
|
+
basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
|
1336
|
+
;;
|
1337
|
+
*)
|
1338
|
+
;;
|
1339
|
+
esac
|
1340
|
+
|
1341
|
+
# Decode manufacturer-specific aliases for certain operating systems.
|
1342
|
+
|
1343
|
+
if [ x"$os" != x"" ]
|
1344
|
+
then
|
1345
|
+
case $os in
|
1346
|
+
# First match some system type aliases
|
1347
|
+
# that might get confused with valid system types.
|
1348
|
+
# -solaris* is a basic system type, with this one exception.
|
1349
|
+
-auroraux)
|
1350
|
+
os=-auroraux
|
1351
|
+
;;
|
1352
|
+
-solaris1 | -solaris1.*)
|
1353
|
+
os=`echo $os | sed -e 's|solaris1|sunos4|'`
|
1354
|
+
;;
|
1355
|
+
-solaris)
|
1356
|
+
os=-solaris2
|
1357
|
+
;;
|
1358
|
+
-svr4*)
|
1359
|
+
os=-sysv4
|
1360
|
+
;;
|
1361
|
+
-unixware*)
|
1362
|
+
os=-sysv4.2uw
|
1363
|
+
;;
|
1364
|
+
-gnu/linux*)
|
1365
|
+
os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
|
1366
|
+
;;
|
1367
|
+
# First accept the basic system types.
|
1368
|
+
# The portable systems comes first.
|
1369
|
+
# Each alternative MUST END IN A *, to match a version number.
|
1370
|
+
# -sysv* is not here because it comes later, after sysvr4.
|
1371
|
+
-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
|
1372
|
+
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
|
1373
|
+
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
|
1374
|
+
| -sym* | -kopensolaris* | -plan9* \
|
1375
|
+
| -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
|
1376
|
+
| -aos* | -aros* \
|
1377
|
+
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
|
1378
|
+
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
|
1379
|
+
| -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
|
1380
|
+
| -bitrig* | -openbsd* | -solidbsd* \
|
1381
|
+
| -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
|
1382
|
+
| -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
|
1383
|
+
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
|
1384
|
+
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
1385
|
+
| -chorusos* | -chorusrdb* | -cegcc* \
|
1386
|
+
| -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
1387
|
+
| -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
|
1388
|
+
| -linux-newlib* | -linux-musl* | -linux-uclibc* \
|
1389
|
+
| -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
|
1390
|
+
| -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
|
1391
|
+
| -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
|
1392
|
+
| -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
|
1393
|
+
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
1394
|
+
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
1395
|
+
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
1396
|
+
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*)
|
1397
|
+
# Remember, each alternative MUST END IN *, to match a version number.
|
1398
|
+
;;
|
1399
|
+
-qnx*)
|
1400
|
+
case $basic_machine in
|
1401
|
+
x86-* | i*86-*)
|
1402
|
+
;;
|
1403
|
+
*)
|
1404
|
+
os=-nto$os
|
1405
|
+
;;
|
1406
|
+
esac
|
1407
|
+
;;
|
1408
|
+
-nto-qnx*)
|
1409
|
+
;;
|
1410
|
+
-nto*)
|
1411
|
+
os=`echo $os | sed -e 's|nto|nto-qnx|'`
|
1412
|
+
;;
|
1413
|
+
-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
|
1414
|
+
| -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
|
1415
|
+
| -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
|
1416
|
+
;;
|
1417
|
+
-mac*)
|
1418
|
+
os=`echo $os | sed -e 's|mac|macos|'`
|
1419
|
+
;;
|
1420
|
+
-linux-dietlibc)
|
1421
|
+
os=-linux-dietlibc
|
1422
|
+
;;
|
1423
|
+
-linux*)
|
1424
|
+
os=`echo $os | sed -e 's|linux|linux-gnu|'`
|
1425
|
+
;;
|
1426
|
+
-sunos5*)
|
1427
|
+
os=`echo $os | sed -e 's|sunos5|solaris2|'`
|
1428
|
+
;;
|
1429
|
+
-sunos6*)
|
1430
|
+
os=`echo $os | sed -e 's|sunos6|solaris3|'`
|
1431
|
+
;;
|
1432
|
+
-opened*)
|
1433
|
+
os=-openedition
|
1434
|
+
;;
|
1435
|
+
-os400*)
|
1436
|
+
os=-os400
|
1437
|
+
;;
|
1438
|
+
-wince*)
|
1439
|
+
os=-wince
|
1440
|
+
;;
|
1441
|
+
-osfrose*)
|
1442
|
+
os=-osfrose
|
1443
|
+
;;
|
1444
|
+
-osf*)
|
1445
|
+
os=-osf
|
1446
|
+
;;
|
1447
|
+
-utek*)
|
1448
|
+
os=-bsd
|
1449
|
+
;;
|
1450
|
+
-dynix*)
|
1451
|
+
os=-bsd
|
1452
|
+
;;
|
1453
|
+
-acis*)
|
1454
|
+
os=-aos
|
1455
|
+
;;
|
1456
|
+
-atheos*)
|
1457
|
+
os=-atheos
|
1458
|
+
;;
|
1459
|
+
-syllable*)
|
1460
|
+
os=-syllable
|
1461
|
+
;;
|
1462
|
+
-386bsd)
|
1463
|
+
os=-bsd
|
1464
|
+
;;
|
1465
|
+
-ctix* | -uts*)
|
1466
|
+
os=-sysv
|
1467
|
+
;;
|
1468
|
+
-nova*)
|
1469
|
+
os=-rtmk-nova
|
1470
|
+
;;
|
1471
|
+
-ns2 )
|
1472
|
+
os=-nextstep2
|
1473
|
+
;;
|
1474
|
+
-nsk*)
|
1475
|
+
os=-nsk
|
1476
|
+
;;
|
1477
|
+
# Preserve the version number of sinix5.
|
1478
|
+
-sinix5.*)
|
1479
|
+
os=`echo $os | sed -e 's|sinix|sysv|'`
|
1480
|
+
;;
|
1481
|
+
-sinix*)
|
1482
|
+
os=-sysv4
|
1483
|
+
;;
|
1484
|
+
-tpf*)
|
1485
|
+
os=-tpf
|
1486
|
+
;;
|
1487
|
+
-triton*)
|
1488
|
+
os=-sysv3
|
1489
|
+
;;
|
1490
|
+
-oss*)
|
1491
|
+
os=-sysv3
|
1492
|
+
;;
|
1493
|
+
-svr4)
|
1494
|
+
os=-sysv4
|
1495
|
+
;;
|
1496
|
+
-svr3)
|
1497
|
+
os=-sysv3
|
1498
|
+
;;
|
1499
|
+
-sysvr4)
|
1500
|
+
os=-sysv4
|
1501
|
+
;;
|
1502
|
+
# This must come after -sysvr4.
|
1503
|
+
-sysv*)
|
1504
|
+
;;
|
1505
|
+
-ose*)
|
1506
|
+
os=-ose
|
1507
|
+
;;
|
1508
|
+
-es1800*)
|
1509
|
+
os=-ose
|
1510
|
+
;;
|
1511
|
+
-xenix)
|
1512
|
+
os=-xenix
|
1513
|
+
;;
|
1514
|
+
-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
|
1515
|
+
os=-mint
|
1516
|
+
;;
|
1517
|
+
-aros*)
|
1518
|
+
os=-aros
|
1519
|
+
;;
|
1520
|
+
-zvmoe)
|
1521
|
+
os=-zvmoe
|
1522
|
+
;;
|
1523
|
+
-dicos*)
|
1524
|
+
os=-dicos
|
1525
|
+
;;
|
1526
|
+
-nacl*)
|
1527
|
+
;;
|
1528
|
+
-none)
|
1529
|
+
;;
|
1530
|
+
*)
|
1531
|
+
# Get rid of the `-' at the beginning of $os.
|
1532
|
+
os=`echo $os | sed 's/[^-]*-//'`
|
1533
|
+
echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
|
1534
|
+
exit 1
|
1535
|
+
;;
|
1536
|
+
esac
|
1537
|
+
else
|
1538
|
+
|
1539
|
+
# Here we handle the default operating systems that come with various machines.
|
1540
|
+
# The value should be what the vendor currently ships out the door with their
|
1541
|
+
# machine or put another way, the most popular os provided with the machine.
|
1542
|
+
|
1543
|
+
# Note that if you're going to try to match "-MANUFACTURER" here (say,
|
1544
|
+
# "-sun"), then you have to tell the case statement up towards the top
|
1545
|
+
# that MANUFACTURER isn't an operating system. Otherwise, code above
|
1546
|
+
# will signal an error saying that MANUFACTURER isn't an operating
|
1547
|
+
# system, and we'll never get to this point.
|
1548
|
+
|
1549
|
+
case $basic_machine in
|
1550
|
+
score-*)
|
1551
|
+
os=-elf
|
1552
|
+
;;
|
1553
|
+
spu-*)
|
1554
|
+
os=-elf
|
1555
|
+
;;
|
1556
|
+
*-acorn)
|
1557
|
+
os=-riscix1.2
|
1558
|
+
;;
|
1559
|
+
arm*-rebel)
|
1560
|
+
os=-linux
|
1561
|
+
;;
|
1562
|
+
arm*-semi)
|
1563
|
+
os=-aout
|
1564
|
+
;;
|
1565
|
+
c4x-* | tic4x-*)
|
1566
|
+
os=-coff
|
1567
|
+
;;
|
1568
|
+
c8051-*)
|
1569
|
+
os=-elf
|
1570
|
+
;;
|
1571
|
+
hexagon-*)
|
1572
|
+
os=-elf
|
1573
|
+
;;
|
1574
|
+
tic54x-*)
|
1575
|
+
os=-coff
|
1576
|
+
;;
|
1577
|
+
tic55x-*)
|
1578
|
+
os=-coff
|
1579
|
+
;;
|
1580
|
+
tic6x-*)
|
1581
|
+
os=-coff
|
1582
|
+
;;
|
1583
|
+
# This must come before the *-dec entry.
|
1584
|
+
pdp10-*)
|
1585
|
+
os=-tops20
|
1586
|
+
;;
|
1587
|
+
pdp11-*)
|
1588
|
+
os=-none
|
1589
|
+
;;
|
1590
|
+
*-dec | vax-*)
|
1591
|
+
os=-ultrix4.2
|
1592
|
+
;;
|
1593
|
+
m68*-apollo)
|
1594
|
+
os=-domain
|
1595
|
+
;;
|
1596
|
+
i386-sun)
|
1597
|
+
os=-sunos4.0.2
|
1598
|
+
;;
|
1599
|
+
m68000-sun)
|
1600
|
+
os=-sunos3
|
1601
|
+
;;
|
1602
|
+
m68*-cisco)
|
1603
|
+
os=-aout
|
1604
|
+
;;
|
1605
|
+
mep-*)
|
1606
|
+
os=-elf
|
1607
|
+
;;
|
1608
|
+
mips*-cisco)
|
1609
|
+
os=-elf
|
1610
|
+
;;
|
1611
|
+
mips*-*)
|
1612
|
+
os=-elf
|
1613
|
+
;;
|
1614
|
+
or32-*)
|
1615
|
+
os=-coff
|
1616
|
+
;;
|
1617
|
+
*-tti) # must be before sparc entry or we get the wrong os.
|
1618
|
+
os=-sysv3
|
1619
|
+
;;
|
1620
|
+
sparc-* | *-sun)
|
1621
|
+
os=-sunos4.1.1
|
1622
|
+
;;
|
1623
|
+
*-be)
|
1624
|
+
os=-beos
|
1625
|
+
;;
|
1626
|
+
*-haiku)
|
1627
|
+
os=-haiku
|
1628
|
+
;;
|
1629
|
+
*-ibm)
|
1630
|
+
os=-aix
|
1631
|
+
;;
|
1632
|
+
*-knuth)
|
1633
|
+
os=-mmixware
|
1634
|
+
;;
|
1635
|
+
*-wec)
|
1636
|
+
os=-proelf
|
1637
|
+
;;
|
1638
|
+
*-winbond)
|
1639
|
+
os=-proelf
|
1640
|
+
;;
|
1641
|
+
*-oki)
|
1642
|
+
os=-proelf
|
1643
|
+
;;
|
1644
|
+
*-hp)
|
1645
|
+
os=-hpux
|
1646
|
+
;;
|
1647
|
+
*-hitachi)
|
1648
|
+
os=-hiux
|
1649
|
+
;;
|
1650
|
+
i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
|
1651
|
+
os=-sysv
|
1652
|
+
;;
|
1653
|
+
*-cbm)
|
1654
|
+
os=-amigaos
|
1655
|
+
;;
|
1656
|
+
*-dg)
|
1657
|
+
os=-dgux
|
1658
|
+
;;
|
1659
|
+
*-dolphin)
|
1660
|
+
os=-sysv3
|
1661
|
+
;;
|
1662
|
+
m68k-ccur)
|
1663
|
+
os=-rtu
|
1664
|
+
;;
|
1665
|
+
m88k-omron*)
|
1666
|
+
os=-luna
|
1667
|
+
;;
|
1668
|
+
*-next )
|
1669
|
+
os=-nextstep
|
1670
|
+
;;
|
1671
|
+
*-sequent)
|
1672
|
+
os=-ptx
|
1673
|
+
;;
|
1674
|
+
*-crds)
|
1675
|
+
os=-unos
|
1676
|
+
;;
|
1677
|
+
*-ns)
|
1678
|
+
os=-genix
|
1679
|
+
;;
|
1680
|
+
i370-*)
|
1681
|
+
os=-mvs
|
1682
|
+
;;
|
1683
|
+
*-next)
|
1684
|
+
os=-nextstep3
|
1685
|
+
;;
|
1686
|
+
*-gould)
|
1687
|
+
os=-sysv
|
1688
|
+
;;
|
1689
|
+
*-highlevel)
|
1690
|
+
os=-bsd
|
1691
|
+
;;
|
1692
|
+
*-encore)
|
1693
|
+
os=-bsd
|
1694
|
+
;;
|
1695
|
+
*-sgi)
|
1696
|
+
os=-irix
|
1697
|
+
;;
|
1698
|
+
*-siemens)
|
1699
|
+
os=-sysv4
|
1700
|
+
;;
|
1701
|
+
*-masscomp)
|
1702
|
+
os=-rtu
|
1703
|
+
;;
|
1704
|
+
f30[01]-fujitsu | f700-fujitsu)
|
1705
|
+
os=-uxpv
|
1706
|
+
;;
|
1707
|
+
*-rom68k)
|
1708
|
+
os=-coff
|
1709
|
+
;;
|
1710
|
+
*-*bug)
|
1711
|
+
os=-coff
|
1712
|
+
;;
|
1713
|
+
*-apple)
|
1714
|
+
os=-macos
|
1715
|
+
;;
|
1716
|
+
*-atari*)
|
1717
|
+
os=-mint
|
1718
|
+
;;
|
1719
|
+
*)
|
1720
|
+
os=-none
|
1721
|
+
;;
|
1722
|
+
esac
|
1723
|
+
fi
|
1724
|
+
|
1725
|
+
# Here we handle the case where we know the os, and the CPU type, but not the
|
1726
|
+
# manufacturer. We pick the logical manufacturer.
|
1727
|
+
vendor=unknown
|
1728
|
+
case $basic_machine in
|
1729
|
+
*-unknown)
|
1730
|
+
case $os in
|
1731
|
+
-riscix*)
|
1732
|
+
vendor=acorn
|
1733
|
+
;;
|
1734
|
+
-sunos*)
|
1735
|
+
vendor=sun
|
1736
|
+
;;
|
1737
|
+
-cnk*|-aix*)
|
1738
|
+
vendor=ibm
|
1739
|
+
;;
|
1740
|
+
-beos*)
|
1741
|
+
vendor=be
|
1742
|
+
;;
|
1743
|
+
-hpux*)
|
1744
|
+
vendor=hp
|
1745
|
+
;;
|
1746
|
+
-mpeix*)
|
1747
|
+
vendor=hp
|
1748
|
+
;;
|
1749
|
+
-hiux*)
|
1750
|
+
vendor=hitachi
|
1751
|
+
;;
|
1752
|
+
-unos*)
|
1753
|
+
vendor=crds
|
1754
|
+
;;
|
1755
|
+
-dgux*)
|
1756
|
+
vendor=dg
|
1757
|
+
;;
|
1758
|
+
-luna*)
|
1759
|
+
vendor=omron
|
1760
|
+
;;
|
1761
|
+
-genix*)
|
1762
|
+
vendor=ns
|
1763
|
+
;;
|
1764
|
+
-mvs* | -opened*)
|
1765
|
+
vendor=ibm
|
1766
|
+
;;
|
1767
|
+
-os400*)
|
1768
|
+
vendor=ibm
|
1769
|
+
;;
|
1770
|
+
-ptx*)
|
1771
|
+
vendor=sequent
|
1772
|
+
;;
|
1773
|
+
-tpf*)
|
1774
|
+
vendor=ibm
|
1775
|
+
;;
|
1776
|
+
-vxsim* | -vxworks* | -windiss*)
|
1777
|
+
vendor=wrs
|
1778
|
+
;;
|
1779
|
+
-aux*)
|
1780
|
+
vendor=apple
|
1781
|
+
;;
|
1782
|
+
-hms*)
|
1783
|
+
vendor=hitachi
|
1784
|
+
;;
|
1785
|
+
-mpw* | -macos*)
|
1786
|
+
vendor=apple
|
1787
|
+
;;
|
1788
|
+
-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
|
1789
|
+
vendor=atari
|
1790
|
+
;;
|
1791
|
+
-vos*)
|
1792
|
+
vendor=stratus
|
1793
|
+
;;
|
1794
|
+
esac
|
1795
|
+
basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
|
1796
|
+
;;
|
1797
|
+
esac
|
1798
|
+
|
1799
|
+
echo $basic_machine$os
|
1800
|
+
exit
|
1801
|
+
|
1802
|
+
# Local variables:
|
1803
|
+
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
1804
|
+
# time-stamp-start: "timestamp='"
|
1805
|
+
# time-stamp-format: "%:y-%02m-%02d"
|
1806
|
+
# time-stamp-end: "'"
|
1807
|
+
# End:
|