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,3104 @@
|
|
1
|
+
m4trace:/usr/local/share/aclocal/ltargz.m4:74: -1- AC_DEFUN([LT_FUNC_ARGZ], [
|
2
|
+
AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
|
3
|
+
|
4
|
+
AC_CHECK_TYPES([error_t],
|
5
|
+
[],
|
6
|
+
[AC_DEFINE([error_t], [int],
|
7
|
+
[Define to a type to use for 'error_t' if it is not otherwise available.])
|
8
|
+
AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
|
9
|
+
does not typedef error_t.])],
|
10
|
+
[#if defined(HAVE_ARGZ_H)
|
11
|
+
# include <argz.h>
|
12
|
+
#endif])
|
13
|
+
|
14
|
+
LT_ARGZ_H=
|
15
|
+
AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
|
16
|
+
argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
|
17
|
+
|
18
|
+
dnl if have system argz functions, allow forced use of
|
19
|
+
dnl libltdl-supplied implementation (and default to do so
|
20
|
+
dnl on "known bad" systems). Could use a runtime check, but
|
21
|
+
dnl (a) detecting malloc issues is notoriously unreliable
|
22
|
+
dnl (b) only known system that declares argz functions,
|
23
|
+
dnl provides them, yet they are broken, is cygwin
|
24
|
+
dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
|
25
|
+
dnl So, it's more straightforward simply to special case
|
26
|
+
dnl this for known bad systems.
|
27
|
+
AS_IF([test -z "$LT_ARGZ_H"],
|
28
|
+
[AC_CACHE_CHECK(
|
29
|
+
[if argz actually works],
|
30
|
+
[lt_cv_sys_argz_works],
|
31
|
+
[[case $host_os in #(
|
32
|
+
*cygwin*)
|
33
|
+
lt_cv_sys_argz_works=no
|
34
|
+
if test no != "$cross_compiling"; then
|
35
|
+
lt_cv_sys_argz_works="guessing no"
|
36
|
+
else
|
37
|
+
lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
|
38
|
+
save_IFS=$IFS
|
39
|
+
IFS=-.
|
40
|
+
set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
|
41
|
+
IFS=$save_IFS
|
42
|
+
lt_os_major=${2-0}
|
43
|
+
lt_os_minor=${3-0}
|
44
|
+
lt_os_micro=${4-0}
|
45
|
+
if test 1 -lt "$lt_os_major" \
|
46
|
+
|| { test 1 -eq "$lt_os_major" \
|
47
|
+
&& { test 5 -lt "$lt_os_minor" \
|
48
|
+
|| { test 5 -eq "$lt_os_minor" \
|
49
|
+
&& test 24 -lt "$lt_os_micro"; }; }; }; then
|
50
|
+
lt_cv_sys_argz_works=yes
|
51
|
+
fi
|
52
|
+
fi
|
53
|
+
;; #(
|
54
|
+
*) lt_cv_sys_argz_works=yes ;;
|
55
|
+
esac]])
|
56
|
+
AS_IF([test yes = "$lt_cv_sys_argz_works"],
|
57
|
+
[AC_DEFINE([HAVE_WORKING_ARGZ], 1,
|
58
|
+
[This value is set to 1 to indicate that the system argz facility works])],
|
59
|
+
[LT_ARGZ_H=lt__argz.h
|
60
|
+
AC_LIBOBJ([lt__argz])])])
|
61
|
+
|
62
|
+
AC_SUBST([LT_ARGZ_H])
|
63
|
+
])
|
64
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:19: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
|
65
|
+
_$0($*)
|
66
|
+
])
|
67
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:77: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
|
68
|
+
dnl Although the argument is deprecated and no longer documented,
|
69
|
+
dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
|
70
|
+
dnl here make sure it is the same as any other declaration of libltdl's
|
71
|
+
dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
|
72
|
+
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
|
73
|
+
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
|
74
|
+
_$0()
|
75
|
+
])
|
76
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
77
|
+
_LTDL_CONVENIENCE])
|
78
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
|
79
|
+
You should run autoupdate.])dnl
|
80
|
+
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
81
|
+
_LTDL_CONVENIENCE])
|
82
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:133: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
|
83
|
+
dnl Although the argument is deprecated and no longer documented,
|
84
|
+
dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
|
85
|
+
dnl here make sure it is the same as any other declaration of libltdl's
|
86
|
+
dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
|
87
|
+
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
|
88
|
+
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
|
89
|
+
_$0()
|
90
|
+
])
|
91
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
92
|
+
_LTDL_INSTALLABLE])
|
93
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
|
94
|
+
You should run autoupdate.])dnl
|
95
|
+
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
96
|
+
_LTDL_INSTALLABLE])
|
97
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:216: -1- AC_DEFUN([_LT_LIBOBJ], [
|
98
|
+
m4_pattern_allow([^_LT_LIBOBJS$])
|
99
|
+
_LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
|
100
|
+
])
|
101
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:349: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
|
102
|
+
_LT_SET_OPTIONS([$0], [$1])
|
103
|
+
|
104
|
+
dnl We need to keep our own list of libobjs separate from our parent project,
|
105
|
+
dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
|
106
|
+
dnl we look for our own LIBOBJs.
|
107
|
+
m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
|
108
|
+
m4_pushdef([AC_LIBSOURCES])
|
109
|
+
|
110
|
+
dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
|
111
|
+
m4_if(_LTDL_MODE, [],
|
112
|
+
[m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
|
113
|
+
m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
|
114
|
+
[m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
|
115
|
+
|
116
|
+
AC_ARG_WITH([included_ltdl],
|
117
|
+
[AS_HELP_STRING([--with-included-ltdl],
|
118
|
+
[use the GNU ltdl sources included here])])
|
119
|
+
|
120
|
+
if test yes != "$with_included_ltdl"; then
|
121
|
+
# We are not being forced to use the included libltdl sources, so
|
122
|
+
# decide whether there is a useful installed version we can use.
|
123
|
+
AC_CHECK_HEADER([ltdl.h],
|
124
|
+
[AC_CHECK_DECL([lt_dlinterface_register],
|
125
|
+
[AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
|
126
|
+
[with_included_ltdl=no],
|
127
|
+
[with_included_ltdl=yes])],
|
128
|
+
[with_included_ltdl=yes],
|
129
|
+
[AC_INCLUDES_DEFAULT
|
130
|
+
#include <ltdl.h>])],
|
131
|
+
[with_included_ltdl=yes],
|
132
|
+
[AC_INCLUDES_DEFAULT]
|
133
|
+
)
|
134
|
+
fi
|
135
|
+
|
136
|
+
dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
|
137
|
+
dnl was called yet, then for old times' sake, we assume libltdl is in an
|
138
|
+
dnl eponymous directory:
|
139
|
+
AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
|
140
|
+
|
141
|
+
AC_ARG_WITH([ltdl_include],
|
142
|
+
[AS_HELP_STRING([--with-ltdl-include=DIR],
|
143
|
+
[use the ltdl headers installed in DIR])])
|
144
|
+
|
145
|
+
if test -n "$with_ltdl_include"; then
|
146
|
+
if test -f "$with_ltdl_include/ltdl.h"; then :
|
147
|
+
else
|
148
|
+
AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
|
149
|
+
fi
|
150
|
+
else
|
151
|
+
with_ltdl_include=no
|
152
|
+
fi
|
153
|
+
|
154
|
+
AC_ARG_WITH([ltdl_lib],
|
155
|
+
[AS_HELP_STRING([--with-ltdl-lib=DIR],
|
156
|
+
[use the libltdl.la installed in DIR])])
|
157
|
+
|
158
|
+
if test -n "$with_ltdl_lib"; then
|
159
|
+
if test -f "$with_ltdl_lib/libltdl.la"; then :
|
160
|
+
else
|
161
|
+
AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
|
162
|
+
fi
|
163
|
+
else
|
164
|
+
with_ltdl_lib=no
|
165
|
+
fi
|
166
|
+
|
167
|
+
case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
|
168
|
+
,yes,no,no,)
|
169
|
+
m4_case(m4_default(_LTDL_TYPE, [convenience]),
|
170
|
+
[convenience], [_LTDL_CONVENIENCE],
|
171
|
+
[installable], [_LTDL_INSTALLABLE],
|
172
|
+
[m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
|
173
|
+
;;
|
174
|
+
,no,no,no,)
|
175
|
+
# If the included ltdl is not to be used, then use the
|
176
|
+
# preinstalled libltdl we found.
|
177
|
+
AC_DEFINE([HAVE_LTDL], [1],
|
178
|
+
[Define this if a modern libltdl is already installed])
|
179
|
+
LIBLTDL=-lltdl
|
180
|
+
LTDLDEPS=
|
181
|
+
LTDLINCL=
|
182
|
+
;;
|
183
|
+
,no*,no,*)
|
184
|
+
AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
|
185
|
+
;;
|
186
|
+
*) with_included_ltdl=no
|
187
|
+
LIBLTDL="-L$with_ltdl_lib -lltdl"
|
188
|
+
LTDLDEPS=
|
189
|
+
LTDLINCL=-I$with_ltdl_include
|
190
|
+
;;
|
191
|
+
esac
|
192
|
+
INCLTDL=$LTDLINCL
|
193
|
+
|
194
|
+
# Report our decision...
|
195
|
+
AC_MSG_CHECKING([where to find libltdl headers])
|
196
|
+
AC_MSG_RESULT([$LTDLINCL])
|
197
|
+
AC_MSG_CHECKING([where to find libltdl library])
|
198
|
+
AC_MSG_RESULT([$LIBLTDL])
|
199
|
+
|
200
|
+
_LTDL_SETUP
|
201
|
+
|
202
|
+
dnl restore autoconf definition.
|
203
|
+
m4_popdef([AC_LIBOBJ])
|
204
|
+
m4_popdef([AC_LIBSOURCES])
|
205
|
+
|
206
|
+
AC_CONFIG_COMMANDS_PRE([
|
207
|
+
_ltdl_libobjs=
|
208
|
+
_ltdl_ltlibobjs=
|
209
|
+
if test -n "$_LT_LIBOBJS"; then
|
210
|
+
# Remove the extension.
|
211
|
+
_lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
|
212
|
+
for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
|
213
|
+
_ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
|
214
|
+
_ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
|
215
|
+
done
|
216
|
+
fi
|
217
|
+
AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
|
218
|
+
AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
|
219
|
+
])
|
220
|
+
|
221
|
+
# Only expand once:
|
222
|
+
m4_define([LTDL_INIT])
|
223
|
+
])
|
224
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
|
225
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
|
226
|
+
You should run autoupdate.])dnl
|
227
|
+
LTDL_INIT($@)])
|
228
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
|
229
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
|
230
|
+
You should run autoupdate.])dnl
|
231
|
+
LTDL_INIT($@)])
|
232
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
|
233
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
|
234
|
+
You should run autoupdate.])dnl
|
235
|
+
LTDL_INIT($@)])
|
236
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:421: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
|
237
|
+
AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
|
238
|
+
AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
|
239
|
+
AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
|
240
|
+
AC_REQUIRE([LT_LIB_DLLOAD])dnl
|
241
|
+
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
|
242
|
+
AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
|
243
|
+
AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
|
244
|
+
AC_REQUIRE([LT_FUNC_ARGZ])dnl
|
245
|
+
|
246
|
+
m4_require([_LT_CHECK_OBJDIR])dnl
|
247
|
+
m4_require([_LT_HEADER_DLFCN])dnl
|
248
|
+
m4_require([_LT_CHECK_DLPREOPEN])dnl
|
249
|
+
m4_require([_LT_DECL_SED])dnl
|
250
|
+
|
251
|
+
dnl Don't require this, or it will be expanded earlier than the code
|
252
|
+
dnl that sets the variables it relies on:
|
253
|
+
_LT_ENABLE_INSTALL
|
254
|
+
|
255
|
+
dnl _LTDL_MODE specific code must be called at least once:
|
256
|
+
_LTDL_MODE_DISPATCH
|
257
|
+
|
258
|
+
# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
|
259
|
+
# the user used. This is so that ltdl.h can pick up the parent projects
|
260
|
+
# config.h file, The first file in AC_CONFIG_HEADERS must contain the
|
261
|
+
# definitions required by ltdl.c.
|
262
|
+
# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
|
263
|
+
AC_CONFIG_COMMANDS_PRE([dnl
|
264
|
+
m4_pattern_allow([^LT_CONFIG_H$])dnl
|
265
|
+
m4_ifset([AH_HEADER],
|
266
|
+
[LT_CONFIG_H=AH_HEADER],
|
267
|
+
[m4_ifset([AC_LIST_HEADERS],
|
268
|
+
[LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
|
269
|
+
[])])])
|
270
|
+
AC_SUBST([LT_CONFIG_H])
|
271
|
+
|
272
|
+
AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
|
273
|
+
[], [], [AC_INCLUDES_DEFAULT])
|
274
|
+
|
275
|
+
AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
|
276
|
+
AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
|
277
|
+
|
278
|
+
m4_pattern_allow([LT_LIBEXT])dnl
|
279
|
+
AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
|
280
|
+
|
281
|
+
name=
|
282
|
+
eval "lt_libprefix=\"$libname_spec\""
|
283
|
+
m4_pattern_allow([LT_LIBPREFIX])dnl
|
284
|
+
AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
|
285
|
+
|
286
|
+
name=ltdl
|
287
|
+
eval "LTDLOPEN=\"$libname_spec\""
|
288
|
+
AC_SUBST([LTDLOPEN])
|
289
|
+
])
|
290
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
291
|
+
AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
292
|
+
[lt_cv_sys_dlopen_deplibs],
|
293
|
+
[# PORTME does your system automatically load deplibs for dlopen?
|
294
|
+
# or its logical equivalent (e.g. shl_load for HP-UX < 11)
|
295
|
+
# For now, we just catch OSes we know something about -- in the
|
296
|
+
# future, we'll try test this programmatically.
|
297
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
298
|
+
case $host_os in
|
299
|
+
aix3*|aix4.1.*|aix4.2.*)
|
300
|
+
# Unknown whether this is true for these versions of AIX, but
|
301
|
+
# we want this 'case' here to explicitly catch those versions.
|
302
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
303
|
+
;;
|
304
|
+
aix[[4-9]]*)
|
305
|
+
lt_cv_sys_dlopen_deplibs=yes
|
306
|
+
;;
|
307
|
+
amigaos*)
|
308
|
+
case $host_cpu in
|
309
|
+
powerpc)
|
310
|
+
lt_cv_sys_dlopen_deplibs=no
|
311
|
+
;;
|
312
|
+
esac
|
313
|
+
;;
|
314
|
+
bitrig*)
|
315
|
+
lt_cv_sys_dlopen_deplibs=yes
|
316
|
+
;;
|
317
|
+
darwin*)
|
318
|
+
# Assuming the user has installed a libdl from somewhere, this is true
|
319
|
+
# If you are looking for one http://www.opendarwin.org/projects/dlcompat
|
320
|
+
lt_cv_sys_dlopen_deplibs=yes
|
321
|
+
;;
|
322
|
+
freebsd* | dragonfly*)
|
323
|
+
lt_cv_sys_dlopen_deplibs=yes
|
324
|
+
;;
|
325
|
+
gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
326
|
+
# GNU and its variants, using gnu ld.so (Glibc)
|
327
|
+
lt_cv_sys_dlopen_deplibs=yes
|
328
|
+
;;
|
329
|
+
hpux10*|hpux11*)
|
330
|
+
lt_cv_sys_dlopen_deplibs=yes
|
331
|
+
;;
|
332
|
+
interix*)
|
333
|
+
lt_cv_sys_dlopen_deplibs=yes
|
334
|
+
;;
|
335
|
+
irix[[12345]]*|irix6.[[01]]*)
|
336
|
+
# Catch all versions of IRIX before 6.2, and indicate that we don't
|
337
|
+
# know how it worked for any of those versions.
|
338
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
339
|
+
;;
|
340
|
+
irix*)
|
341
|
+
# The case above catches anything before 6.2, and it's known that
|
342
|
+
# at 6.2 and later dlopen does load deplibs.
|
343
|
+
lt_cv_sys_dlopen_deplibs=yes
|
344
|
+
;;
|
345
|
+
netbsd*)
|
346
|
+
lt_cv_sys_dlopen_deplibs=yes
|
347
|
+
;;
|
348
|
+
openbsd*)
|
349
|
+
lt_cv_sys_dlopen_deplibs=yes
|
350
|
+
;;
|
351
|
+
osf[[1234]]*)
|
352
|
+
# dlopen did load deplibs (at least at 4.x), but until the 5.x series,
|
353
|
+
# it did *not* use an RPATH in a shared library to find objects the
|
354
|
+
# library depends on, so we explicitly say 'no'.
|
355
|
+
lt_cv_sys_dlopen_deplibs=no
|
356
|
+
;;
|
357
|
+
osf5.0|osf5.0a|osf5.1)
|
358
|
+
# dlopen *does* load deplibs and with the right loader patch applied
|
359
|
+
# it even uses RPATH in a shared library to search for shared objects
|
360
|
+
# that the library depends on, but there's no easy way to know if that
|
361
|
+
# patch is installed. Since this is the case, all we can really
|
362
|
+
# say is unknown -- it depends on the patch being installed. If
|
363
|
+
# it is, this changes to 'yes'. Without it, it would be 'no'.
|
364
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
365
|
+
;;
|
366
|
+
osf*)
|
367
|
+
# the two cases above should catch all versions of osf <= 5.1. Read
|
368
|
+
# the comments above for what we know about them.
|
369
|
+
# At > 5.1, deplibs are loaded *and* any RPATH in a shared library
|
370
|
+
# is used to find them so we can finally say 'yes'.
|
371
|
+
lt_cv_sys_dlopen_deplibs=yes
|
372
|
+
;;
|
373
|
+
qnx*)
|
374
|
+
lt_cv_sys_dlopen_deplibs=yes
|
375
|
+
;;
|
376
|
+
solaris*)
|
377
|
+
lt_cv_sys_dlopen_deplibs=yes
|
378
|
+
;;
|
379
|
+
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
|
380
|
+
libltdl_cv_sys_dlopen_deplibs=yes
|
381
|
+
;;
|
382
|
+
esac
|
383
|
+
])
|
384
|
+
if test yes != "$lt_cv_sys_dlopen_deplibs"; then
|
385
|
+
AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
|
386
|
+
[Define if the OS needs help to load dependent libraries for dlopen().])
|
387
|
+
fi
|
388
|
+
])
|
389
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:545: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
390
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:545: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
|
391
|
+
You should run autoupdate.])dnl
|
392
|
+
m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
393
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:577: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
394
|
+
AC_CACHE_CHECK([what extension is used for runtime loadable modules],
|
395
|
+
[libltdl_cv_shlibext],
|
396
|
+
[
|
397
|
+
module=yes
|
398
|
+
eval libltdl_cv_shlibext=$shrext_cmds
|
399
|
+
module=no
|
400
|
+
eval libltdl_cv_shrext=$shrext_cmds
|
401
|
+
])
|
402
|
+
if test -n "$libltdl_cv_shlibext"; then
|
403
|
+
m4_pattern_allow([LT_MODULE_EXT])dnl
|
404
|
+
AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
|
405
|
+
[Define to the extension used for runtime loadable modules, say, ".so".])
|
406
|
+
fi
|
407
|
+
if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
|
408
|
+
m4_pattern_allow([LT_SHARED_EXT])dnl
|
409
|
+
AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
|
410
|
+
[Define to the shared library suffix, say, ".dylib".])
|
411
|
+
fi
|
412
|
+
if test -n "$shared_archive_member_spec"; then
|
413
|
+
m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
|
414
|
+
AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
|
415
|
+
[Define to the shared archive member specification, say "(shr.o)".])
|
416
|
+
fi
|
417
|
+
])
|
418
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:580: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
419
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:580: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
|
420
|
+
You should run autoupdate.])dnl
|
421
|
+
m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
422
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:596: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
423
|
+
AC_CACHE_CHECK([what variable specifies run-time module search path],
|
424
|
+
[lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
|
425
|
+
if test -n "$lt_cv_module_path_var"; then
|
426
|
+
m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
|
427
|
+
AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
|
428
|
+
[Define to the name of the environment variable that determines the run-time module search path.])
|
429
|
+
fi
|
430
|
+
])
|
431
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:599: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
432
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:599: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
|
433
|
+
You should run autoupdate.])dnl
|
434
|
+
m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
435
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:624: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
436
|
+
AC_CACHE_CHECK([for the default library search path],
|
437
|
+
[lt_cv_sys_dlsearch_path],
|
438
|
+
[lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
|
439
|
+
if test -n "$lt_cv_sys_dlsearch_path"; then
|
440
|
+
sys_dlsearch_path=
|
441
|
+
for dir in $lt_cv_sys_dlsearch_path; do
|
442
|
+
if test -z "$sys_dlsearch_path"; then
|
443
|
+
sys_dlsearch_path=$dir
|
444
|
+
else
|
445
|
+
sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
|
446
|
+
fi
|
447
|
+
done
|
448
|
+
m4_pattern_allow([LT_DLSEARCH_PATH])dnl
|
449
|
+
AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
|
450
|
+
[Define to the system default library search path.])
|
451
|
+
fi
|
452
|
+
])
|
453
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:627: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
454
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:627: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
|
455
|
+
You should run autoupdate.])dnl
|
456
|
+
m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
457
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:745: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
|
458
|
+
LT_DLLOADERS=
|
459
|
+
AC_SUBST([LT_DLLOADERS])
|
460
|
+
|
461
|
+
AC_LANG_PUSH([C])
|
462
|
+
lt_dlload_save_LIBS=$LIBS
|
463
|
+
|
464
|
+
LIBADD_DLOPEN=
|
465
|
+
AC_SEARCH_LIBS([dlopen], [dl],
|
466
|
+
[AC_DEFINE([HAVE_LIBDL], [1],
|
467
|
+
[Define if you have the libdl library or equivalent.])
|
468
|
+
if test "$ac_cv_search_dlopen" != "none required"; then
|
469
|
+
LIBADD_DLOPEN=-ldl
|
470
|
+
fi
|
471
|
+
libltdl_cv_lib_dl_dlopen=yes
|
472
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
473
|
+
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
|
474
|
+
# include <dlfcn.h>
|
475
|
+
#endif
|
476
|
+
]], [[dlopen(0, 0);]])],
|
477
|
+
[AC_DEFINE([HAVE_LIBDL], [1],
|
478
|
+
[Define if you have the libdl library or equivalent.])
|
479
|
+
libltdl_cv_func_dlopen=yes
|
480
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
481
|
+
[AC_CHECK_LIB([svld], [dlopen],
|
482
|
+
[AC_DEFINE([HAVE_LIBDL], [1],
|
483
|
+
[Define if you have the libdl library or equivalent.])
|
484
|
+
LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
|
485
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
|
486
|
+
if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
|
487
|
+
then
|
488
|
+
lt_save_LIBS=$LIBS
|
489
|
+
LIBS="$LIBS $LIBADD_DLOPEN"
|
490
|
+
AC_CHECK_FUNCS([dlerror])
|
491
|
+
LIBS=$lt_save_LIBS
|
492
|
+
fi
|
493
|
+
AC_SUBST([LIBADD_DLOPEN])
|
494
|
+
|
495
|
+
LIBADD_SHL_LOAD=
|
496
|
+
AC_CHECK_FUNC([shl_load],
|
497
|
+
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
498
|
+
[Define if you have the shl_load function.])
|
499
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
|
500
|
+
[AC_CHECK_LIB([dld], [shl_load],
|
501
|
+
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
502
|
+
[Define if you have the shl_load function.])
|
503
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
|
504
|
+
LIBADD_SHL_LOAD=-ldld])])
|
505
|
+
AC_SUBST([LIBADD_SHL_LOAD])
|
506
|
+
|
507
|
+
case $host_os in
|
508
|
+
darwin[[1567]].*)
|
509
|
+
# We only want this for pre-Mac OS X 10.4.
|
510
|
+
AC_CHECK_FUNC([_dyld_func_lookup],
|
511
|
+
[AC_DEFINE([HAVE_DYLD], [1],
|
512
|
+
[Define if you have the _dyld_func_lookup function.])
|
513
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
|
514
|
+
;;
|
515
|
+
beos*)
|
516
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
|
517
|
+
;;
|
518
|
+
cygwin* | mingw* | pw32*)
|
519
|
+
AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
|
520
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
|
521
|
+
;;
|
522
|
+
esac
|
523
|
+
|
524
|
+
AC_CHECK_LIB([dld], [dld_link],
|
525
|
+
[AC_DEFINE([HAVE_DLD], [1],
|
526
|
+
[Define if you have the GNU dld library.])
|
527
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
|
528
|
+
AC_SUBST([LIBADD_DLD_LINK])
|
529
|
+
|
530
|
+
m4_pattern_allow([^LT_DLPREOPEN$])
|
531
|
+
LT_DLPREOPEN=
|
532
|
+
if test -n "$LT_DLLOADERS"
|
533
|
+
then
|
534
|
+
for lt_loader in $LT_DLLOADERS; do
|
535
|
+
LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
|
536
|
+
done
|
537
|
+
AC_DEFINE([HAVE_LIBDLLOADER], [1],
|
538
|
+
[Define if libdlloader will be built on this platform])
|
539
|
+
fi
|
540
|
+
AC_SUBST([LT_DLPREOPEN])
|
541
|
+
|
542
|
+
dnl This isn't used anymore, but set it for backwards compatibility
|
543
|
+
LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
|
544
|
+
AC_SUBST([LIBADD_DL])
|
545
|
+
|
546
|
+
LIBS=$lt_dlload_save_LIBS
|
547
|
+
AC_LANG_POP
|
548
|
+
])
|
549
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:748: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
550
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:748: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
|
551
|
+
You should run autoupdate.])dnl
|
552
|
+
m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
553
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:790: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
|
554
|
+
AC_CACHE_CHECK([for _ prefix in compiled symbols],
|
555
|
+
[lt_cv_sys_symbol_underscore],
|
556
|
+
[lt_cv_sys_symbol_underscore=no
|
557
|
+
cat > conftest.$ac_ext <<_LT_EOF
|
558
|
+
void nm_test_func(){}
|
559
|
+
int main(){nm_test_func;return 0;}
|
560
|
+
_LT_EOF
|
561
|
+
if AC_TRY_EVAL(ac_compile); then
|
562
|
+
# Now try to grab the symbols.
|
563
|
+
ac_nlist=conftest.nm
|
564
|
+
if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
|
565
|
+
# See whether the symbols have a leading underscore.
|
566
|
+
if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
|
567
|
+
lt_cv_sys_symbol_underscore=yes
|
568
|
+
else
|
569
|
+
if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
|
570
|
+
:
|
571
|
+
else
|
572
|
+
echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
|
573
|
+
fi
|
574
|
+
fi
|
575
|
+
else
|
576
|
+
echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
|
577
|
+
fi
|
578
|
+
else
|
579
|
+
echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
|
580
|
+
cat conftest.c >&AS_MESSAGE_LOG_FD
|
581
|
+
fi
|
582
|
+
rm -rf conftest*
|
583
|
+
])
|
584
|
+
sys_symbol_underscore=$lt_cv_sys_symbol_underscore
|
585
|
+
AC_SUBST([sys_symbol_underscore])
|
586
|
+
])
|
587
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:793: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
588
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:793: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
|
589
|
+
You should run autoupdate.])dnl
|
590
|
+
m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
591
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:904: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([_LT_COMPILER_PIC])dnl for lt_prog_compiler_wl
|
592
|
+
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
|
593
|
+
AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
|
594
|
+
if test yes = "$lt_cv_sys_symbol_underscore"; then
|
595
|
+
if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
|
596
|
+
AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
|
597
|
+
[libltdl_cv_need_uscore],
|
598
|
+
[libltdl_cv_need_uscore=unknown
|
599
|
+
dlsym_uscore_save_LIBS=$LIBS
|
600
|
+
LIBS="$LIBS $LIBADD_DLOPEN"
|
601
|
+
libname=conftmod # stay within 8.3 filename limits!
|
602
|
+
cat >$libname.$ac_ext <<_LT_EOF
|
603
|
+
[#line $LINENO "configure"
|
604
|
+
#include "confdefs.h"
|
605
|
+
/* When -fvisibility=hidden is used, assume the code has been annotated
|
606
|
+
correspondingly for the symbols needed. */
|
607
|
+
#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
|
608
|
+
int fnord () __attribute__((visibility("default")));
|
609
|
+
#endif
|
610
|
+
int fnord () { return 42; }]
|
611
|
+
_LT_EOF
|
612
|
+
|
613
|
+
# ltfn_module_cmds module_cmds
|
614
|
+
# Execute tilde-delimited MODULE_CMDS with environment primed for
|
615
|
+
# $module_cmds or $archive_cmds type content.
|
616
|
+
ltfn_module_cmds ()
|
617
|
+
{( # subshell avoids polluting parent global environment
|
618
|
+
module_cmds_save_ifs=$IFS; IFS='~'
|
619
|
+
for cmd in @S|@1; do
|
620
|
+
IFS=$module_cmds_save_ifs
|
621
|
+
libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
|
622
|
+
rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
|
623
|
+
major=; versuffix=; verstring=; deplibs=
|
624
|
+
ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
|
625
|
+
eval $cmd
|
626
|
+
done
|
627
|
+
IFS=$module_cmds_save_ifs
|
628
|
+
)}
|
629
|
+
|
630
|
+
# Compile a loadable module using libtool macro expansion results.
|
631
|
+
$CC $pic_flag -c $libname.$ac_ext
|
632
|
+
ltfn_module_cmds "${module_cmds:-$archive_cmds}"
|
633
|
+
|
634
|
+
# Try to fetch fnord with dlsym().
|
635
|
+
libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
|
636
|
+
cat >conftest.$ac_ext <<_LT_EOF
|
637
|
+
[#line $LINENO "configure"
|
638
|
+
#include "confdefs.h"
|
639
|
+
#if HAVE_DLFCN_H
|
640
|
+
#include <dlfcn.h>
|
641
|
+
#endif
|
642
|
+
#include <stdio.h>
|
643
|
+
#ifndef RTLD_GLOBAL
|
644
|
+
# ifdef DL_GLOBAL
|
645
|
+
# define RTLD_GLOBAL DL_GLOBAL
|
646
|
+
# else
|
647
|
+
# define RTLD_GLOBAL 0
|
648
|
+
# endif
|
649
|
+
#endif
|
650
|
+
#ifndef RTLD_NOW
|
651
|
+
# ifdef DL_NOW
|
652
|
+
# define RTLD_NOW DL_NOW
|
653
|
+
# else
|
654
|
+
# define RTLD_NOW 0
|
655
|
+
# endif
|
656
|
+
#endif
|
657
|
+
int main () {
|
658
|
+
void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
|
659
|
+
int status = $libltdl_dlunknown;
|
660
|
+
if (handle) {
|
661
|
+
if (dlsym (handle, "fnord"))
|
662
|
+
status = $libltdl_dlnouscore;
|
663
|
+
else {
|
664
|
+
if (dlsym (handle, "_fnord"))
|
665
|
+
status = $libltdl_dluscore;
|
666
|
+
else
|
667
|
+
puts (dlerror ());
|
668
|
+
}
|
669
|
+
dlclose (handle);
|
670
|
+
} else
|
671
|
+
puts (dlerror ());
|
672
|
+
return status;
|
673
|
+
}]
|
674
|
+
_LT_EOF
|
675
|
+
if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
|
676
|
+
(./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
|
677
|
+
libltdl_status=$?
|
678
|
+
case x$libltdl_status in
|
679
|
+
x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
|
680
|
+
x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
|
681
|
+
x*) libltdl_cv_need_uscore=unknown ;;
|
682
|
+
esac
|
683
|
+
fi
|
684
|
+
rm -rf conftest* $libname*
|
685
|
+
LIBS=$dlsym_uscore_save_LIBS
|
686
|
+
])
|
687
|
+
fi
|
688
|
+
fi
|
689
|
+
|
690
|
+
if test yes = "$libltdl_cv_need_uscore"; then
|
691
|
+
AC_DEFINE([NEED_USCORE], [1],
|
692
|
+
[Define if dlsym() requires a leading underscore in symbol names.])
|
693
|
+
fi
|
694
|
+
])
|
695
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
696
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
|
697
|
+
You should run autoupdate.])dnl
|
698
|
+
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
699
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/amversion.m4:20: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
|
700
|
+
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
701
|
+
dnl require some minimum version. Point them to the right macro.
|
702
|
+
m4_if([$1], [1.15], [],
|
703
|
+
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
704
|
+
])
|
705
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/amversion.m4:37: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
|
706
|
+
m4_ifndef([AC_AUTOCONF_VERSION],
|
707
|
+
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
708
|
+
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
709
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/ar-lib.m4:60: -1- AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl
|
710
|
+
AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl
|
711
|
+
AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
712
|
+
AC_REQUIRE_AUX_FILE([ar-lib])dnl
|
713
|
+
AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false])
|
714
|
+
: ${AR=ar}
|
715
|
+
|
716
|
+
AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface],
|
717
|
+
[AC_LANG_PUSH([C])
|
718
|
+
am_cv_ar_interface=ar
|
719
|
+
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])],
|
720
|
+
[am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
|
721
|
+
AC_TRY_EVAL([am_ar_try])
|
722
|
+
if test "$ac_status" -eq 0; then
|
723
|
+
am_cv_ar_interface=ar
|
724
|
+
else
|
725
|
+
am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
|
726
|
+
AC_TRY_EVAL([am_ar_try])
|
727
|
+
if test "$ac_status" -eq 0; then
|
728
|
+
am_cv_ar_interface=lib
|
729
|
+
else
|
730
|
+
am_cv_ar_interface=unknown
|
731
|
+
fi
|
732
|
+
fi
|
733
|
+
rm -f conftest.lib libconftest.a
|
734
|
+
])
|
735
|
+
AC_LANG_POP([C])])
|
736
|
+
|
737
|
+
case $am_cv_ar_interface in
|
738
|
+
ar)
|
739
|
+
;;
|
740
|
+
lib)
|
741
|
+
# Microsoft lib, so override with the ar-lib wrapper script.
|
742
|
+
# FIXME: It is wrong to rewrite AR.
|
743
|
+
# But if we don't then we get into trouble of one sort or another.
|
744
|
+
# A longer-term fix would be to have automake use am__AR in this case,
|
745
|
+
# and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something
|
746
|
+
# similar.
|
747
|
+
AR="$am_aux_dir/ar-lib $AR"
|
748
|
+
;;
|
749
|
+
unknown)
|
750
|
+
m4_default([$1],
|
751
|
+
[AC_MSG_ERROR([could not determine $AR interface])])
|
752
|
+
;;
|
753
|
+
esac
|
754
|
+
AC_SUBST([AR])dnl
|
755
|
+
])
|
756
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/auxdir.m4:51: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
|
757
|
+
# Expand $ac_aux_dir to an absolute path.
|
758
|
+
am_aux_dir=`cd "$ac_aux_dir" && pwd`
|
759
|
+
])
|
760
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
|
761
|
+
m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
|
762
|
+
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
|
763
|
+
AC_SUBST([$1_TRUE])dnl
|
764
|
+
AC_SUBST([$1_FALSE])dnl
|
765
|
+
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
|
766
|
+
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
|
767
|
+
m4_define([_AM_COND_VALUE_$1], [$2])dnl
|
768
|
+
if $2; then
|
769
|
+
$1_TRUE=
|
770
|
+
$1_FALSE='#'
|
771
|
+
else
|
772
|
+
$1_TRUE='#'
|
773
|
+
$1_FALSE=
|
774
|
+
fi
|
775
|
+
AC_CONFIG_COMMANDS_PRE(
|
776
|
+
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
|
777
|
+
AC_MSG_ERROR([[conditional "$1" was never defined.
|
778
|
+
Usually this means the macro was only invoked conditionally.]])
|
779
|
+
fi])])
|
780
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:156: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
|
781
|
+
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
782
|
+
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
|
783
|
+
AC_REQUIRE([AM_DEP_TRACK])dnl
|
784
|
+
|
785
|
+
m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
|
786
|
+
[$1], [CXX], [depcc="$CXX" am_compiler_list=],
|
787
|
+
[$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
|
788
|
+
[$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
|
789
|
+
[$1], [UPC], [depcc="$UPC" am_compiler_list=],
|
790
|
+
[$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
|
791
|
+
[depcc="$$1" am_compiler_list=])
|
792
|
+
|
793
|
+
AC_CACHE_CHECK([dependency style of $depcc],
|
794
|
+
[am_cv_$1_dependencies_compiler_type],
|
795
|
+
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
796
|
+
# We make a subdir and do the tests there. Otherwise we can end up
|
797
|
+
# making bogus files that we don't know about and never remove. For
|
798
|
+
# instance it was reported that on HP-UX the gcc test will end up
|
799
|
+
# making a dummy file named 'D' -- because '-MD' means "put the output
|
800
|
+
# in D".
|
801
|
+
rm -rf conftest.dir
|
802
|
+
mkdir conftest.dir
|
803
|
+
# Copy depcomp to subdir because otherwise we won't find it if we're
|
804
|
+
# using a relative directory.
|
805
|
+
cp "$am_depcomp" conftest.dir
|
806
|
+
cd conftest.dir
|
807
|
+
# We will build objects and dependencies in a subdirectory because
|
808
|
+
# it helps to detect inapplicable dependency modes. For instance
|
809
|
+
# both Tru64's cc and ICC support -MD to output dependencies as a
|
810
|
+
# side effect of compilation, but ICC will put the dependencies in
|
811
|
+
# the current directory while Tru64 will put them in the object
|
812
|
+
# directory.
|
813
|
+
mkdir sub
|
814
|
+
|
815
|
+
am_cv_$1_dependencies_compiler_type=none
|
816
|
+
if test "$am_compiler_list" = ""; then
|
817
|
+
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
818
|
+
fi
|
819
|
+
am__universal=false
|
820
|
+
m4_case([$1], [CC],
|
821
|
+
[case " $depcc " in #(
|
822
|
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
823
|
+
esac],
|
824
|
+
[CXX],
|
825
|
+
[case " $depcc " in #(
|
826
|
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
827
|
+
esac])
|
828
|
+
|
829
|
+
for depmode in $am_compiler_list; do
|
830
|
+
# Setup a source with many dependencies, because some compilers
|
831
|
+
# like to wrap large dependency lists on column 80 (with \), and
|
832
|
+
# we should not choose a depcomp mode which is confused by this.
|
833
|
+
#
|
834
|
+
# We need to recreate these files for each test, as the compiler may
|
835
|
+
# overwrite some of them when testing with obscure command lines.
|
836
|
+
# This happens at least with the AIX C compiler.
|
837
|
+
: > sub/conftest.c
|
838
|
+
for i in 1 2 3 4 5 6; do
|
839
|
+
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
840
|
+
# Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
|
841
|
+
# Solaris 10 /bin/sh.
|
842
|
+
echo '/* dummy */' > sub/conftst$i.h
|
843
|
+
done
|
844
|
+
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
845
|
+
|
846
|
+
# We check with '-c' and '-o' for the sake of the "dashmstdout"
|
847
|
+
# mode. It turns out that the SunPro C++ compiler does not properly
|
848
|
+
# handle '-M -o', and we need to detect this. Also, some Intel
|
849
|
+
# versions had trouble with output in subdirs.
|
850
|
+
am__obj=sub/conftest.${OBJEXT-o}
|
851
|
+
am__minus_obj="-o $am__obj"
|
852
|
+
case $depmode in
|
853
|
+
gcc)
|
854
|
+
# This depmode causes a compiler race in universal mode.
|
855
|
+
test "$am__universal" = false || continue
|
856
|
+
;;
|
857
|
+
nosideeffect)
|
858
|
+
# After this tag, mechanisms are not by side-effect, so they'll
|
859
|
+
# only be used when explicitly requested.
|
860
|
+
if test "x$enable_dependency_tracking" = xyes; then
|
861
|
+
continue
|
862
|
+
else
|
863
|
+
break
|
864
|
+
fi
|
865
|
+
;;
|
866
|
+
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
|
867
|
+
# This compiler won't grok '-c -o', but also, the minuso test has
|
868
|
+
# not run yet. These depmodes are late enough in the game, and
|
869
|
+
# so weak that their functioning should not be impacted.
|
870
|
+
am__obj=conftest.${OBJEXT-o}
|
871
|
+
am__minus_obj=
|
872
|
+
;;
|
873
|
+
none) break ;;
|
874
|
+
esac
|
875
|
+
if depmode=$depmode \
|
876
|
+
source=sub/conftest.c object=$am__obj \
|
877
|
+
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
878
|
+
$SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
|
879
|
+
>/dev/null 2>conftest.err &&
|
880
|
+
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
881
|
+
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
882
|
+
grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
|
883
|
+
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
884
|
+
# icc doesn't choke on unknown options, it will just issue warnings
|
885
|
+
# or remarks (even with -Werror). So we grep stderr for any message
|
886
|
+
# that says an option was ignored or not supported.
|
887
|
+
# When given -MP, icc 7.0 and 7.1 complain thusly:
|
888
|
+
# icc: Command line warning: ignoring option '-M'; no argument required
|
889
|
+
# The diagnosis changed in icc 8.0:
|
890
|
+
# icc: Command line remark: option '-MP' not supported
|
891
|
+
if (grep 'ignoring option' conftest.err ||
|
892
|
+
grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
|
893
|
+
am_cv_$1_dependencies_compiler_type=$depmode
|
894
|
+
break
|
895
|
+
fi
|
896
|
+
fi
|
897
|
+
done
|
898
|
+
|
899
|
+
cd ..
|
900
|
+
rm -rf conftest.dir
|
901
|
+
else
|
902
|
+
am_cv_$1_dependencies_compiler_type=none
|
903
|
+
fi
|
904
|
+
])
|
905
|
+
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
|
906
|
+
AM_CONDITIONAL([am__fastdep$1], [
|
907
|
+
test "x$enable_dependency_tracking" != xno \
|
908
|
+
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
|
909
|
+
])
|
910
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:166: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
911
|
+
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
|
912
|
+
])
|
913
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:189: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
|
914
|
+
AS_HELP_STRING(
|
915
|
+
[--enable-dependency-tracking],
|
916
|
+
[do not reject slow dependency extractors])
|
917
|
+
AS_HELP_STRING(
|
918
|
+
[--disable-dependency-tracking],
|
919
|
+
[speeds up one-time build])])
|
920
|
+
if test "x$enable_dependency_tracking" != xno; then
|
921
|
+
am_depcomp="$ac_aux_dir/depcomp"
|
922
|
+
AMDEPBACKSLASH='\'
|
923
|
+
am__nodep='_no'
|
924
|
+
fi
|
925
|
+
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
926
|
+
AC_SUBST([AMDEPBACKSLASH])dnl
|
927
|
+
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
928
|
+
AC_SUBST([am__nodep])dnl
|
929
|
+
_AM_SUBST_NOTMAKE([am__nodep])dnl
|
930
|
+
])
|
931
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depout.m4:61: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
|
932
|
+
# Older Autoconf quotes --file arguments for eval, but not when files
|
933
|
+
# are listed without --file. Let's play safe and only enable the eval
|
934
|
+
# if we detect the quoting.
|
935
|
+
case $CONFIG_FILES in
|
936
|
+
*\'*) eval set x "$CONFIG_FILES" ;;
|
937
|
+
*) set x $CONFIG_FILES ;;
|
938
|
+
esac
|
939
|
+
shift
|
940
|
+
for mf
|
941
|
+
do
|
942
|
+
# Strip MF so we end up with the name of the file.
|
943
|
+
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
944
|
+
# Check whether this is an Automake generated Makefile or not.
|
945
|
+
# We used to match only the files named 'Makefile.in', but
|
946
|
+
# some people rename them; so instead we look at the file content.
|
947
|
+
# Grep'ing the first line is not enough: some people post-process
|
948
|
+
# each Makefile.in and add a new line on top of each file to say so.
|
949
|
+
# Grep'ing the whole file is not good either: AIX grep has a line
|
950
|
+
# limit of 2048, but all sed's we know have understand at least 4000.
|
951
|
+
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
952
|
+
dirpart=`AS_DIRNAME("$mf")`
|
953
|
+
else
|
954
|
+
continue
|
955
|
+
fi
|
956
|
+
# Extract the definition of DEPDIR, am__include, and am__quote
|
957
|
+
# from the Makefile without running 'make'.
|
958
|
+
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
959
|
+
test -z "$DEPDIR" && continue
|
960
|
+
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
961
|
+
test -z "$am__include" && continue
|
962
|
+
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
963
|
+
# Find all dependency output files, they are included files with
|
964
|
+
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
965
|
+
# simplest approach to changing $(DEPDIR) to its actual value in the
|
966
|
+
# expansion.
|
967
|
+
for file in `sed -n "
|
968
|
+
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
969
|
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
|
970
|
+
# Make sure the directory exists.
|
971
|
+
test -f "$dirpart/$file" && continue
|
972
|
+
fdir=`AS_DIRNAME(["$file"])`
|
973
|
+
AS_MKDIR_P([$dirpart/$fdir])
|
974
|
+
# echo "creating $dirpart/$file"
|
975
|
+
echo '# dummy' > "$dirpart/$file"
|
976
|
+
done
|
977
|
+
done
|
978
|
+
}
|
979
|
+
])
|
980
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
|
981
|
+
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
982
|
+
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
|
983
|
+
])
|
984
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/init.m4:171: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
|
985
|
+
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
986
|
+
dnl the ones we care about.
|
987
|
+
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
988
|
+
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
|
989
|
+
AC_REQUIRE([AC_PROG_INSTALL])dnl
|
990
|
+
if test "`cd $srcdir && pwd`" != "`pwd`"; then
|
991
|
+
# Use -I$(srcdir) only when $(srcdir) != ., so that make's output
|
992
|
+
# is not polluted with repeated "-I."
|
993
|
+
AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
|
994
|
+
# test to see if srcdir already configured
|
995
|
+
if test -f $srcdir/config.status; then
|
996
|
+
AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
|
997
|
+
fi
|
998
|
+
fi
|
999
|
+
|
1000
|
+
# test whether we have cygpath
|
1001
|
+
if test -z "$CYGPATH_W"; then
|
1002
|
+
if (cygpath --version) >/dev/null 2>/dev/null; then
|
1003
|
+
CYGPATH_W='cygpath -w'
|
1004
|
+
else
|
1005
|
+
CYGPATH_W=echo
|
1006
|
+
fi
|
1007
|
+
fi
|
1008
|
+
AC_SUBST([CYGPATH_W])
|
1009
|
+
|
1010
|
+
# Define the identity of the package.
|
1011
|
+
dnl Distinguish between old-style and new-style calls.
|
1012
|
+
m4_ifval([$2],
|
1013
|
+
[AC_DIAGNOSE([obsolete],
|
1014
|
+
[$0: two- and three-arguments forms are deprecated.])
|
1015
|
+
m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
|
1016
|
+
AC_SUBST([PACKAGE], [$1])dnl
|
1017
|
+
AC_SUBST([VERSION], [$2])],
|
1018
|
+
[_AM_SET_OPTIONS([$1])dnl
|
1019
|
+
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
|
1020
|
+
m4_if(
|
1021
|
+
m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
|
1022
|
+
[ok:ok],,
|
1023
|
+
[m4_fatal([AC_INIT should be called with package and version arguments])])dnl
|
1024
|
+
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
|
1025
|
+
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
|
1026
|
+
|
1027
|
+
_AM_IF_OPTION([no-define],,
|
1028
|
+
[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
|
1029
|
+
AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
|
1030
|
+
|
1031
|
+
# Some tools Automake needs.
|
1032
|
+
AC_REQUIRE([AM_SANITY_CHECK])dnl
|
1033
|
+
AC_REQUIRE([AC_ARG_PROGRAM])dnl
|
1034
|
+
AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
|
1035
|
+
AM_MISSING_PROG([AUTOCONF], [autoconf])
|
1036
|
+
AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
|
1037
|
+
AM_MISSING_PROG([AUTOHEADER], [autoheader])
|
1038
|
+
AM_MISSING_PROG([MAKEINFO], [makeinfo])
|
1039
|
+
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
1040
|
+
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
1041
|
+
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
1042
|
+
# For better backward compatibility. To be removed once Automake 1.9.x
|
1043
|
+
# dies out for good. For more background, see:
|
1044
|
+
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
1045
|
+
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
1046
|
+
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
|
1047
|
+
# We need awk for the "check" target (and possibly the TAP driver). The
|
1048
|
+
# system "awk" is bad on some platforms.
|
1049
|
+
AC_REQUIRE([AC_PROG_AWK])dnl
|
1050
|
+
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
1051
|
+
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
1052
|
+
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
|
1053
|
+
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
1054
|
+
[_AM_PROG_TAR([v7])])])
|
1055
|
+
_AM_IF_OPTION([no-dependencies],,
|
1056
|
+
[AC_PROVIDE_IFELSE([AC_PROG_CC],
|
1057
|
+
[_AM_DEPENDENCIES([CC])],
|
1058
|
+
[m4_define([AC_PROG_CC],
|
1059
|
+
m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
|
1060
|
+
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
1061
|
+
[_AM_DEPENDENCIES([CXX])],
|
1062
|
+
[m4_define([AC_PROG_CXX],
|
1063
|
+
m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
|
1064
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
1065
|
+
[_AM_DEPENDENCIES([OBJC])],
|
1066
|
+
[m4_define([AC_PROG_OBJC],
|
1067
|
+
m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
|
1068
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
|
1069
|
+
[_AM_DEPENDENCIES([OBJCXX])],
|
1070
|
+
[m4_define([AC_PROG_OBJCXX],
|
1071
|
+
m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
|
1072
|
+
])
|
1073
|
+
AC_REQUIRE([AM_SILENT_RULES])dnl
|
1074
|
+
dnl The testsuite driver may need to know about EXEEXT, so add the
|
1075
|
+
dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
|
1076
|
+
dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
|
1077
|
+
AC_CONFIG_COMMANDS_PRE(dnl
|
1078
|
+
[m4_provide_if([_AM_COMPILER_EXEEXT],
|
1079
|
+
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
|
1080
|
+
|
1081
|
+
# POSIX will say in a future version that running "rm -f" with no argument
|
1082
|
+
# is OK; and we want to be able to make that assumption in our Makefile
|
1083
|
+
# recipes. So use an aggressive probe to check that the usage we want is
|
1084
|
+
# actually supported "in the wild" to an acceptable degree.
|
1085
|
+
# See automake bug#10828.
|
1086
|
+
# To make any issue more visible, cause the running configure to be aborted
|
1087
|
+
# by default if the 'rm' program in use doesn't match our expectations; the
|
1088
|
+
# user can still override this though.
|
1089
|
+
if rm -f && rm -fr && rm -rf; then : OK; else
|
1090
|
+
cat >&2 <<'END'
|
1091
|
+
Oops!
|
1092
|
+
|
1093
|
+
Your 'rm' program seems unable to run without file operands specified
|
1094
|
+
on the command line, even when the '-f' option is present. This is contrary
|
1095
|
+
to the behaviour of most rm programs out there, and not conforming with
|
1096
|
+
the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
|
1097
|
+
|
1098
|
+
Please tell bug-automake@gnu.org about your system, including the value
|
1099
|
+
of your $PATH and any error possibly output before this message. This
|
1100
|
+
can help us improve future automake versions.
|
1101
|
+
|
1102
|
+
END
|
1103
|
+
if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
|
1104
|
+
echo 'Configuration will proceed anyway, since you have set the' >&2
|
1105
|
+
echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
|
1106
|
+
echo >&2
|
1107
|
+
else
|
1108
|
+
cat >&2 <<'END'
|
1109
|
+
Aborting the configuration process, to ensure you take notice of the issue.
|
1110
|
+
|
1111
|
+
You can download and install GNU coreutils to get an 'rm' implementation
|
1112
|
+
that behaves properly: <http://www.gnu.org/software/coreutils/>.
|
1113
|
+
|
1114
|
+
If you want to complete the configuration process using your problematic
|
1115
|
+
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
|
1116
|
+
to "yes", and re-run configure.
|
1117
|
+
|
1118
|
+
END
|
1119
|
+
AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
|
1120
|
+
fi
|
1121
|
+
fi
|
1122
|
+
dnl The trailing newline in this macro's definition is deliberate, for
|
1123
|
+
dnl backward compatibility and to allow trailing 'dnl'-style comments
|
1124
|
+
dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
|
1125
|
+
])
|
1126
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/init.m4:198: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
|
1127
|
+
_am_arg=$1
|
1128
|
+
_am_stamp_count=1
|
1129
|
+
for _am_header in $config_headers :; do
|
1130
|
+
case $_am_header in
|
1131
|
+
$_am_arg | $_am_arg:* )
|
1132
|
+
break ;;
|
1133
|
+
* )
|
1134
|
+
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
1135
|
+
esac
|
1136
|
+
done
|
1137
|
+
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
1138
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/install-sh.m4:21: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
1139
|
+
if test x"${install_sh+set}" != xset; then
|
1140
|
+
case $am_aux_dir in
|
1141
|
+
*\ * | *\ *)
|
1142
|
+
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
1143
|
+
*)
|
1144
|
+
install_sh="\${SHELL} $am_aux_dir/install-sh"
|
1145
|
+
esac
|
1146
|
+
fi
|
1147
|
+
AC_SUBST([install_sh])])
|
1148
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/lead-dot.m4:19: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
|
1149
|
+
mkdir .tst 2>/dev/null
|
1150
|
+
if test -d .tst; then
|
1151
|
+
am__leading_dot=.
|
1152
|
+
else
|
1153
|
+
am__leading_dot=_
|
1154
|
+
fi
|
1155
|
+
rmdir .tst 2>/dev/null
|
1156
|
+
AC_SUBST([am__leading_dot])])
|
1157
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/make.m4:49: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
|
1158
|
+
cat > confinc << 'END'
|
1159
|
+
am__doit:
|
1160
|
+
@echo this is the am__doit target
|
1161
|
+
.PHONY: am__doit
|
1162
|
+
END
|
1163
|
+
# If we don't find an include directive, just comment out the code.
|
1164
|
+
AC_MSG_CHECKING([for style of include used by $am_make])
|
1165
|
+
am__include="#"
|
1166
|
+
am__quote=
|
1167
|
+
_am_result=none
|
1168
|
+
# First try GNU make style include.
|
1169
|
+
echo "include confinc" > confmf
|
1170
|
+
# Ignore all kinds of additional output from 'make'.
|
1171
|
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
1172
|
+
*the\ am__doit\ target*)
|
1173
|
+
am__include=include
|
1174
|
+
am__quote=
|
1175
|
+
_am_result=GNU
|
1176
|
+
;;
|
1177
|
+
esac
|
1178
|
+
# Now try BSD make style include.
|
1179
|
+
if test "$am__include" = "#"; then
|
1180
|
+
echo '.include "confinc"' > confmf
|
1181
|
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
1182
|
+
*the\ am__doit\ target*)
|
1183
|
+
am__include=.include
|
1184
|
+
am__quote="\""
|
1185
|
+
_am_result=BSD
|
1186
|
+
;;
|
1187
|
+
esac
|
1188
|
+
fi
|
1189
|
+
AC_SUBST([am__include])
|
1190
|
+
AC_SUBST([am__quote])
|
1191
|
+
AC_MSG_RESULT([$_am_result])
|
1192
|
+
rm -f confinc confmf
|
1193
|
+
])
|
1194
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
|
1195
|
+
$1=${$1-"${am_missing_run}$2"}
|
1196
|
+
AC_SUBST($1)])
|
1197
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/missing.m4:38: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
1198
|
+
AC_REQUIRE_AUX_FILE([missing])dnl
|
1199
|
+
if test x"${MISSING+set}" != xset; then
|
1200
|
+
case $am_aux_dir in
|
1201
|
+
*\ * | *\ *)
|
1202
|
+
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
|
1203
|
+
*)
|
1204
|
+
MISSING="\${SHELL} $am_aux_dir/missing" ;;
|
1205
|
+
esac
|
1206
|
+
fi
|
1207
|
+
# Use eval to expand $SHELL
|
1208
|
+
if eval "$MISSING --is-lightweight"; then
|
1209
|
+
am_missing_run="$MISSING "
|
1210
|
+
else
|
1211
|
+
am_missing_run=
|
1212
|
+
AC_MSG_WARN(['missing' script is too old or missing])
|
1213
|
+
fi
|
1214
|
+
])
|
1215
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:12: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
|
1216
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:18: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
|
1217
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:24: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
1218
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:30: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
1219
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/prog-cc-c-o.m4:44: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
1220
|
+
AC_REQUIRE_AUX_FILE([compile])dnl
|
1221
|
+
AC_LANG_PUSH([C])dnl
|
1222
|
+
AC_CACHE_CHECK(
|
1223
|
+
[whether $CC understands -c and -o together],
|
1224
|
+
[am_cv_prog_cc_c_o],
|
1225
|
+
[AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
|
1226
|
+
# Make sure it works both with $CC and with simple cc.
|
1227
|
+
# Following AC_PROG_CC_C_O, we do the test twice because some
|
1228
|
+
# compilers refuse to overwrite an existing .o file with -o,
|
1229
|
+
# though they will create one.
|
1230
|
+
am_cv_prog_cc_c_o=yes
|
1231
|
+
for am_i in 1 2; do
|
1232
|
+
if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
|
1233
|
+
&& test -f conftest2.$ac_objext; then
|
1234
|
+
: OK
|
1235
|
+
else
|
1236
|
+
am_cv_prog_cc_c_o=no
|
1237
|
+
break
|
1238
|
+
fi
|
1239
|
+
done
|
1240
|
+
rm -f core conftest*
|
1241
|
+
unset am_i])
|
1242
|
+
if test "$am_cv_prog_cc_c_o" != yes; then
|
1243
|
+
# Losing compiler, so override with the script.
|
1244
|
+
# FIXME: It is wrong to rewrite CC.
|
1245
|
+
# But if we don't then we get into trouble of one sort or another.
|
1246
|
+
# A longer-term fix would be to have automake use am__CC in this case,
|
1247
|
+
# and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
|
1248
|
+
CC="$am_aux_dir/compile $CC"
|
1249
|
+
fi
|
1250
|
+
AC_LANG_POP([C])])
|
1251
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
|
1252
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
|
1253
|
+
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
|
1254
|
+
ac_status=$?
|
1255
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
1256
|
+
(exit $ac_status); }])
|
1257
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/sanity.m4:82: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
|
1258
|
+
# Reject unsafe characters in $srcdir or the absolute working directory
|
1259
|
+
# name. Accept space and tab only in the latter.
|
1260
|
+
am_lf='
|
1261
|
+
'
|
1262
|
+
case `pwd` in
|
1263
|
+
*[[\\\"\#\$\&\'\`$am_lf]]*)
|
1264
|
+
AC_MSG_ERROR([unsafe absolute working directory name]);;
|
1265
|
+
esac
|
1266
|
+
case $srcdir in
|
1267
|
+
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
|
1268
|
+
AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
|
1269
|
+
esac
|
1270
|
+
|
1271
|
+
# Do 'set' in a subshell so we don't clobber the current shell's
|
1272
|
+
# arguments. Must try -L first in case configure is actually a
|
1273
|
+
# symlink; some systems play weird games with the mod time of symlinks
|
1274
|
+
# (eg FreeBSD returns the mod time of the symlink's containing
|
1275
|
+
# directory).
|
1276
|
+
if (
|
1277
|
+
am_has_slept=no
|
1278
|
+
for am_try in 1 2; do
|
1279
|
+
echo "timestamp, slept: $am_has_slept" > conftest.file
|
1280
|
+
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
|
1281
|
+
if test "$[*]" = "X"; then
|
1282
|
+
# -L didn't work.
|
1283
|
+
set X `ls -t "$srcdir/configure" conftest.file`
|
1284
|
+
fi
|
1285
|
+
if test "$[*]" != "X $srcdir/configure conftest.file" \
|
1286
|
+
&& test "$[*]" != "X conftest.file $srcdir/configure"; then
|
1287
|
+
|
1288
|
+
# If neither matched, then we have a broken ls. This can happen
|
1289
|
+
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
1290
|
+
# broken ls alias from the environment. This has actually
|
1291
|
+
# happened. Such a system could not be considered "sane".
|
1292
|
+
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
|
1293
|
+
alias in your environment])
|
1294
|
+
fi
|
1295
|
+
if test "$[2]" = conftest.file || test $am_try -eq 2; then
|
1296
|
+
break
|
1297
|
+
fi
|
1298
|
+
# Just in case.
|
1299
|
+
sleep 1
|
1300
|
+
am_has_slept=yes
|
1301
|
+
done
|
1302
|
+
test "$[2]" = conftest.file
|
1303
|
+
)
|
1304
|
+
then
|
1305
|
+
# Ok.
|
1306
|
+
:
|
1307
|
+
else
|
1308
|
+
AC_MSG_ERROR([newly created file is older than distributed files!
|
1309
|
+
Check your system clock])
|
1310
|
+
fi
|
1311
|
+
AC_MSG_RESULT([yes])
|
1312
|
+
# If we didn't sleep, we still need to ensure time stamps of config.status and
|
1313
|
+
# generated files are strictly newer.
|
1314
|
+
am_sleep_pid=
|
1315
|
+
if grep 'slept: no' conftest.file >/dev/null 2>&1; then
|
1316
|
+
( sleep 1 ) &
|
1317
|
+
am_sleep_pid=$!
|
1318
|
+
fi
|
1319
|
+
AC_CONFIG_COMMANDS_PRE(
|
1320
|
+
[AC_MSG_CHECKING([that generated files are newer than configure])
|
1321
|
+
if test -n "$am_sleep_pid"; then
|
1322
|
+
# Hide warnings about reused PIDs.
|
1323
|
+
wait $am_sleep_pid 2>/dev/null
|
1324
|
+
fi
|
1325
|
+
AC_MSG_RESULT([done])])
|
1326
|
+
rm -f conftest.file
|
1327
|
+
])
|
1328
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/silent.m4:60: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
|
1329
|
+
AS_HELP_STRING(
|
1330
|
+
[--enable-silent-rules],
|
1331
|
+
[less verbose build output (undo: "make V=1")])
|
1332
|
+
AS_HELP_STRING(
|
1333
|
+
[--disable-silent-rules],
|
1334
|
+
[verbose build output (undo: "make V=0")])dnl
|
1335
|
+
])
|
1336
|
+
case $enable_silent_rules in @%:@ (((
|
1337
|
+
yes) AM_DEFAULT_VERBOSITY=0;;
|
1338
|
+
no) AM_DEFAULT_VERBOSITY=1;;
|
1339
|
+
*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
|
1340
|
+
esac
|
1341
|
+
dnl
|
1342
|
+
dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
|
1343
|
+
dnl do not support nested variable expansions.
|
1344
|
+
dnl See automake bug#9928 and bug#10237.
|
1345
|
+
am_make=${MAKE-make}
|
1346
|
+
AC_CACHE_CHECK([whether $am_make supports nested variables],
|
1347
|
+
[am_cv_make_support_nested_variables],
|
1348
|
+
[if AS_ECHO([['TRUE=$(BAR$(V))
|
1349
|
+
BAR0=false
|
1350
|
+
BAR1=true
|
1351
|
+
V=1
|
1352
|
+
am__doit:
|
1353
|
+
@$(TRUE)
|
1354
|
+
.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
|
1355
|
+
am_cv_make_support_nested_variables=yes
|
1356
|
+
else
|
1357
|
+
am_cv_make_support_nested_variables=no
|
1358
|
+
fi])
|
1359
|
+
if test $am_cv_make_support_nested_variables = yes; then
|
1360
|
+
dnl Using '$V' instead of '$(V)' breaks IRIX make.
|
1361
|
+
AM_V='$(V)'
|
1362
|
+
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
|
1363
|
+
else
|
1364
|
+
AM_V=$AM_DEFAULT_VERBOSITY
|
1365
|
+
AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
|
1366
|
+
fi
|
1367
|
+
AC_SUBST([AM_V])dnl
|
1368
|
+
AM_SUBST_NOTMAKE([AM_V])dnl
|
1369
|
+
AC_SUBST([AM_DEFAULT_V])dnl
|
1370
|
+
AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
|
1371
|
+
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
|
1372
|
+
AM_BACKSLASH='\'
|
1373
|
+
AC_SUBST([AM_BACKSLASH])dnl
|
1374
|
+
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
|
1375
|
+
])
|
1376
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
1377
|
+
# Installed binaries are usually stripped using 'strip' when the user
|
1378
|
+
# run "make install-strip". However 'strip' might not be the right
|
1379
|
+
# tool to use in cross-compilation environments, therefore Automake
|
1380
|
+
# will honor the 'STRIP' environment variable to overrule this program.
|
1381
|
+
dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
|
1382
|
+
if test "$cross_compiling" != no; then
|
1383
|
+
AC_CHECK_TOOL([STRIP], [strip], :)
|
1384
|
+
fi
|
1385
|
+
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
1386
|
+
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
1387
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
|
1388
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
1389
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/tar.m4:132: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
|
1390
|
+
# in the wild :-( We should find a proper way to deprecate it ...
|
1391
|
+
AC_SUBST([AMTAR], ['$${TAR-tar}'])
|
1392
|
+
|
1393
|
+
# We'll loop over all known methods to create a tar archive until one works.
|
1394
|
+
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
|
1395
|
+
|
1396
|
+
m4_if([$1], [v7],
|
1397
|
+
[am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
|
1398
|
+
|
1399
|
+
[m4_case([$1],
|
1400
|
+
[ustar],
|
1401
|
+
[# The POSIX 1988 'ustar' format is defined with fixed-size fields.
|
1402
|
+
# There is notably a 21 bits limit for the UID and the GID. In fact,
|
1403
|
+
# the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
|
1404
|
+
# and bug#13588).
|
1405
|
+
am_max_uid=2097151 # 2^21 - 1
|
1406
|
+
am_max_gid=$am_max_uid
|
1407
|
+
# The $UID and $GID variables are not portable, so we need to resort
|
1408
|
+
# to the POSIX-mandated id(1) utility. Errors in the 'id' calls
|
1409
|
+
# below are definitely unexpected, so allow the users to see them
|
1410
|
+
# (that is, avoid stderr redirection).
|
1411
|
+
am_uid=`id -u || echo unknown`
|
1412
|
+
am_gid=`id -g || echo unknown`
|
1413
|
+
AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
|
1414
|
+
if test $am_uid -le $am_max_uid; then
|
1415
|
+
AC_MSG_RESULT([yes])
|
1416
|
+
else
|
1417
|
+
AC_MSG_RESULT([no])
|
1418
|
+
_am_tools=none
|
1419
|
+
fi
|
1420
|
+
AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
|
1421
|
+
if test $am_gid -le $am_max_gid; then
|
1422
|
+
AC_MSG_RESULT([yes])
|
1423
|
+
else
|
1424
|
+
AC_MSG_RESULT([no])
|
1425
|
+
_am_tools=none
|
1426
|
+
fi],
|
1427
|
+
|
1428
|
+
[pax],
|
1429
|
+
[],
|
1430
|
+
|
1431
|
+
[m4_fatal([Unknown tar format])])
|
1432
|
+
|
1433
|
+
AC_MSG_CHECKING([how to create a $1 tar archive])
|
1434
|
+
|
1435
|
+
# Go ahead even if we have the value already cached. We do so because we
|
1436
|
+
# need to set the values for the 'am__tar' and 'am__untar' variables.
|
1437
|
+
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
|
1438
|
+
|
1439
|
+
for _am_tool in $_am_tools; do
|
1440
|
+
case $_am_tool in
|
1441
|
+
gnutar)
|
1442
|
+
for _am_tar in tar gnutar gtar; do
|
1443
|
+
AM_RUN_LOG([$_am_tar --version]) && break
|
1444
|
+
done
|
1445
|
+
am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
|
1446
|
+
am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
|
1447
|
+
am__untar="$_am_tar -xf -"
|
1448
|
+
;;
|
1449
|
+
plaintar)
|
1450
|
+
# Must skip GNU tar: if it does not support --format= it doesn't create
|
1451
|
+
# ustar tarball either.
|
1452
|
+
(tar --version) >/dev/null 2>&1 && continue
|
1453
|
+
am__tar='tar chf - "$$tardir"'
|
1454
|
+
am__tar_='tar chf - "$tardir"'
|
1455
|
+
am__untar='tar xf -'
|
1456
|
+
;;
|
1457
|
+
pax)
|
1458
|
+
am__tar='pax -L -x $1 -w "$$tardir"'
|
1459
|
+
am__tar_='pax -L -x $1 -w "$tardir"'
|
1460
|
+
am__untar='pax -r'
|
1461
|
+
;;
|
1462
|
+
cpio)
|
1463
|
+
am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
|
1464
|
+
am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
|
1465
|
+
am__untar='cpio -i -H $1 -d'
|
1466
|
+
;;
|
1467
|
+
none)
|
1468
|
+
am__tar=false
|
1469
|
+
am__tar_=false
|
1470
|
+
am__untar=false
|
1471
|
+
;;
|
1472
|
+
esac
|
1473
|
+
|
1474
|
+
# If the value was cached, stop now. We just wanted to have am__tar
|
1475
|
+
# and am__untar set.
|
1476
|
+
test -n "${am_cv_prog_tar_$1}" && break
|
1477
|
+
|
1478
|
+
# tar/untar a dummy directory, and stop if the command works.
|
1479
|
+
rm -rf conftest.dir
|
1480
|
+
mkdir conftest.dir
|
1481
|
+
echo GrepMe > conftest.dir/file
|
1482
|
+
AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
|
1483
|
+
rm -rf conftest.dir
|
1484
|
+
if test -s conftest.tar; then
|
1485
|
+
AM_RUN_LOG([$am__untar <conftest.tar])
|
1486
|
+
AM_RUN_LOG([cat conftest.dir/file])
|
1487
|
+
grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
|
1488
|
+
fi
|
1489
|
+
done
|
1490
|
+
rm -rf conftest.dir
|
1491
|
+
|
1492
|
+
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
|
1493
|
+
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
|
1494
|
+
|
1495
|
+
AC_SUBST([am__tar])
|
1496
|
+
AC_SUBST([am__untar])
|
1497
|
+
])
|
1498
|
+
m4trace:m4/libtool.m4:96: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
|
1499
|
+
AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
|
1500
|
+
AC_BEFORE([$0], [LT_LANG])dnl
|
1501
|
+
AC_BEFORE([$0], [LT_OUTPUT])dnl
|
1502
|
+
AC_BEFORE([$0], [LTDL_INIT])dnl
|
1503
|
+
m4_require([_LT_CHECK_BUILDDIR])dnl
|
1504
|
+
|
1505
|
+
dnl Autoconf doesn't catch unexpanded LT_ macros by default:
|
1506
|
+
m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
|
1507
|
+
m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
|
1508
|
+
dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
|
1509
|
+
dnl unless we require an AC_DEFUNed macro:
|
1510
|
+
AC_REQUIRE([LTOPTIONS_VERSION])dnl
|
1511
|
+
AC_REQUIRE([LTSUGAR_VERSION])dnl
|
1512
|
+
AC_REQUIRE([LTVERSION_VERSION])dnl
|
1513
|
+
AC_REQUIRE([LTOBSOLETE_VERSION])dnl
|
1514
|
+
m4_require([_LT_PROG_LTMAIN])dnl
|
1515
|
+
|
1516
|
+
_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
|
1517
|
+
|
1518
|
+
dnl Parse OPTIONS
|
1519
|
+
_LT_SET_OPTIONS([$0], [$1])
|
1520
|
+
|
1521
|
+
# This can be used to rebuild libtool when needed
|
1522
|
+
LIBTOOL_DEPS=$ltmain
|
1523
|
+
|
1524
|
+
# Always use our own libtool.
|
1525
|
+
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
1526
|
+
AC_SUBST(LIBTOOL)dnl
|
1527
|
+
|
1528
|
+
_LT_SETUP
|
1529
|
+
|
1530
|
+
# Only expand once:
|
1531
|
+
m4_define([LT_INIT])
|
1532
|
+
])
|
1533
|
+
m4trace:m4/libtool.m4:99: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1534
|
+
m4trace:m4/libtool.m4:99: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
1535
|
+
You should run autoupdate.])dnl
|
1536
|
+
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1537
|
+
m4trace:m4/libtool.m4:100: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1538
|
+
m4trace:m4/libtool.m4:100: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
|
1539
|
+
You should run autoupdate.])dnl
|
1540
|
+
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1541
|
+
m4trace:m4/libtool.m4:704: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
|
1542
|
+
AC_MSG_NOTICE([creating $CONFIG_LT])
|
1543
|
+
_LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
|
1544
|
+
[# Run this file to recreate a libtool stub with the current configuration.])
|
1545
|
+
|
1546
|
+
cat >>"$CONFIG_LT" <<\_LTEOF
|
1547
|
+
lt_cl_silent=false
|
1548
|
+
exec AS_MESSAGE_LOG_FD>>config.log
|
1549
|
+
{
|
1550
|
+
echo
|
1551
|
+
AS_BOX([Running $as_me.])
|
1552
|
+
} >&AS_MESSAGE_LOG_FD
|
1553
|
+
|
1554
|
+
lt_cl_help="\
|
1555
|
+
'$as_me' creates a local libtool stub from the current configuration,
|
1556
|
+
for use in further configure time tests before the real libtool is
|
1557
|
+
generated.
|
1558
|
+
|
1559
|
+
Usage: $[0] [[OPTIONS]]
|
1560
|
+
|
1561
|
+
-h, --help print this help, then exit
|
1562
|
+
-V, --version print version number, then exit
|
1563
|
+
-q, --quiet do not print progress messages
|
1564
|
+
-d, --debug don't remove temporary files
|
1565
|
+
|
1566
|
+
Report bugs to <bug-libtool@gnu.org>."
|
1567
|
+
|
1568
|
+
lt_cl_version="\
|
1569
|
+
m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
|
1570
|
+
m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
|
1571
|
+
configured by $[0], generated by m4_PACKAGE_STRING.
|
1572
|
+
|
1573
|
+
Copyright (C) 2011 Free Software Foundation, Inc.
|
1574
|
+
This config.lt script is free software; the Free Software Foundation
|
1575
|
+
gives unlimited permision to copy, distribute and modify it."
|
1576
|
+
|
1577
|
+
while test 0 != $[#]
|
1578
|
+
do
|
1579
|
+
case $[1] in
|
1580
|
+
--version | --v* | -V )
|
1581
|
+
echo "$lt_cl_version"; exit 0 ;;
|
1582
|
+
--help | --h* | -h )
|
1583
|
+
echo "$lt_cl_help"; exit 0 ;;
|
1584
|
+
--debug | --d* | -d )
|
1585
|
+
debug=: ;;
|
1586
|
+
--quiet | --q* | --silent | --s* | -q )
|
1587
|
+
lt_cl_silent=: ;;
|
1588
|
+
|
1589
|
+
-*) AC_MSG_ERROR([unrecognized option: $[1]
|
1590
|
+
Try '$[0] --help' for more information.]) ;;
|
1591
|
+
|
1592
|
+
*) AC_MSG_ERROR([unrecognized argument: $[1]
|
1593
|
+
Try '$[0] --help' for more information.]) ;;
|
1594
|
+
esac
|
1595
|
+
shift
|
1596
|
+
done
|
1597
|
+
|
1598
|
+
if $lt_cl_silent; then
|
1599
|
+
exec AS_MESSAGE_FD>/dev/null
|
1600
|
+
fi
|
1601
|
+
_LTEOF
|
1602
|
+
|
1603
|
+
cat >>"$CONFIG_LT" <<_LTEOF
|
1604
|
+
_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
|
1605
|
+
_LTEOF
|
1606
|
+
|
1607
|
+
cat >>"$CONFIG_LT" <<\_LTEOF
|
1608
|
+
AC_MSG_NOTICE([creating $ofile])
|
1609
|
+
_LT_OUTPUT_LIBTOOL_COMMANDS
|
1610
|
+
AS_EXIT(0)
|
1611
|
+
_LTEOF
|
1612
|
+
chmod +x "$CONFIG_LT"
|
1613
|
+
|
1614
|
+
# configure is writing to config.log, but config.lt does its own redirection,
|
1615
|
+
# appending to config.log, which fails on DOS, as config.log is still kept
|
1616
|
+
# open by configure. Here we exec the FD to /dev/null, effectively closing
|
1617
|
+
# config.log, so it can be properly (re)opened and appended to by config.lt.
|
1618
|
+
lt_cl_success=:
|
1619
|
+
test yes = "$silent" &&
|
1620
|
+
lt_config_lt_args="$lt_config_lt_args --quiet"
|
1621
|
+
exec AS_MESSAGE_LOG_FD>/dev/null
|
1622
|
+
$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
|
1623
|
+
exec AS_MESSAGE_LOG_FD>>config.log
|
1624
|
+
$lt_cl_success || AS_EXIT(1)
|
1625
|
+
])
|
1626
|
+
m4trace:m4/libtool.m4:811: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
|
1627
|
+
m4trace:m4/libtool.m4:835: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
|
1628
|
+
m4_case([$1],
|
1629
|
+
[C], [_LT_LANG(C)],
|
1630
|
+
[C++], [_LT_LANG(CXX)],
|
1631
|
+
[Go], [_LT_LANG(GO)],
|
1632
|
+
[Java], [_LT_LANG(GCJ)],
|
1633
|
+
[Fortran 77], [_LT_LANG(F77)],
|
1634
|
+
[Fortran], [_LT_LANG(FC)],
|
1635
|
+
[Windows Resource], [_LT_LANG(RC)],
|
1636
|
+
[m4_ifdef([_LT_LANG_]$1[_CONFIG],
|
1637
|
+
[_LT_LANG($1)],
|
1638
|
+
[m4_fatal([$0: unsupported language: "$1"])])])dnl
|
1639
|
+
])
|
1640
|
+
m4trace:m4/libtool.m4:914: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
|
1641
|
+
m4trace:m4/libtool.m4:914: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
|
1642
|
+
You should run autoupdate.])dnl
|
1643
|
+
LT_LANG(C++)])
|
1644
|
+
m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
|
1645
|
+
m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
|
1646
|
+
You should run autoupdate.])dnl
|
1647
|
+
LT_LANG(Fortran 77)])
|
1648
|
+
m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
|
1649
|
+
m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
|
1650
|
+
You should run autoupdate.])dnl
|
1651
|
+
LT_LANG(Fortran)])
|
1652
|
+
m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
|
1653
|
+
m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
|
1654
|
+
You should run autoupdate.])dnl
|
1655
|
+
LT_LANG(Java)])
|
1656
|
+
m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
|
1657
|
+
m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
|
1658
|
+
You should run autoupdate.])dnl
|
1659
|
+
LT_LANG(Windows Resource)])
|
1660
|
+
m4trace:m4/libtool.m4:1276: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
|
1661
|
+
AC_ARG_WITH([sysroot],
|
1662
|
+
[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
|
1663
|
+
[Search for dependent libraries within DIR (or the compiler's sysroot
|
1664
|
+
if not specified).])],
|
1665
|
+
[], [with_sysroot=no])
|
1666
|
+
|
1667
|
+
dnl lt_sysroot will always be passed unquoted. We quote it here
|
1668
|
+
dnl in case the user passed a directory name.
|
1669
|
+
lt_sysroot=
|
1670
|
+
case $with_sysroot in #(
|
1671
|
+
yes)
|
1672
|
+
if test yes = "$GCC"; then
|
1673
|
+
lt_sysroot=`$CC --print-sysroot 2>/dev/null`
|
1674
|
+
fi
|
1675
|
+
;; #(
|
1676
|
+
/*)
|
1677
|
+
lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
|
1678
|
+
;; #(
|
1679
|
+
no|'')
|
1680
|
+
;; #(
|
1681
|
+
*)
|
1682
|
+
AC_MSG_RESULT([$with_sysroot])
|
1683
|
+
AC_MSG_ERROR([The sysroot must be an absolute path.])
|
1684
|
+
;;
|
1685
|
+
esac
|
1686
|
+
|
1687
|
+
AC_MSG_RESULT([${lt_sysroot:-no}])
|
1688
|
+
_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
|
1689
|
+
[dependent libraries, and where our libraries should be installed.])])
|
1690
|
+
m4trace:m4/libtool.m4:1616: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
1691
|
+
m4_require([_LT_DECL_SED])dnl
|
1692
|
+
AC_CACHE_CHECK([$1], [$2],
|
1693
|
+
[$2=no
|
1694
|
+
m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
|
1695
|
+
echo "$lt_simple_compile_test_code" > conftest.$ac_ext
|
1696
|
+
lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
|
1697
|
+
# Insert the option either (1) after the last *FLAGS variable, or
|
1698
|
+
# (2) before a word containing "conftest.", or (3) at the end.
|
1699
|
+
# Note that $ac_compile itself does not contain backslashes and begins
|
1700
|
+
# with a dollar sign (not a hyphen), so the echo should work correctly.
|
1701
|
+
# The option is referenced via a variable to avoid confusing sed.
|
1702
|
+
lt_compile=`echo "$ac_compile" | $SED \
|
1703
|
+
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
1704
|
+
-e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
|
1705
|
+
-e 's:$: $lt_compiler_flag:'`
|
1706
|
+
(eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
|
1707
|
+
(eval "$lt_compile" 2>conftest.err)
|
1708
|
+
ac_status=$?
|
1709
|
+
cat conftest.err >&AS_MESSAGE_LOG_FD
|
1710
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
1711
|
+
if (exit $ac_status) && test -s "$ac_outfile"; then
|
1712
|
+
# The compiler can only warn and ignore the option if not recognized
|
1713
|
+
# So say no if there are warnings other than the usual output.
|
1714
|
+
$ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
|
1715
|
+
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
1716
|
+
if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
|
1717
|
+
$2=yes
|
1718
|
+
fi
|
1719
|
+
fi
|
1720
|
+
$RM conftest*
|
1721
|
+
])
|
1722
|
+
|
1723
|
+
if test yes = "[$]$2"; then
|
1724
|
+
m4_if([$5], , :, [$5])
|
1725
|
+
else
|
1726
|
+
m4_if([$6], , :, [$6])
|
1727
|
+
fi
|
1728
|
+
])
|
1729
|
+
m4trace:m4/libtool.m4:1619: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
1730
|
+
m4trace:m4/libtool.m4:1619: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
|
1731
|
+
You should run autoupdate.])dnl
|
1732
|
+
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
1733
|
+
m4trace:m4/libtool.m4:1660: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
1734
|
+
m4_require([_LT_DECL_SED])dnl
|
1735
|
+
AC_CACHE_CHECK([$1], [$2],
|
1736
|
+
[$2=no
|
1737
|
+
save_LDFLAGS=$LDFLAGS
|
1738
|
+
LDFLAGS="$LDFLAGS $3"
|
1739
|
+
echo "$lt_simple_link_test_code" > conftest.$ac_ext
|
1740
|
+
if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
|
1741
|
+
# The linker can only warn and ignore the option if not recognized
|
1742
|
+
# So say no if there are warnings
|
1743
|
+
if test -s conftest.err; then
|
1744
|
+
# Append any errors to the config.log.
|
1745
|
+
cat conftest.err 1>&AS_MESSAGE_LOG_FD
|
1746
|
+
$ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
|
1747
|
+
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
1748
|
+
if diff conftest.exp conftest.er2 >/dev/null; then
|
1749
|
+
$2=yes
|
1750
|
+
fi
|
1751
|
+
else
|
1752
|
+
$2=yes
|
1753
|
+
fi
|
1754
|
+
fi
|
1755
|
+
$RM -r conftest*
|
1756
|
+
LDFLAGS=$save_LDFLAGS
|
1757
|
+
])
|
1758
|
+
|
1759
|
+
if test yes = "[$]$2"; then
|
1760
|
+
m4_if([$4], , :, [$4])
|
1761
|
+
else
|
1762
|
+
m4_if([$5], , :, [$5])
|
1763
|
+
fi
|
1764
|
+
])
|
1765
|
+
m4trace:m4/libtool.m4:1663: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
1766
|
+
m4trace:m4/libtool.m4:1663: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
|
1767
|
+
You should run autoupdate.])dnl
|
1768
|
+
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
1769
|
+
m4trace:m4/libtool.m4:1806: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
1770
|
+
# find the maximum length of command line arguments
|
1771
|
+
AC_MSG_CHECKING([the maximum length of command line arguments])
|
1772
|
+
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
1773
|
+
i=0
|
1774
|
+
teststring=ABCD
|
1775
|
+
|
1776
|
+
case $build_os in
|
1777
|
+
msdosdjgpp*)
|
1778
|
+
# On DJGPP, this test can blow up pretty badly due to problems in libc
|
1779
|
+
# (any single argument exceeding 2000 bytes causes a buffer overrun
|
1780
|
+
# during glob expansion). Even if it were fixed, the result of this
|
1781
|
+
# check would be larger than it should be.
|
1782
|
+
lt_cv_sys_max_cmd_len=12288; # 12K is about right
|
1783
|
+
;;
|
1784
|
+
|
1785
|
+
gnu*)
|
1786
|
+
# Under GNU Hurd, this test is not required because there is
|
1787
|
+
# no limit to the length of command line arguments.
|
1788
|
+
# Libtool will interpret -1 as no limit whatsoever
|
1789
|
+
lt_cv_sys_max_cmd_len=-1;
|
1790
|
+
;;
|
1791
|
+
|
1792
|
+
cygwin* | mingw* | cegcc*)
|
1793
|
+
# On Win9x/ME, this test blows up -- it succeeds, but takes
|
1794
|
+
# about 5 minutes as the teststring grows exponentially.
|
1795
|
+
# Worse, since 9x/ME are not pre-emptively multitasking,
|
1796
|
+
# you end up with a "frozen" computer, even though with patience
|
1797
|
+
# the test eventually succeeds (with a max line length of 256k).
|
1798
|
+
# Instead, let's just punt: use the minimum linelength reported by
|
1799
|
+
# all of the supported platforms: 8192 (on NT/2K/XP).
|
1800
|
+
lt_cv_sys_max_cmd_len=8192;
|
1801
|
+
;;
|
1802
|
+
|
1803
|
+
mint*)
|
1804
|
+
# On MiNT this can take a long time and run out of memory.
|
1805
|
+
lt_cv_sys_max_cmd_len=8192;
|
1806
|
+
;;
|
1807
|
+
|
1808
|
+
amigaos*)
|
1809
|
+
# On AmigaOS with pdksh, this test takes hours, literally.
|
1810
|
+
# So we just punt and use a minimum line length of 8192.
|
1811
|
+
lt_cv_sys_max_cmd_len=8192;
|
1812
|
+
;;
|
1813
|
+
|
1814
|
+
bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
|
1815
|
+
# This has been around since 386BSD, at least. Likely further.
|
1816
|
+
if test -x /sbin/sysctl; then
|
1817
|
+
lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
|
1818
|
+
elif test -x /usr/sbin/sysctl; then
|
1819
|
+
lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
|
1820
|
+
else
|
1821
|
+
lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
|
1822
|
+
fi
|
1823
|
+
# And add a safety zone
|
1824
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
|
1825
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
|
1826
|
+
;;
|
1827
|
+
|
1828
|
+
interix*)
|
1829
|
+
# We know the value 262144 and hardcode it with a safety zone (like BSD)
|
1830
|
+
lt_cv_sys_max_cmd_len=196608
|
1831
|
+
;;
|
1832
|
+
|
1833
|
+
os2*)
|
1834
|
+
# The test takes a long time on OS/2.
|
1835
|
+
lt_cv_sys_max_cmd_len=8192
|
1836
|
+
;;
|
1837
|
+
|
1838
|
+
osf*)
|
1839
|
+
# Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
|
1840
|
+
# due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
|
1841
|
+
# nice to cause kernel panics so lets avoid the loop below.
|
1842
|
+
# First set a reasonable default.
|
1843
|
+
lt_cv_sys_max_cmd_len=16384
|
1844
|
+
#
|
1845
|
+
if test -x /sbin/sysconfig; then
|
1846
|
+
case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
|
1847
|
+
*1*) lt_cv_sys_max_cmd_len=-1 ;;
|
1848
|
+
esac
|
1849
|
+
fi
|
1850
|
+
;;
|
1851
|
+
sco3.2v5*)
|
1852
|
+
lt_cv_sys_max_cmd_len=102400
|
1853
|
+
;;
|
1854
|
+
sysv5* | sco5v6* | sysv4.2uw2*)
|
1855
|
+
kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
|
1856
|
+
if test -n "$kargmax"; then
|
1857
|
+
lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
|
1858
|
+
else
|
1859
|
+
lt_cv_sys_max_cmd_len=32768
|
1860
|
+
fi
|
1861
|
+
;;
|
1862
|
+
*)
|
1863
|
+
lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
|
1864
|
+
if test -n "$lt_cv_sys_max_cmd_len" && \
|
1865
|
+
test undefined != "$lt_cv_sys_max_cmd_len"; then
|
1866
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
|
1867
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
|
1868
|
+
else
|
1869
|
+
# Make teststring a little bigger before we do anything with it.
|
1870
|
+
# a 1K string should be a reasonable start.
|
1871
|
+
for i in 1 2 3 4 5 6 7 8; do
|
1872
|
+
teststring=$teststring$teststring
|
1873
|
+
done
|
1874
|
+
SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
|
1875
|
+
# If test is not a shell built-in, we'll probably end up computing a
|
1876
|
+
# maximum length that is only half of the actual maximum length, but
|
1877
|
+
# we can't tell.
|
1878
|
+
while { test X`env echo "$teststring$teststring" 2>/dev/null` \
|
1879
|
+
= "X$teststring$teststring"; } >/dev/null 2>&1 &&
|
1880
|
+
test 17 != "$i" # 1/2 MB should be enough
|
1881
|
+
do
|
1882
|
+
i=`expr $i + 1`
|
1883
|
+
teststring=$teststring$teststring
|
1884
|
+
done
|
1885
|
+
# Only check the string length outside the loop.
|
1886
|
+
lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
|
1887
|
+
teststring=
|
1888
|
+
# Add a significant safety factor because C++ compilers can tack on
|
1889
|
+
# massive amounts of additional arguments before passing them to the
|
1890
|
+
# linker. It appears as though 1/2 is a usable value.
|
1891
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
|
1892
|
+
fi
|
1893
|
+
;;
|
1894
|
+
esac
|
1895
|
+
])
|
1896
|
+
if test -n "$lt_cv_sys_max_cmd_len"; then
|
1897
|
+
AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
|
1898
|
+
else
|
1899
|
+
AC_MSG_RESULT(none)
|
1900
|
+
fi
|
1901
|
+
max_cmd_len=$lt_cv_sys_max_cmd_len
|
1902
|
+
_LT_DECL([], [max_cmd_len], [0],
|
1903
|
+
[What is the maximum length of a command?])
|
1904
|
+
])
|
1905
|
+
m4trace:m4/libtool.m4:1809: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
1906
|
+
m4trace:m4/libtool.m4:1809: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
|
1907
|
+
You should run autoupdate.])dnl
|
1908
|
+
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
1909
|
+
m4trace:m4/libtool.m4:2042: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
|
1910
|
+
if test yes != "$enable_dlopen"; then
|
1911
|
+
enable_dlopen=unknown
|
1912
|
+
enable_dlopen_self=unknown
|
1913
|
+
enable_dlopen_self_static=unknown
|
1914
|
+
else
|
1915
|
+
lt_cv_dlopen=no
|
1916
|
+
lt_cv_dlopen_libs=
|
1917
|
+
|
1918
|
+
case $host_os in
|
1919
|
+
beos*)
|
1920
|
+
lt_cv_dlopen=load_add_on
|
1921
|
+
lt_cv_dlopen_libs=
|
1922
|
+
lt_cv_dlopen_self=yes
|
1923
|
+
;;
|
1924
|
+
|
1925
|
+
mingw* | pw32* | cegcc*)
|
1926
|
+
lt_cv_dlopen=LoadLibrary
|
1927
|
+
lt_cv_dlopen_libs=
|
1928
|
+
;;
|
1929
|
+
|
1930
|
+
cygwin*)
|
1931
|
+
lt_cv_dlopen=dlopen
|
1932
|
+
lt_cv_dlopen_libs=
|
1933
|
+
;;
|
1934
|
+
|
1935
|
+
darwin*)
|
1936
|
+
# if libdl is installed we need to link against it
|
1937
|
+
AC_CHECK_LIB([dl], [dlopen],
|
1938
|
+
[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
|
1939
|
+
lt_cv_dlopen=dyld
|
1940
|
+
lt_cv_dlopen_libs=
|
1941
|
+
lt_cv_dlopen_self=yes
|
1942
|
+
])
|
1943
|
+
;;
|
1944
|
+
|
1945
|
+
tpf*)
|
1946
|
+
# Don't try to run any link tests for TPF. We know it's impossible
|
1947
|
+
# because TPF is a cross-compiler, and we know how we open DSOs.
|
1948
|
+
lt_cv_dlopen=dlopen
|
1949
|
+
lt_cv_dlopen_libs=
|
1950
|
+
lt_cv_dlopen_self=no
|
1951
|
+
;;
|
1952
|
+
|
1953
|
+
*)
|
1954
|
+
AC_CHECK_FUNC([shl_load],
|
1955
|
+
[lt_cv_dlopen=shl_load],
|
1956
|
+
[AC_CHECK_LIB([dld], [shl_load],
|
1957
|
+
[lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
|
1958
|
+
[AC_CHECK_FUNC([dlopen],
|
1959
|
+
[lt_cv_dlopen=dlopen],
|
1960
|
+
[AC_CHECK_LIB([dl], [dlopen],
|
1961
|
+
[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
|
1962
|
+
[AC_CHECK_LIB([svld], [dlopen],
|
1963
|
+
[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
|
1964
|
+
[AC_CHECK_LIB([dld], [dld_link],
|
1965
|
+
[lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
|
1966
|
+
])
|
1967
|
+
])
|
1968
|
+
])
|
1969
|
+
])
|
1970
|
+
])
|
1971
|
+
;;
|
1972
|
+
esac
|
1973
|
+
|
1974
|
+
if test no = "$lt_cv_dlopen"; then
|
1975
|
+
enable_dlopen=no
|
1976
|
+
else
|
1977
|
+
enable_dlopen=yes
|
1978
|
+
fi
|
1979
|
+
|
1980
|
+
case $lt_cv_dlopen in
|
1981
|
+
dlopen)
|
1982
|
+
save_CPPFLAGS=$CPPFLAGS
|
1983
|
+
test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
|
1984
|
+
|
1985
|
+
save_LDFLAGS=$LDFLAGS
|
1986
|
+
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
|
1987
|
+
|
1988
|
+
save_LIBS=$LIBS
|
1989
|
+
LIBS="$lt_cv_dlopen_libs $LIBS"
|
1990
|
+
|
1991
|
+
AC_CACHE_CHECK([whether a program can dlopen itself],
|
1992
|
+
lt_cv_dlopen_self, [dnl
|
1993
|
+
_LT_TRY_DLOPEN_SELF(
|
1994
|
+
lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
|
1995
|
+
lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
|
1996
|
+
])
|
1997
|
+
|
1998
|
+
if test yes = "$lt_cv_dlopen_self"; then
|
1999
|
+
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
|
2000
|
+
AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
|
2001
|
+
lt_cv_dlopen_self_static, [dnl
|
2002
|
+
_LT_TRY_DLOPEN_SELF(
|
2003
|
+
lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
|
2004
|
+
lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
|
2005
|
+
])
|
2006
|
+
fi
|
2007
|
+
|
2008
|
+
CPPFLAGS=$save_CPPFLAGS
|
2009
|
+
LDFLAGS=$save_LDFLAGS
|
2010
|
+
LIBS=$save_LIBS
|
2011
|
+
;;
|
2012
|
+
esac
|
2013
|
+
|
2014
|
+
case $lt_cv_dlopen_self in
|
2015
|
+
yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
|
2016
|
+
*) enable_dlopen_self=unknown ;;
|
2017
|
+
esac
|
2018
|
+
|
2019
|
+
case $lt_cv_dlopen_self_static in
|
2020
|
+
yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
|
2021
|
+
*) enable_dlopen_self_static=unknown ;;
|
2022
|
+
esac
|
2023
|
+
fi
|
2024
|
+
_LT_DECL([dlopen_support], [enable_dlopen], [0],
|
2025
|
+
[Whether dlopen is supported])
|
2026
|
+
_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
|
2027
|
+
[Whether dlopen of programs is supported])
|
2028
|
+
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
|
2029
|
+
[Whether dlopen of statically linked programs is supported])
|
2030
|
+
])
|
2031
|
+
m4trace:m4/libtool.m4:2045: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
2032
|
+
m4trace:m4/libtool.m4:2045: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
|
2033
|
+
You should run autoupdate.])dnl
|
2034
|
+
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
2035
|
+
m4trace:m4/libtool.m4:3209: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
|
2036
|
+
AC_MSG_CHECKING([for $1])
|
2037
|
+
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
|
2038
|
+
[case $MAGIC_CMD in
|
2039
|
+
[[\\/*] | ?:[\\/]*])
|
2040
|
+
lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
|
2041
|
+
;;
|
2042
|
+
*)
|
2043
|
+
lt_save_MAGIC_CMD=$MAGIC_CMD
|
2044
|
+
lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
|
2045
|
+
dnl $ac_dummy forces splitting on constant user-supplied paths.
|
2046
|
+
dnl POSIX.2 word splitting is done only on the output of word expansions,
|
2047
|
+
dnl not every word. This closes a longstanding sh security hole.
|
2048
|
+
ac_dummy="m4_if([$2], , $PATH, [$2])"
|
2049
|
+
for ac_dir in $ac_dummy; do
|
2050
|
+
IFS=$lt_save_ifs
|
2051
|
+
test -z "$ac_dir" && ac_dir=.
|
2052
|
+
if test -f "$ac_dir/$1"; then
|
2053
|
+
lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
|
2054
|
+
if test -n "$file_magic_test_file"; then
|
2055
|
+
case $deplibs_check_method in
|
2056
|
+
"file_magic "*)
|
2057
|
+
file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
|
2058
|
+
MAGIC_CMD=$lt_cv_path_MAGIC_CMD
|
2059
|
+
if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
|
2060
|
+
$EGREP "$file_magic_regex" > /dev/null; then
|
2061
|
+
:
|
2062
|
+
else
|
2063
|
+
cat <<_LT_EOF 1>&2
|
2064
|
+
|
2065
|
+
*** Warning: the command libtool uses to detect shared libraries,
|
2066
|
+
*** $file_magic_cmd, produces output that libtool cannot recognize.
|
2067
|
+
*** The result is that libtool may fail to recognize shared libraries
|
2068
|
+
*** as such. This will affect the creation of libtool libraries that
|
2069
|
+
*** depend on shared libraries, but programs linked with such libtool
|
2070
|
+
*** libraries will work regardless of this problem. Nevertheless, you
|
2071
|
+
*** may want to report the problem to your system manager and/or to
|
2072
|
+
*** bug-libtool@gnu.org
|
2073
|
+
|
2074
|
+
_LT_EOF
|
2075
|
+
fi ;;
|
2076
|
+
esac
|
2077
|
+
fi
|
2078
|
+
break
|
2079
|
+
fi
|
2080
|
+
done
|
2081
|
+
IFS=$lt_save_ifs
|
2082
|
+
MAGIC_CMD=$lt_save_MAGIC_CMD
|
2083
|
+
;;
|
2084
|
+
esac])
|
2085
|
+
MAGIC_CMD=$lt_cv_path_MAGIC_CMD
|
2086
|
+
if test -n "$MAGIC_CMD"; then
|
2087
|
+
AC_MSG_RESULT($MAGIC_CMD)
|
2088
|
+
else
|
2089
|
+
AC_MSG_RESULT(no)
|
2090
|
+
fi
|
2091
|
+
_LT_DECL([], [MAGIC_CMD], [0],
|
2092
|
+
[Used to examine libraries when file_magic_cmd begins with "file"])dnl
|
2093
|
+
])
|
2094
|
+
m4trace:m4/libtool.m4:3212: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
2095
|
+
m4trace:m4/libtool.m4:3212: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
|
2096
|
+
You should run autoupdate.])dnl
|
2097
|
+
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
2098
|
+
m4trace:m4/libtool.m4:3321: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
|
2099
|
+
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
2100
|
+
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
2101
|
+
m4_require([_LT_DECL_SED])dnl
|
2102
|
+
m4_require([_LT_DECL_EGREP])dnl
|
2103
|
+
m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
|
2104
|
+
|
2105
|
+
AC_ARG_WITH([gnu-ld],
|
2106
|
+
[AS_HELP_STRING([--with-gnu-ld],
|
2107
|
+
[assume the C compiler uses GNU ld @<:@default=no@:>@])],
|
2108
|
+
[test no = "$withval" || with_gnu_ld=yes],
|
2109
|
+
[with_gnu_ld=no])dnl
|
2110
|
+
|
2111
|
+
ac_prog=ld
|
2112
|
+
if test yes = "$GCC"; then
|
2113
|
+
# Check if gcc -print-prog-name=ld gives a path.
|
2114
|
+
AC_MSG_CHECKING([for ld used by $CC])
|
2115
|
+
case $host in
|
2116
|
+
*-*-mingw*)
|
2117
|
+
# gcc leaves a trailing carriage return, which upsets mingw
|
2118
|
+
ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
|
2119
|
+
*)
|
2120
|
+
ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
|
2121
|
+
esac
|
2122
|
+
case $ac_prog in
|
2123
|
+
# Accept absolute paths.
|
2124
|
+
[[\\/]]* | ?:[[\\/]]*)
|
2125
|
+
re_direlt='/[[^/]][[^/]]*/\.\./'
|
2126
|
+
# Canonicalize the pathname of ld
|
2127
|
+
ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
|
2128
|
+
while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
|
2129
|
+
ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
|
2130
|
+
done
|
2131
|
+
test -z "$LD" && LD=$ac_prog
|
2132
|
+
;;
|
2133
|
+
"")
|
2134
|
+
# If it fails, then pretend we aren't using GCC.
|
2135
|
+
ac_prog=ld
|
2136
|
+
;;
|
2137
|
+
*)
|
2138
|
+
# If it is relative, then search for the first ld in PATH.
|
2139
|
+
with_gnu_ld=unknown
|
2140
|
+
;;
|
2141
|
+
esac
|
2142
|
+
elif test yes = "$with_gnu_ld"; then
|
2143
|
+
AC_MSG_CHECKING([for GNU ld])
|
2144
|
+
else
|
2145
|
+
AC_MSG_CHECKING([for non-GNU ld])
|
2146
|
+
fi
|
2147
|
+
AC_CACHE_VAL(lt_cv_path_LD,
|
2148
|
+
[if test -z "$LD"; then
|
2149
|
+
lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
|
2150
|
+
for ac_dir in $PATH; do
|
2151
|
+
IFS=$lt_save_ifs
|
2152
|
+
test -z "$ac_dir" && ac_dir=.
|
2153
|
+
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
2154
|
+
lt_cv_path_LD=$ac_dir/$ac_prog
|
2155
|
+
# Check to see if the program is GNU ld. I'd rather use --version,
|
2156
|
+
# but apparently some variants of GNU ld only accept -v.
|
2157
|
+
# Break only if it was the GNU/non-GNU ld that we prefer.
|
2158
|
+
case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
|
2159
|
+
*GNU* | *'with BFD'*)
|
2160
|
+
test no != "$with_gnu_ld" && break
|
2161
|
+
;;
|
2162
|
+
*)
|
2163
|
+
test yes != "$with_gnu_ld" && break
|
2164
|
+
;;
|
2165
|
+
esac
|
2166
|
+
fi
|
2167
|
+
done
|
2168
|
+
IFS=$lt_save_ifs
|
2169
|
+
else
|
2170
|
+
lt_cv_path_LD=$LD # Let the user override the test with a path.
|
2171
|
+
fi])
|
2172
|
+
LD=$lt_cv_path_LD
|
2173
|
+
if test -n "$LD"; then
|
2174
|
+
AC_MSG_RESULT($LD)
|
2175
|
+
else
|
2176
|
+
AC_MSG_RESULT(no)
|
2177
|
+
fi
|
2178
|
+
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
|
2179
|
+
_LT_PATH_LD_GNU
|
2180
|
+
AC_SUBST([LD])
|
2181
|
+
|
2182
|
+
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
|
2183
|
+
])
|
2184
|
+
m4trace:m4/libtool.m4:3324: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2185
|
+
m4trace:m4/libtool.m4:3324: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
|
2186
|
+
You should run autoupdate.])dnl
|
2187
|
+
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2188
|
+
m4trace:m4/libtool.m4:3325: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2189
|
+
m4trace:m4/libtool.m4:3325: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
|
2190
|
+
You should run autoupdate.])dnl
|
2191
|
+
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2192
|
+
m4trace:m4/libtool.m4:3746: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
|
2193
|
+
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
|
2194
|
+
[if test -n "$NM"; then
|
2195
|
+
# Let the user override the test.
|
2196
|
+
lt_cv_path_NM=$NM
|
2197
|
+
else
|
2198
|
+
lt_nm_to_check=${ac_tool_prefix}nm
|
2199
|
+
if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
|
2200
|
+
lt_nm_to_check="$lt_nm_to_check nm"
|
2201
|
+
fi
|
2202
|
+
for lt_tmp_nm in $lt_nm_to_check; do
|
2203
|
+
lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
|
2204
|
+
for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
|
2205
|
+
IFS=$lt_save_ifs
|
2206
|
+
test -z "$ac_dir" && ac_dir=.
|
2207
|
+
tmp_nm=$ac_dir/$lt_tmp_nm
|
2208
|
+
if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
|
2209
|
+
# Check to see if the nm accepts a BSD-compat flag.
|
2210
|
+
# Adding the 'sed 1q' prevents false positives on HP-UX, which says:
|
2211
|
+
# nm: unknown option "B" ignored
|
2212
|
+
# Tru64's nm complains that /dev/null is an invalid object file
|
2213
|
+
# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
|
2214
|
+
case $build_os in
|
2215
|
+
mingw*) lt_bad_file=conftest.nm/nofile ;;
|
2216
|
+
*) lt_bad_file=/dev/null ;;
|
2217
|
+
esac
|
2218
|
+
case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
|
2219
|
+
*$lt_bad_file* | *'Invalid file or object type'*)
|
2220
|
+
lt_cv_path_NM="$tmp_nm -B"
|
2221
|
+
break 2
|
2222
|
+
;;
|
2223
|
+
*)
|
2224
|
+
case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
|
2225
|
+
*/dev/null*)
|
2226
|
+
lt_cv_path_NM="$tmp_nm -p"
|
2227
|
+
break 2
|
2228
|
+
;;
|
2229
|
+
*)
|
2230
|
+
lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
|
2231
|
+
continue # so that we can try to find one that supports BSD flags
|
2232
|
+
;;
|
2233
|
+
esac
|
2234
|
+
;;
|
2235
|
+
esac
|
2236
|
+
fi
|
2237
|
+
done
|
2238
|
+
IFS=$lt_save_ifs
|
2239
|
+
done
|
2240
|
+
: ${lt_cv_path_NM=no}
|
2241
|
+
fi])
|
2242
|
+
if test no != "$lt_cv_path_NM"; then
|
2243
|
+
NM=$lt_cv_path_NM
|
2244
|
+
else
|
2245
|
+
# Didn't find any BSD compatible name lister, look for dumpbin.
|
2246
|
+
if test -n "$DUMPBIN"; then :
|
2247
|
+
# Let the user override the test.
|
2248
|
+
else
|
2249
|
+
AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
|
2250
|
+
case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
|
2251
|
+
*COFF*)
|
2252
|
+
DUMPBIN="$DUMPBIN -symbols -headers"
|
2253
|
+
;;
|
2254
|
+
*)
|
2255
|
+
DUMPBIN=:
|
2256
|
+
;;
|
2257
|
+
esac
|
2258
|
+
fi
|
2259
|
+
AC_SUBST([DUMPBIN])
|
2260
|
+
if test : != "$DUMPBIN"; then
|
2261
|
+
NM=$DUMPBIN
|
2262
|
+
fi
|
2263
|
+
fi
|
2264
|
+
test -z "$NM" && NM=nm
|
2265
|
+
AC_SUBST([NM])
|
2266
|
+
_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
|
2267
|
+
|
2268
|
+
AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
|
2269
|
+
[lt_cv_nm_interface="BSD nm"
|
2270
|
+
echo "int some_variable = 0;" > conftest.$ac_ext
|
2271
|
+
(eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
|
2272
|
+
(eval "$ac_compile" 2>conftest.err)
|
2273
|
+
cat conftest.err >&AS_MESSAGE_LOG_FD
|
2274
|
+
(eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
|
2275
|
+
(eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
|
2276
|
+
cat conftest.err >&AS_MESSAGE_LOG_FD
|
2277
|
+
(eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
|
2278
|
+
cat conftest.out >&AS_MESSAGE_LOG_FD
|
2279
|
+
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
|
2280
|
+
lt_cv_nm_interface="MS dumpbin"
|
2281
|
+
fi
|
2282
|
+
rm -f conftest*])
|
2283
|
+
])
|
2284
|
+
m4trace:m4/libtool.m4:3749: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
2285
|
+
m4trace:m4/libtool.m4:3749: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
|
2286
|
+
You should run autoupdate.])dnl
|
2287
|
+
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
2288
|
+
m4trace:m4/libtool.m4:3750: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
2289
|
+
m4trace:m4/libtool.m4:3750: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
|
2290
|
+
You should run autoupdate.])dnl
|
2291
|
+
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
2292
|
+
m4trace:m4/libtool.m4:3829: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
|
2293
|
+
test DEF = "`$SED -n dnl
|
2294
|
+
-e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
|
2295
|
+
-e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
|
2296
|
+
-e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
|
2297
|
+
-e q dnl Only consider the first "real" line
|
2298
|
+
$1`" dnl
|
2299
|
+
])
|
2300
|
+
m4trace:m4/libtool.m4:3851: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
2301
|
+
LIBM=
|
2302
|
+
case $host in
|
2303
|
+
*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
|
2304
|
+
# These system don't have libm, or don't need it
|
2305
|
+
;;
|
2306
|
+
*-ncr-sysv4.3*)
|
2307
|
+
AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
|
2308
|
+
AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
|
2309
|
+
;;
|
2310
|
+
*)
|
2311
|
+
AC_CHECK_LIB(m, cos, LIBM=-lm)
|
2312
|
+
;;
|
2313
|
+
esac
|
2314
|
+
AC_SUBST([LIBM])
|
2315
|
+
])
|
2316
|
+
m4trace:m4/libtool.m4:3854: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
2317
|
+
m4trace:m4/libtool.m4:3854: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
|
2318
|
+
You should run autoupdate.])dnl
|
2319
|
+
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
2320
|
+
m4trace:m4/libtool.m4:8123: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
|
2321
|
+
[m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
|
2322
|
+
[AC_CHECK_TOOL(GCJ, gcj,)
|
2323
|
+
test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
|
2324
|
+
AC_SUBST(GCJFLAGS)])])[]dnl
|
2325
|
+
])
|
2326
|
+
m4trace:m4/libtool.m4:8126: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
2327
|
+
m4trace:m4/libtool.m4:8126: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
|
2328
|
+
You should run autoupdate.])dnl
|
2329
|
+
m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
2330
|
+
m4trace:m4/libtool.m4:8135: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
|
2331
|
+
])
|
2332
|
+
m4trace:m4/libtool.m4:8142: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
|
2333
|
+
])
|
2334
|
+
m4trace:m4/libtool.m4:8145: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
2335
|
+
m4trace:m4/libtool.m4:8145: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
|
2336
|
+
You should run autoupdate.])dnl
|
2337
|
+
m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
2338
|
+
m4trace:m4/libtool.m4:8265: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
2339
|
+
m4trace:m4/libtool.m4:8265: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
|
2340
|
+
You should run autoupdate.])dnl
|
2341
|
+
m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
2342
|
+
m4trace:m4/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
2343
|
+
m4trace:m4/ltoptions.m4:118: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
|
2344
|
+
AC_DIAGNOSE([obsolete],
|
2345
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2346
|
+
put the 'dlopen' option into LT_INIT's first parameter.])
|
2347
|
+
])
|
2348
|
+
m4trace:m4/ltoptions.m4:118: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
|
2349
|
+
You should run autoupdate.])dnl
|
2350
|
+
_LT_SET_OPTION([LT_INIT], [dlopen])
|
2351
|
+
AC_DIAGNOSE([obsolete],
|
2352
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2353
|
+
put the 'dlopen' option into LT_INIT's first parameter.])
|
2354
|
+
])
|
2355
|
+
m4trace:m4/ltoptions.m4:154: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
2356
|
+
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
2357
|
+
AC_DIAGNOSE([obsolete],
|
2358
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2359
|
+
put the 'win32-dll' option into LT_INIT's first parameter.])
|
2360
|
+
])
|
2361
|
+
m4trace:m4/ltoptions.m4:154: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
|
2362
|
+
You should run autoupdate.])dnl
|
2363
|
+
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
2364
|
+
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
2365
|
+
AC_DIAGNOSE([obsolete],
|
2366
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2367
|
+
put the 'win32-dll' option into LT_INIT's first parameter.])
|
2368
|
+
])
|
2369
|
+
m4trace:m4/ltoptions.m4:199: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
|
2370
|
+
])
|
2371
|
+
m4trace:m4/ltoptions.m4:203: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
|
2372
|
+
])
|
2373
|
+
m4trace:m4/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
|
2374
|
+
m4trace:m4/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
|
2375
|
+
You should run autoupdate.])dnl
|
2376
|
+
AC_ENABLE_SHARED($@)])
|
2377
|
+
m4trace:m4/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
|
2378
|
+
m4trace:m4/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
|
2379
|
+
You should run autoupdate.])dnl
|
2380
|
+
AC_DISABLE_SHARED($@)])
|
2381
|
+
m4trace:m4/ltoptions.m4:253: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
|
2382
|
+
])
|
2383
|
+
m4trace:m4/ltoptions.m4:257: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
|
2384
|
+
])
|
2385
|
+
m4trace:m4/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
|
2386
|
+
m4trace:m4/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
|
2387
|
+
You should run autoupdate.])dnl
|
2388
|
+
AC_ENABLE_STATIC($@)])
|
2389
|
+
m4trace:m4/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
|
2390
|
+
m4trace:m4/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
|
2391
|
+
You should run autoupdate.])dnl
|
2392
|
+
AC_DISABLE_STATIC($@)])
|
2393
|
+
m4trace:m4/ltoptions.m4:310: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
2394
|
+
AC_DIAGNOSE([obsolete],
|
2395
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2396
|
+
the 'fast-install' option into LT_INIT's first parameter.])
|
2397
|
+
])
|
2398
|
+
m4trace:m4/ltoptions.m4:310: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
|
2399
|
+
You should run autoupdate.])dnl
|
2400
|
+
_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
2401
|
+
AC_DIAGNOSE([obsolete],
|
2402
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2403
|
+
the 'fast-install' option into LT_INIT's first parameter.])
|
2404
|
+
])
|
2405
|
+
m4trace:m4/ltoptions.m4:317: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
2406
|
+
AC_DIAGNOSE([obsolete],
|
2407
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2408
|
+
the 'disable-fast-install' option into LT_INIT's first parameter.])
|
2409
|
+
])
|
2410
|
+
m4trace:m4/ltoptions.m4:317: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
|
2411
|
+
You should run autoupdate.])dnl
|
2412
|
+
_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
2413
|
+
AC_DIAGNOSE([obsolete],
|
2414
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2415
|
+
the 'disable-fast-install' option into LT_INIT's first parameter.])
|
2416
|
+
])
|
2417
|
+
m4trace:m4/ltoptions.m4:416: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
|
2418
|
+
AC_DIAGNOSE([obsolete],
|
2419
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2420
|
+
put the 'pic-only' option into LT_INIT's first parameter.])
|
2421
|
+
])
|
2422
|
+
m4trace:m4/ltoptions.m4:416: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
|
2423
|
+
You should run autoupdate.])dnl
|
2424
|
+
_LT_SET_OPTION([LT_INIT], [pic-only])
|
2425
|
+
AC_DIAGNOSE([obsolete],
|
2426
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2427
|
+
put the 'pic-only' option into LT_INIT's first parameter.])
|
2428
|
+
])
|
2429
|
+
m4trace:m4/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
|
2430
|
+
m4trace:m4/ltversion.m4:23: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.5'
|
2431
|
+
macro_revision='2.4.5'
|
2432
|
+
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
2433
|
+
_LT_DECL(, macro_revision, 0)
|
2434
|
+
])
|
2435
|
+
m4trace:m4/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
2436
|
+
m4trace:m4/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
|
2437
|
+
m4trace:m4/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
|
2438
|
+
m4trace:m4/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
|
2439
|
+
m4trace:m4/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
|
2440
|
+
m4trace:m4/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
|
2441
|
+
m4trace:m4/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
|
2442
|
+
m4trace:m4/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
|
2443
|
+
m4trace:m4/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
|
2444
|
+
m4trace:m4/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
|
2445
|
+
m4trace:m4/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
|
2446
|
+
m4trace:m4/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
|
2447
|
+
m4trace:m4/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
|
2448
|
+
m4trace:m4/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
|
2449
|
+
m4trace:m4/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
|
2450
|
+
m4trace:m4/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
|
2451
|
+
m4trace:m4/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
|
2452
|
+
m4trace:m4/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
|
2453
|
+
m4trace:m4/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
|
2454
|
+
m4trace:m4/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
|
2455
|
+
m4trace:m4/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
|
2456
|
+
m4trace:m4/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
|
2457
|
+
m4trace:m4/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
|
2458
|
+
m4trace:m4/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
|
2459
|
+
m4trace:m4/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
|
2460
|
+
m4trace:m4/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
|
2461
|
+
m4trace:m4/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
|
2462
|
+
m4trace:m4/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
|
2463
|
+
m4trace:m4/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
|
2464
|
+
m4trace:m4/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
|
2465
|
+
m4trace:m4/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
|
2466
|
+
m4trace:m4/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
|
2467
|
+
m4trace:m4/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
|
2468
|
+
m4trace:m4/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
|
2469
|
+
m4trace:m4/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
|
2470
|
+
m4trace:m4/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
|
2471
|
+
m4trace:m4/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
|
2472
|
+
m4trace:m4/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
|
2473
|
+
m4trace:m4/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
|
2474
|
+
m4trace:m4/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
|
2475
|
+
m4trace:m4/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
|
2476
|
+
m4trace:m4/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
|
2477
|
+
m4trace:m4/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
|
2478
|
+
m4trace:m4/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
|
2479
|
+
m4trace:m4/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
|
2480
|
+
m4trace:m4/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
|
2481
|
+
m4trace:m4/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
|
2482
|
+
m4trace:m4/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
|
2483
|
+
m4trace:m4/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
|
2484
|
+
m4trace:m4/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
|
2485
|
+
m4trace:m4/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
|
2486
|
+
m4trace:configure.ac:16: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
2487
|
+
m4trace:configure.ac:16: -1- m4_pattern_forbid([_AC_])
|
2488
|
+
m4trace:configure.ac:16: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
2489
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^AS_FLAGS$])
|
2490
|
+
m4trace:configure.ac:16: -1- m4_pattern_forbid([^_?m4_])
|
2491
|
+
m4trace:configure.ac:16: -1- m4_pattern_forbid([^dnl$])
|
2492
|
+
m4trace:configure.ac:16: -1- m4_pattern_forbid([^_?AS_])
|
2493
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^SHELL$])
|
2494
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
2495
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
2496
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
2497
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
2498
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
2499
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
2500
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_URL$])
|
2501
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^exec_prefix$])
|
2502
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^prefix$])
|
2503
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^program_transform_name$])
|
2504
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^bindir$])
|
2505
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^sbindir$])
|
2506
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^libexecdir$])
|
2507
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^datarootdir$])
|
2508
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^datadir$])
|
2509
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^sysconfdir$])
|
2510
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^sharedstatedir$])
|
2511
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^localstatedir$])
|
2512
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^includedir$])
|
2513
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^oldincludedir$])
|
2514
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^docdir$])
|
2515
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^infodir$])
|
2516
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^htmldir$])
|
2517
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^dvidir$])
|
2518
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^pdfdir$])
|
2519
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^psdir$])
|
2520
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^libdir$])
|
2521
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^localedir$])
|
2522
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^mandir$])
|
2523
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
2524
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
2525
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
2526
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
2527
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
2528
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE_URL$])
|
2529
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^DEFS$])
|
2530
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^ECHO_C$])
|
2531
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^ECHO_N$])
|
2532
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^ECHO_T$])
|
2533
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^LIBS$])
|
2534
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^build_alias$])
|
2535
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^host_alias$])
|
2536
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^target_alias$])
|
2537
|
+
m4trace:configure.ac:17: -1- AC_CONFIG_MACRO_DIR([m4])
|
2538
|
+
m4trace:configure.ac:18: -1- m4_include([m4/libuv-extra-automake-flags.m4])
|
2539
|
+
m4trace:configure.ac:19: -1- m4_include([m4/as_case.m4])
|
2540
|
+
m4trace:configure.ac:20: -1- m4_include([m4/libuv-check-flags.m4])
|
2541
|
+
m4trace:m4/libuv-check-flags.m4:50: -1- AC_DEFUN([CC_CHECK_CFLAGS_SILENT], [
|
2542
|
+
AC_CACHE_VAL(AS_TR_SH([cc_cv_cflags_$1]),
|
2543
|
+
[ac_save_CFLAGS="$CFLAGS"
|
2544
|
+
CFLAGS="$CFLAGS $1"
|
2545
|
+
AC_COMPILE_IFELSE([AC_LANG_SOURCE([int a;])],
|
2546
|
+
[eval "AS_TR_SH([cc_cv_cflags_$1])='yes'"],
|
2547
|
+
[eval "AS_TR_SH([cc_cv_cflags_$1])='no'"])
|
2548
|
+
CFLAGS="$ac_save_CFLAGS"
|
2549
|
+
])
|
2550
|
+
|
2551
|
+
AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ = xyes],
|
2552
|
+
[$2], [$3])
|
2553
|
+
])
|
2554
|
+
m4trace:m4/libuv-check-flags.m4:63: -1- AC_DEFUN([CC_CHECK_CFLAGS], [
|
2555
|
+
AC_CACHE_CHECK([if $CC supports $1 flag],
|
2556
|
+
AS_TR_SH([cc_cv_cflags_$1]),
|
2557
|
+
CC_CHECK_CFLAGS_SILENT([$1]) dnl Don't execute actions here!
|
2558
|
+
)
|
2559
|
+
|
2560
|
+
AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ = xyes],
|
2561
|
+
[$2], [$3])
|
2562
|
+
])
|
2563
|
+
m4trace:m4/libuv-check-flags.m4:75: -1- AC_DEFUN([CC_CHECK_CFLAG_APPEND], [
|
2564
|
+
AC_CACHE_CHECK([if $CC supports $1 flag],
|
2565
|
+
AS_TR_SH([cc_cv_cflags_$1]),
|
2566
|
+
CC_CHECK_CFLAGS_SILENT([$1]) dnl Don't execute actions here!
|
2567
|
+
)
|
2568
|
+
|
2569
|
+
AS_IF([eval test x$]AS_TR_SH([cc_cv_cflags_$1])[ = xyes],
|
2570
|
+
[CFLAGS="$CFLAGS $1"; DEBUG_CFLAGS="$DEBUG_CFLAGS $1"; $2], [$3])
|
2571
|
+
])
|
2572
|
+
m4trace:m4/libuv-check-flags.m4:82: -1- AC_DEFUN([CC_CHECK_CFLAGS_APPEND], [
|
2573
|
+
for flag in $1; do
|
2574
|
+
CC_CHECK_CFLAG_APPEND($flag, [$2], [$3])
|
2575
|
+
done
|
2576
|
+
])
|
2577
|
+
m4trace:m4/libuv-check-flags.m4:102: -1- AC_DEFUN([CC_CHECK_LDFLAGS], [
|
2578
|
+
AC_CACHE_CHECK([if $CC supports $1 flag],
|
2579
|
+
AS_TR_SH([cc_cv_ldflags_$1]),
|
2580
|
+
[ac_save_LDFLAGS="$LDFLAGS"
|
2581
|
+
LDFLAGS="$LDFLAGS $1"
|
2582
|
+
AC_LANG_PUSH([C])
|
2583
|
+
AC_LINK_IFELSE([AC_LANG_SOURCE([int main() { return 1; }])],
|
2584
|
+
[eval "AS_TR_SH([cc_cv_ldflags_$1])='yes'"],
|
2585
|
+
[eval "AS_TR_SH([cc_cv_ldflags_$1])="])
|
2586
|
+
AC_LANG_POP([C])
|
2587
|
+
LDFLAGS="$ac_save_LDFLAGS"
|
2588
|
+
])
|
2589
|
+
|
2590
|
+
AS_IF([eval test x$]AS_TR_SH([cc_cv_ldflags_$1])[ = xyes],
|
2591
|
+
[$2], [$3])
|
2592
|
+
])
|
2593
|
+
m4trace:m4/libuv-check-flags.m4:127: -1- AC_DEFUN([CC_NOUNDEFINED], [
|
2594
|
+
dnl We check $host for which systems to enable this for.
|
2595
|
+
AC_REQUIRE([AC_CANONICAL_HOST])
|
2596
|
+
|
2597
|
+
case $host in
|
2598
|
+
dnl FreeBSD (et al.) does not complete linking for shared objects when pthreads
|
2599
|
+
dnl are requested, as different implementations are present; to avoid problems
|
2600
|
+
dnl use -Wl,-z,defs only for those platform not behaving this way.
|
2601
|
+
*-freebsd* | *-openbsd*) ;;
|
2602
|
+
*)
|
2603
|
+
dnl First of all check for the --no-undefined variant of GNU ld. This allows
|
2604
|
+
dnl for a much more readable commandline, so that people can understand what
|
2605
|
+
dnl it does without going to look for what the heck -z defs does.
|
2606
|
+
for possible_flags in "-Wl,--no-undefined" "-Wl,-z,defs"; do
|
2607
|
+
CC_CHECK_LDFLAGS([$possible_flags], [LDFLAGS_NOUNDEFINED="$possible_flags"])
|
2608
|
+
break
|
2609
|
+
done
|
2610
|
+
;;
|
2611
|
+
esac
|
2612
|
+
|
2613
|
+
AC_SUBST([LDFLAGS_NOUNDEFINED])
|
2614
|
+
])
|
2615
|
+
m4trace:m4/libuv-check-flags.m4:144: -1- AC_DEFUN([CC_CHECK_WERROR], [
|
2616
|
+
AC_CACHE_CHECK(
|
2617
|
+
[for $CC way to treat warnings as errors],
|
2618
|
+
[cc_cv_werror],
|
2619
|
+
[CC_CHECK_CFLAGS_SILENT([-Werror], [cc_cv_werror=-Werror],
|
2620
|
+
[CC_CHECK_CFLAGS_SILENT([-errwarn=%all], [cc_cv_werror=-errwarn=%all])])
|
2621
|
+
])
|
2622
|
+
])
|
2623
|
+
m4trace:m4/libuv-check-flags.m4:167: -1- AC_DEFUN([CC_CHECK_ATTRIBUTE], [
|
2624
|
+
AC_REQUIRE([CC_CHECK_WERROR])
|
2625
|
+
AC_CACHE_CHECK([if $CC supports __attribute__(( ifelse([$2], , [$1], [$2]) ))],
|
2626
|
+
AS_TR_SH([cc_cv_attribute_$1]),
|
2627
|
+
[ac_save_CFLAGS="$CFLAGS"
|
2628
|
+
CFLAGS="$CFLAGS $cc_cv_werror"
|
2629
|
+
AC_LANG_PUSH([C])
|
2630
|
+
AC_COMPILE_IFELSE([AC_LANG_SOURCE([$3])],
|
2631
|
+
[eval "AS_TR_SH([cc_cv_attribute_$1])='yes'"],
|
2632
|
+
[eval "AS_TR_SH([cc_cv_attribute_$1])='no'"])
|
2633
|
+
AC_LANG_POP([C])
|
2634
|
+
CFLAGS="$ac_save_CFLAGS"
|
2635
|
+
])
|
2636
|
+
|
2637
|
+
AS_IF([eval test x$]AS_TR_SH([cc_cv_attribute_$1])[ = xyes],
|
2638
|
+
[AC_DEFINE(
|
2639
|
+
AS_TR_CPP([SUPPORT_ATTRIBUTE_$1]), 1,
|
2640
|
+
[Define this if the compiler supports __attribute__(( ifelse([$2], , [$1], [$2]) ))]
|
2641
|
+
)
|
2642
|
+
$4],
|
2643
|
+
[$5])
|
2644
|
+
])
|
2645
|
+
m4trace:m4/libuv-check-flags.m4:174: -1- AC_DEFUN([CC_ATTRIBUTE_CONSTRUCTOR], [
|
2646
|
+
CC_CHECK_ATTRIBUTE(
|
2647
|
+
[constructor],,
|
2648
|
+
[void __attribute__((constructor)) ctor() { int a; }],
|
2649
|
+
[$1], [$2])
|
2650
|
+
])
|
2651
|
+
m4trace:m4/libuv-check-flags.m4:181: -1- AC_DEFUN([CC_ATTRIBUTE_FORMAT], [
|
2652
|
+
CC_CHECK_ATTRIBUTE(
|
2653
|
+
[format], [format(printf, n, n)],
|
2654
|
+
[void __attribute__((format(printf, 1, 2))) printflike(const char *fmt, ...) { fmt = (void *)0; }],
|
2655
|
+
[$1], [$2])
|
2656
|
+
])
|
2657
|
+
m4trace:m4/libuv-check-flags.m4:188: -1- AC_DEFUN([CC_ATTRIBUTE_FORMAT_ARG], [
|
2658
|
+
CC_CHECK_ATTRIBUTE(
|
2659
|
+
[format_arg], [format_arg(printf)],
|
2660
|
+
[char *__attribute__((format_arg(1))) gettextlike(const char *fmt) { fmt = (void *)0; }],
|
2661
|
+
[$1], [$2])
|
2662
|
+
])
|
2663
|
+
m4trace:m4/libuv-check-flags.m4:195: -1- AC_DEFUN([CC_ATTRIBUTE_VISIBILITY], [
|
2664
|
+
CC_CHECK_ATTRIBUTE(
|
2665
|
+
[visibility_$1], [visibility("$1")],
|
2666
|
+
[void __attribute__((visibility("$1"))) $1_function() { }],
|
2667
|
+
[$2], [$3])
|
2668
|
+
])
|
2669
|
+
m4trace:m4/libuv-check-flags.m4:202: -1- AC_DEFUN([CC_ATTRIBUTE_NONNULL], [
|
2670
|
+
CC_CHECK_ATTRIBUTE(
|
2671
|
+
[nonnull], [nonnull()],
|
2672
|
+
[void __attribute__((nonnull())) some_function(void *foo, void *bar) { foo = (void*)0; bar = (void*)0; }],
|
2673
|
+
[$1], [$2])
|
2674
|
+
])
|
2675
|
+
m4trace:m4/libuv-check-flags.m4:209: -1- AC_DEFUN([CC_ATTRIBUTE_UNUSED], [
|
2676
|
+
CC_CHECK_ATTRIBUTE(
|
2677
|
+
[unused], ,
|
2678
|
+
[void some_function(void *foo, __attribute__((unused)) void *bar);],
|
2679
|
+
[$1], [$2])
|
2680
|
+
])
|
2681
|
+
m4trace:m4/libuv-check-flags.m4:216: -1- AC_DEFUN([CC_ATTRIBUTE_SENTINEL], [
|
2682
|
+
CC_CHECK_ATTRIBUTE(
|
2683
|
+
[sentinel], ,
|
2684
|
+
[void some_function(void *foo, ...) __attribute__((sentinel));],
|
2685
|
+
[$1], [$2])
|
2686
|
+
])
|
2687
|
+
m4trace:m4/libuv-check-flags.m4:223: -1- AC_DEFUN([CC_ATTRIBUTE_DEPRECATED], [
|
2688
|
+
CC_CHECK_ATTRIBUTE(
|
2689
|
+
[deprecated], ,
|
2690
|
+
[void some_function(void *foo, ...) __attribute__((deprecated));],
|
2691
|
+
[$1], [$2])
|
2692
|
+
])
|
2693
|
+
m4trace:m4/libuv-check-flags.m4:231: -1- AC_DEFUN([CC_ATTRIBUTE_ALIAS], [
|
2694
|
+
CC_CHECK_ATTRIBUTE(
|
2695
|
+
[alias], [weak, alias],
|
2696
|
+
[void other_function(void *foo) { }
|
2697
|
+
void some_function(void *foo) __attribute__((weak, alias("other_function")));],
|
2698
|
+
[$1], [$2])
|
2699
|
+
])
|
2700
|
+
m4trace:m4/libuv-check-flags.m4:238: -1- AC_DEFUN([CC_ATTRIBUTE_MALLOC], [
|
2701
|
+
CC_CHECK_ATTRIBUTE(
|
2702
|
+
[malloc], ,
|
2703
|
+
[void * __attribute__((malloc)) my_alloc(int n);],
|
2704
|
+
[$1], [$2])
|
2705
|
+
])
|
2706
|
+
m4trace:m4/libuv-check-flags.m4:245: -1- AC_DEFUN([CC_ATTRIBUTE_PACKED], [
|
2707
|
+
CC_CHECK_ATTRIBUTE(
|
2708
|
+
[packed], ,
|
2709
|
+
[struct astructure { char a; int b; long c; void *d; } __attribute__((packed));],
|
2710
|
+
[$1], [$2])
|
2711
|
+
])
|
2712
|
+
m4trace:m4/libuv-check-flags.m4:252: -1- AC_DEFUN([CC_ATTRIBUTE_CONST], [
|
2713
|
+
CC_CHECK_ATTRIBUTE(
|
2714
|
+
[const], ,
|
2715
|
+
[int __attribute__((const)) twopow(int n) { return 1 << n; } ],
|
2716
|
+
[$1], [$2])
|
2717
|
+
])
|
2718
|
+
m4trace:m4/libuv-check-flags.m4:270: -1- AC_DEFUN([CC_FLAG_VISIBILITY], [
|
2719
|
+
AC_REQUIRE([CC_CHECK_WERROR])
|
2720
|
+
AC_CACHE_CHECK([if $CC supports -fvisibility=hidden],
|
2721
|
+
[cc_cv_flag_visibility],
|
2722
|
+
[cc_flag_visibility_save_CFLAGS="$CFLAGS"
|
2723
|
+
CFLAGS="$CFLAGS $cc_cv_werror"
|
2724
|
+
CC_CHECK_CFLAGS_SILENT([-fvisibility=hidden],
|
2725
|
+
cc_cv_flag_visibility='yes',
|
2726
|
+
cc_cv_flag_visibility='no')
|
2727
|
+
CFLAGS="$cc_flag_visibility_save_CFLAGS"])
|
2728
|
+
|
2729
|
+
AS_IF([test "x$cc_cv_flag_visibility" = "xyes"],
|
2730
|
+
[AC_DEFINE([SUPPORT_FLAG_VISIBILITY], 1,
|
2731
|
+
[Define this if the compiler supports the -fvisibility flag])
|
2732
|
+
$1],
|
2733
|
+
[$2])
|
2734
|
+
])
|
2735
|
+
m4trace:m4/libuv-check-flags.m4:295: -1- AC_DEFUN([CC_FUNC_EXPECT], [
|
2736
|
+
AC_REQUIRE([CC_CHECK_WERROR])
|
2737
|
+
AC_CACHE_CHECK([if compiler has __builtin_expect function],
|
2738
|
+
[cc_cv_func_expect],
|
2739
|
+
[ac_save_CFLAGS="$CFLAGS"
|
2740
|
+
CFLAGS="$CFLAGS $cc_cv_werror"
|
2741
|
+
AC_LANG_PUSH([C])
|
2742
|
+
AC_COMPILE_IFELSE([AC_LANG_SOURCE(
|
2743
|
+
[int some_function() {
|
2744
|
+
int a = 3;
|
2745
|
+
return (int)__builtin_expect(a, 3);
|
2746
|
+
}])],
|
2747
|
+
[cc_cv_func_expect=yes],
|
2748
|
+
[cc_cv_func_expect=no])
|
2749
|
+
AC_LANG_POP([C])
|
2750
|
+
CFLAGS="$ac_save_CFLAGS"
|
2751
|
+
])
|
2752
|
+
|
2753
|
+
AS_IF([test "x$cc_cv_func_expect" = "xyes"],
|
2754
|
+
[AC_DEFINE([SUPPORT__BUILTIN_EXPECT], 1,
|
2755
|
+
[Define this if the compiler supports __builtin_expect() function])
|
2756
|
+
$1],
|
2757
|
+
[$2])
|
2758
|
+
])
|
2759
|
+
m4trace:m4/libuv-check-flags.m4:319: -1- AC_DEFUN([CC_ATTRIBUTE_ALIGNED], [
|
2760
|
+
AC_REQUIRE([CC_CHECK_WERROR])
|
2761
|
+
AC_CACHE_CHECK([highest __attribute__ ((aligned ())) supported],
|
2762
|
+
[cc_cv_attribute_aligned],
|
2763
|
+
[ac_save_CFLAGS="$CFLAGS"
|
2764
|
+
CFLAGS="$CFLAGS $cc_cv_werror"
|
2765
|
+
AC_LANG_PUSH([C])
|
2766
|
+
for cc_attribute_align_try in 64 32 16 8 4 2; do
|
2767
|
+
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
2768
|
+
int main() {
|
2769
|
+
static char c __attribute__ ((aligned($cc_attribute_align_try))) = 0;
|
2770
|
+
return c;
|
2771
|
+
}])], [cc_cv_attribute_aligned=$cc_attribute_align_try; break])
|
2772
|
+
done
|
2773
|
+
AC_LANG_POP([C])
|
2774
|
+
CFLAGS="$ac_save_CFLAGS"
|
2775
|
+
])
|
2776
|
+
|
2777
|
+
if test "x$cc_cv_attribute_aligned" != "x"; then
|
2778
|
+
AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX], [$cc_cv_attribute_aligned],
|
2779
|
+
[Define the highest alignment supported])
|
2780
|
+
fi
|
2781
|
+
])
|
2782
|
+
m4trace:configure.ac:21: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects serial-tests])
|
2783
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
2784
|
+
m4trace:configure.ac:21: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
|
2785
|
+
m4trace:configure.ac:21: -1- AM_AUTOMAKE_VERSION([1.15])
|
2786
|
+
m4trace:configure.ac:21: -1- _AM_AUTOCONF_VERSION([2.69])
|
2787
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
2788
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
2789
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_DATA$])
|
2790
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^am__isrc$])
|
2791
|
+
m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
2792
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^CYGPATH_W$])
|
2793
|
+
m4trace:configure.ac:21: -1- _AM_SET_OPTIONS([-Wall -Werror foreign subdir-objects serial-tests])
|
2794
|
+
m4trace:configure.ac:21: -1- _AM_SET_OPTION([-Wall])
|
2795
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([-Wall])
|
2796
|
+
m4trace:configure.ac:21: -1- _AM_SET_OPTION([-Werror])
|
2797
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([-Werror])
|
2798
|
+
m4trace:configure.ac:21: -1- _AM_SET_OPTION([foreign])
|
2799
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([foreign])
|
2800
|
+
m4trace:configure.ac:21: -1- _AM_SET_OPTION([subdir-objects])
|
2801
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([subdir-objects])
|
2802
|
+
m4trace:configure.ac:21: -1- _AM_SET_OPTION([serial-tests])
|
2803
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([serial-tests])
|
2804
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE$])
|
2805
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^VERSION$])
|
2806
|
+
m4trace:configure.ac:21: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
|
2807
|
+
AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
|
2808
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([no-define])
|
2809
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE$])
|
2810
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^VERSION$])
|
2811
|
+
m4trace:configure.ac:21: -1- AM_SANITY_CHECK
|
2812
|
+
m4trace:configure.ac:21: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
|
2813
|
+
m4trace:configure.ac:21: -1- AM_MISSING_HAS_RUN
|
2814
|
+
m4trace:configure.ac:21: -1- AM_AUX_DIR_EXPAND
|
2815
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^ACLOCAL$])
|
2816
|
+
m4trace:configure.ac:21: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
|
2817
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AUTOCONF$])
|
2818
|
+
m4trace:configure.ac:21: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
|
2819
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AUTOMAKE$])
|
2820
|
+
m4trace:configure.ac:21: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
|
2821
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AUTOHEADER$])
|
2822
|
+
m4trace:configure.ac:21: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
|
2823
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^MAKEINFO$])
|
2824
|
+
m4trace:configure.ac:21: -1- AM_PROG_INSTALL_SH
|
2825
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^install_sh$])
|
2826
|
+
m4trace:configure.ac:21: -1- AM_PROG_INSTALL_STRIP
|
2827
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^STRIP$])
|
2828
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
|
2829
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^MKDIR_P$])
|
2830
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^mkdir_p$])
|
2831
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AWK$])
|
2832
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^SET_MAKE$])
|
2833
|
+
m4trace:configure.ac:21: -1- AM_SET_LEADING_DOT
|
2834
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^am__leading_dot$])
|
2835
|
+
m4trace:configure.ac:21: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
2836
|
+
[_AM_PROG_TAR([v7])])])
|
2837
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([tar-ustar])
|
2838
|
+
m4trace:configure.ac:21: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
|
2839
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([tar-pax])
|
2840
|
+
m4trace:configure.ac:21: -1- _AM_PROG_TAR([v7])
|
2841
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AMTAR$])
|
2842
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^am__tar$])
|
2843
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^am__untar$])
|
2844
|
+
m4trace:configure.ac:21: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
|
2845
|
+
[_AM_DEPENDENCIES([CC])],
|
2846
|
+
[m4_define([AC_PROG_CC],
|
2847
|
+
m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
|
2848
|
+
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
2849
|
+
[_AM_DEPENDENCIES([CXX])],
|
2850
|
+
[m4_define([AC_PROG_CXX],
|
2851
|
+
m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
|
2852
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
2853
|
+
[_AM_DEPENDENCIES([OBJC])],
|
2854
|
+
[m4_define([AC_PROG_OBJC],
|
2855
|
+
m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
|
2856
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
|
2857
|
+
[_AM_DEPENDENCIES([OBJCXX])],
|
2858
|
+
[m4_define([AC_PROG_OBJCXX],
|
2859
|
+
m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
|
2860
|
+
])
|
2861
|
+
m4trace:configure.ac:21: -2- _AM_MANGLE_OPTION([no-dependencies])
|
2862
|
+
m4trace:configure.ac:21: -1- AM_SILENT_RULES
|
2863
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_V$])
|
2864
|
+
m4trace:configure.ac:21: -1- AM_SUBST_NOTMAKE([AM_V])
|
2865
|
+
m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([AM_V])
|
2866
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
2867
|
+
m4trace:configure.ac:21: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
2868
|
+
m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
2869
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
2870
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
2871
|
+
m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
2872
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^build$])
|
2873
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^build_cpu$])
|
2874
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^build_vendor$])
|
2875
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^build_os$])
|
2876
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^host$])
|
2877
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^host_cpu$])
|
2878
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^host_vendor$])
|
2879
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^host_os$])
|
2880
|
+
m4trace:configure.ac:23: -1- AC_ENABLE_SHARED
|
2881
|
+
m4trace:configure.ac:24: -1- AC_ENABLE_STATIC
|
2882
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
|
2883
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CFLAGS$])
|
2884
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^LDFLAGS$])
|
2885
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^LIBS$])
|
2886
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CPPFLAGS$])
|
2887
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
|
2888
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
|
2889
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
|
2890
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CC$])
|
2891
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^ac_ct_CC$])
|
2892
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^EXEEXT$])
|
2893
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^OBJEXT$])
|
2894
|
+
m4trace:configure.ac:25: -1- _AM_PROG_CC_C_O
|
2895
|
+
m4trace:configure.ac:25: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
|
2896
|
+
m4trace:configure.ac:25: -1- _AM_DEPENDENCIES([CC])
|
2897
|
+
m4trace:configure.ac:25: -1- AM_SET_DEPDIR
|
2898
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^DEPDIR$])
|
2899
|
+
m4trace:configure.ac:25: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
|
2900
|
+
m4trace:configure.ac:25: -1- AM_MAKE_INCLUDE
|
2901
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^am__include$])
|
2902
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^am__quote$])
|
2903
|
+
m4trace:configure.ac:25: -1- AM_DEP_TRACK
|
2904
|
+
m4trace:configure.ac:25: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
2905
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^AMDEP_TRUE$])
|
2906
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^AMDEP_FALSE$])
|
2907
|
+
m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
|
2908
|
+
m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
|
2909
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
|
2910
|
+
m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
|
2911
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^am__nodep$])
|
2912
|
+
m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__nodep])
|
2913
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^CCDEPMODE$])
|
2914
|
+
m4trace:configure.ac:25: -1- AM_CONDITIONAL([am__fastdepCC], [
|
2915
|
+
test "x$enable_dependency_tracking" != xno \
|
2916
|
+
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
|
2917
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
|
2918
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
|
2919
|
+
m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
|
2920
|
+
m4trace:configure.ac:25: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
|
2921
|
+
m4trace:configure.ac:26: -1- AM_PROG_CC_C_O
|
2922
|
+
m4trace:configure.ac:27: -1- CC_CHECK_CFLAGS_APPEND([-fvisibility=hidden])
|
2923
|
+
m4trace:configure.ac:27: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2924
|
+
m4trace:configure.ac:27: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2925
|
+
m4trace:configure.ac:28: -1- CC_CHECK_CFLAGS_APPEND([-g])
|
2926
|
+
m4trace:configure.ac:28: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2927
|
+
m4trace:configure.ac:28: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2928
|
+
m4trace:configure.ac:29: -1- CC_CHECK_CFLAGS_APPEND([-std=gnu89])
|
2929
|
+
m4trace:configure.ac:29: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2930
|
+
m4trace:configure.ac:29: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2931
|
+
m4trace:configure.ac:30: -1- CC_CHECK_CFLAGS_APPEND([-pedantic])
|
2932
|
+
m4trace:configure.ac:30: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2933
|
+
m4trace:configure.ac:30: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2934
|
+
m4trace:configure.ac:31: -1- CC_CHECK_CFLAGS_APPEND([-Wall])
|
2935
|
+
m4trace:configure.ac:31: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2936
|
+
m4trace:configure.ac:31: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2937
|
+
m4trace:configure.ac:32: -1- CC_CHECK_CFLAGS_APPEND([-Wextra])
|
2938
|
+
m4trace:configure.ac:32: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2939
|
+
m4trace:configure.ac:32: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2940
|
+
m4trace:configure.ac:33: -1- CC_CHECK_CFLAGS_APPEND([-Wno-unused-parameter])
|
2941
|
+
m4trace:configure.ac:33: -1- CC_CHECK_CFLAG_APPEND([$flag], [], [])
|
2942
|
+
m4trace:configure.ac:33: -2- CC_CHECK_CFLAGS_SILENT([$flag])
|
2943
|
+
m4trace:configure.ac:35: -1- AM_PROG_AR
|
2944
|
+
m4trace:configure.ac:35: -1- m4_pattern_allow([^AR$])
|
2945
|
+
m4trace:configure.ac:35: -1- m4_pattern_allow([^ac_ct_AR$])
|
2946
|
+
m4trace:configure.ac:35: -1- m4_pattern_allow([^AR$])
|
2947
|
+
m4trace:configure.ac:37: -1- AC_PROG_LIBTOOL
|
2948
|
+
m4trace:configure.ac:37: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
2949
|
+
You should run autoupdate.], [m4/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
|
2950
|
+
configure.ac:37: the top level])
|
2951
|
+
m4trace:configure.ac:37: -1- LT_INIT
|
2952
|
+
m4trace:configure.ac:37: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
|
2953
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
|
2954
|
+
m4trace:configure.ac:37: -1- LTOPTIONS_VERSION
|
2955
|
+
m4trace:configure.ac:37: -1- LTSUGAR_VERSION
|
2956
|
+
m4trace:configure.ac:37: -1- LTVERSION_VERSION
|
2957
|
+
m4trace:configure.ac:37: -1- LTOBSOLETE_VERSION
|
2958
|
+
m4trace:configure.ac:37: -1- _LT_PROG_LTMAIN
|
2959
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^LIBTOOL$])
|
2960
|
+
m4trace:configure.ac:37: -1- _LT_PREPARE_SED_QUOTE_VARS
|
2961
|
+
m4trace:configure.ac:37: -1- _LT_PROG_ECHO_BACKSLASH
|
2962
|
+
m4trace:configure.ac:37: -1- LT_PATH_LD
|
2963
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^SED$])
|
2964
|
+
m4trace:configure.ac:37: -1- AC_PROG_EGREP
|
2965
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^GREP$])
|
2966
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^EGREP$])
|
2967
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^FGREP$])
|
2968
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^GREP$])
|
2969
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^LD$])
|
2970
|
+
m4trace:configure.ac:37: -1- LT_PATH_NM
|
2971
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^DUMPBIN$])
|
2972
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
|
2973
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^DUMPBIN$])
|
2974
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^NM$])
|
2975
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^LN_S$])
|
2976
|
+
m4trace:configure.ac:37: -1- LT_CMD_MAX_LEN
|
2977
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^OBJDUMP$])
|
2978
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^OBJDUMP$])
|
2979
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^DLLTOOL$])
|
2980
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^DLLTOOL$])
|
2981
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^AR$])
|
2982
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^ac_ct_AR$])
|
2983
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^STRIP$])
|
2984
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^RANLIB$])
|
2985
|
+
m4trace:configure.ac:37: -1- _LT_WITH_SYSROOT
|
2986
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([LT_OBJDIR])
|
2987
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^LT_OBJDIR$])
|
2988
|
+
m4trace:configure.ac:37: -1- _LT_CC_BASENAME([$compiler])
|
2989
|
+
m4trace:configure.ac:37: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
|
2990
|
+
m4trace:configure.ac:37: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
|
2991
|
+
m4trace:configure.ac:37: -1- LT_SUPPORTED_TAG([CC])
|
2992
|
+
m4trace:configure.ac:37: -1- _LT_COMPILER_BOILERPLATE
|
2993
|
+
m4trace:configure.ac:37: -1- _LT_LINKER_BOILERPLATE
|
2994
|
+
m4trace:configure.ac:37: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
|
2995
|
+
m4trace:configure.ac:37: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
|
2996
|
+
"" | " "*) ;;
|
2997
|
+
*) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
|
2998
|
+
esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
|
2999
|
+
_LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
|
3000
|
+
m4trace:configure.ac:37: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
|
3001
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^MANIFEST_TOOL$])
|
3002
|
+
m4trace:configure.ac:37: -1- _LT_DLL_DEF_P([$export_symbols])
|
3003
|
+
m4trace:configure.ac:37: -1- _LT_DLL_DEF_P([$export_symbols])
|
3004
|
+
m4trace:configure.ac:37: -1- _LT_REQUIRED_DARWIN_CHECKS
|
3005
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^DSYMUTIL$])
|
3006
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^NMEDIT$])
|
3007
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^LIPO$])
|
3008
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^OTOOL$])
|
3009
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^OTOOL64$])
|
3010
|
+
m4trace:configure.ac:37: -1- _LT_LINKER_OPTION([if $CC understands -b], [lt_cv_prog_compiler__b], [-b], [_LT_TAGVAR(archive_cmds, )='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, )='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])
|
3011
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
|
3012
|
+
m4trace:configure.ac:37: -1- LT_SYS_DLOPEN_SELF
|
3013
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^CPP$])
|
3014
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^CPPFLAGS$])
|
3015
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^CPP$])
|
3016
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^STDC_HEADERS$])
|
3017
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
|
3018
|
+
m4trace:configure.ac:38: -1- AM_SILENT_RULES([yes])
|
3019
|
+
m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_V$])
|
3020
|
+
m4trace:configure.ac:38: -1- AM_SUBST_NOTMAKE([AM_V])
|
3021
|
+
m4trace:configure.ac:38: -1- _AM_SUBST_NOTMAKE([AM_V])
|
3022
|
+
m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
3023
|
+
m4trace:configure.ac:38: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
3024
|
+
m4trace:configure.ac:38: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
3025
|
+
m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
3026
|
+
m4trace:configure.ac:38: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
3027
|
+
m4trace:configure.ac:38: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
3028
|
+
m4trace:configure.ac:39: -1- LT_INIT
|
3029
|
+
m4trace:configure.ac:41: -1- m4_pattern_allow([^HAVE_LIBDL$])
|
3030
|
+
m4trace:configure.ac:42: -1- m4_pattern_allow([^HAVE_LIBKSTAT$])
|
3031
|
+
m4trace:configure.ac:43: -1- m4_pattern_allow([^HAVE_LIBKVM$])
|
3032
|
+
m4trace:configure.ac:44: -1- m4_pattern_allow([^HAVE_LIBNSL$])
|
3033
|
+
m4trace:configure.ac:45: -1- m4_pattern_allow([^HAVE_LIBPERFSTAT$])
|
3034
|
+
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$])
|
3035
|
+
m4trace:configure.ac:47: -1- m4_pattern_allow([^HAVE_LIBRT$])
|
3036
|
+
m4trace:configure.ac:48: -1- m4_pattern_allow([^HAVE_LIBSENDFILE$])
|
3037
|
+
m4trace:configure.ac:49: -1- m4_pattern_allow([^HAVE_LIBSOCKET$])
|
3038
|
+
m4trace:configure.ac:50: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$])
|
3039
|
+
m4trace:configure.ac:50: -1- m4_pattern_allow([^_LARGE_FILES$])
|
3040
|
+
m4trace:configure.ac:51: -1- AM_CONDITIONAL([AIX], [AS_CASE([$host_os],[aix*], [true], [false])])
|
3041
|
+
m4trace:configure.ac:51: -1- m4_pattern_allow([^AIX_TRUE$])
|
3042
|
+
m4trace:configure.ac:51: -1- m4_pattern_allow([^AIX_FALSE$])
|
3043
|
+
m4trace:configure.ac:51: -1- _AM_SUBST_NOTMAKE([AIX_TRUE])
|
3044
|
+
m4trace:configure.ac:51: -1- _AM_SUBST_NOTMAKE([AIX_FALSE])
|
3045
|
+
m4trace:configure.ac:52: -1- AM_CONDITIONAL([ANDROID], [AS_CASE([$host_os],[linux-android*],[true], [false])])
|
3046
|
+
m4trace:configure.ac:52: -1- m4_pattern_allow([^ANDROID_TRUE$])
|
3047
|
+
m4trace:configure.ac:52: -1- m4_pattern_allow([^ANDROID_FALSE$])
|
3048
|
+
m4trace:configure.ac:52: -1- _AM_SUBST_NOTMAKE([ANDROID_TRUE])
|
3049
|
+
m4trace:configure.ac:52: -1- _AM_SUBST_NOTMAKE([ANDROID_FALSE])
|
3050
|
+
m4trace:configure.ac:53: -1- AM_CONDITIONAL([DARWIN], [AS_CASE([$host_os],[darwin*], [true], [false])])
|
3051
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^DARWIN_TRUE$])
|
3052
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^DARWIN_FALSE$])
|
3053
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([DARWIN_TRUE])
|
3054
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([DARWIN_FALSE])
|
3055
|
+
m4trace:configure.ac:54: -1- AM_CONDITIONAL([DRAGONFLY], [AS_CASE([$host_os],[dragonfly*], [true], [false])])
|
3056
|
+
m4trace:configure.ac:54: -1- m4_pattern_allow([^DRAGONFLY_TRUE$])
|
3057
|
+
m4trace:configure.ac:54: -1- m4_pattern_allow([^DRAGONFLY_FALSE$])
|
3058
|
+
m4trace:configure.ac:54: -1- _AM_SUBST_NOTMAKE([DRAGONFLY_TRUE])
|
3059
|
+
m4trace:configure.ac:54: -1- _AM_SUBST_NOTMAKE([DRAGONFLY_FALSE])
|
3060
|
+
m4trace:configure.ac:55: -1- AM_CONDITIONAL([FREEBSD], [AS_CASE([$host_os],[freebsd*], [true], [false])])
|
3061
|
+
m4trace:configure.ac:55: -1- m4_pattern_allow([^FREEBSD_TRUE$])
|
3062
|
+
m4trace:configure.ac:55: -1- m4_pattern_allow([^FREEBSD_FALSE$])
|
3063
|
+
m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([FREEBSD_TRUE])
|
3064
|
+
m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([FREEBSD_FALSE])
|
3065
|
+
m4trace:configure.ac:56: -1- AM_CONDITIONAL([LINUX], [AS_CASE([$host_os],[linux*], [true], [false])])
|
3066
|
+
m4trace:configure.ac:56: -1- m4_pattern_allow([^LINUX_TRUE$])
|
3067
|
+
m4trace:configure.ac:56: -1- m4_pattern_allow([^LINUX_FALSE$])
|
3068
|
+
m4trace:configure.ac:56: -1- _AM_SUBST_NOTMAKE([LINUX_TRUE])
|
3069
|
+
m4trace:configure.ac:56: -1- _AM_SUBST_NOTMAKE([LINUX_FALSE])
|
3070
|
+
m4trace:configure.ac:57: -1- AM_CONDITIONAL([NETBSD], [AS_CASE([$host_os],[netbsd*], [true], [false])])
|
3071
|
+
m4trace:configure.ac:57: -1- m4_pattern_allow([^NETBSD_TRUE$])
|
3072
|
+
m4trace:configure.ac:57: -1- m4_pattern_allow([^NETBSD_FALSE$])
|
3073
|
+
m4trace:configure.ac:57: -1- _AM_SUBST_NOTMAKE([NETBSD_TRUE])
|
3074
|
+
m4trace:configure.ac:57: -1- _AM_SUBST_NOTMAKE([NETBSD_FALSE])
|
3075
|
+
m4trace:configure.ac:58: -1- AM_CONDITIONAL([OPENBSD], [AS_CASE([$host_os],[openbsd*], [true], [false])])
|
3076
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^OPENBSD_TRUE$])
|
3077
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^OPENBSD_FALSE$])
|
3078
|
+
m4trace:configure.ac:58: -1- _AM_SUBST_NOTMAKE([OPENBSD_TRUE])
|
3079
|
+
m4trace:configure.ac:58: -1- _AM_SUBST_NOTMAKE([OPENBSD_FALSE])
|
3080
|
+
m4trace:configure.ac:59: -1- AM_CONDITIONAL([SUNOS], [AS_CASE([$host_os],[solaris*], [true], [false])])
|
3081
|
+
m4trace:configure.ac:59: -1- m4_pattern_allow([^SUNOS_TRUE$])
|
3082
|
+
m4trace:configure.ac:59: -1- m4_pattern_allow([^SUNOS_FALSE$])
|
3083
|
+
m4trace:configure.ac:59: -1- _AM_SUBST_NOTMAKE([SUNOS_TRUE])
|
3084
|
+
m4trace:configure.ac:59: -1- _AM_SUBST_NOTMAKE([SUNOS_FALSE])
|
3085
|
+
m4trace:configure.ac:60: -1- AM_CONDITIONAL([WINNT], [AS_CASE([$host_os],[mingw*], [true], [false])])
|
3086
|
+
m4trace:configure.ac:60: -1- m4_pattern_allow([^WINNT_TRUE$])
|
3087
|
+
m4trace:configure.ac:60: -1- m4_pattern_allow([^WINNT_FALSE$])
|
3088
|
+
m4trace:configure.ac:60: -1- _AM_SUBST_NOTMAKE([WINNT_TRUE])
|
3089
|
+
m4trace:configure.ac:60: -1- _AM_SUBST_NOTMAKE([WINNT_FALSE])
|
3090
|
+
m4trace:configure.ac:61: -1- m4_pattern_allow([^PKG_CONFIG$])
|
3091
|
+
m4trace:configure.ac:62: -1- AM_CONDITIONAL([HAVE_PKG_CONFIG], [test "x$PKG_CONFIG" != "x"])
|
3092
|
+
m4trace:configure.ac:62: -1- m4_pattern_allow([^HAVE_PKG_CONFIG_TRUE$])
|
3093
|
+
m4trace:configure.ac:62: -1- m4_pattern_allow([^HAVE_PKG_CONFIG_FALSE$])
|
3094
|
+
m4trace:configure.ac:62: -1- _AM_SUBST_NOTMAKE([HAVE_PKG_CONFIG_TRUE])
|
3095
|
+
m4trace:configure.ac:62: -1- _AM_SUBST_NOTMAKE([HAVE_PKG_CONFIG_FALSE])
|
3096
|
+
m4trace:configure.ac:67: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
3097
|
+
m4trace:configure.ac:67: -1- m4_pattern_allow([^LTLIBOBJS$])
|
3098
|
+
m4trace:configure.ac:67: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
3099
|
+
m4trace:configure.ac:67: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
3100
|
+
m4trace:configure.ac:67: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
3101
|
+
m4trace:configure.ac:67: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
3102
|
+
m4trace:configure.ac:67: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
3103
|
+
m4trace:configure.ac:67: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
|
3104
|
+
m4trace:configure.ac:67: -1- _LT_PROG_LTMAIN
|