passenger 6.0.11 → 6.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +24 -1
- data/CONTRIBUTORS +3 -0
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
- data/src/agent/Core/Controller.h +4 -1
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +53 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +57 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +789 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +191 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +30 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +209 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +149 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +21 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +30 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +15 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +90 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1057 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +607 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_traits.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +181 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/append.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +14 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_tuple.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/deferred.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/prepend.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +608 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +344 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +66 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +55 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +68 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +98 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +71 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +210 -266
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +248 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +11 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +71 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +46 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +23 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +36 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +14 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +73 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +235 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +7 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +17 -13
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +31 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +20 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +46 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +45 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +68 -68
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +72 -62
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +19 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +19 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +2 -50
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +71 -70
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +84 -82
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +104 -104
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +63 -63
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +112 -31
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +22 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +59 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +34 -3
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +378 -36
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +97 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/{to_std_category.hpp → std_category.hpp} +5 -55
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +20 -9
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +5 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +21 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +13 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +3 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +4 -0
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +8 -1
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +8 -0
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- metadata +39 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_generic_value.hpp +0 -125
@@ -4,7 +4,7 @@
|
|
4
4
|
* http://www.boost.org/LICENSE_1_0.txt)
|
5
5
|
*
|
6
6
|
* Copyright (c) 2012 Hartmut Kaiser
|
7
|
-
* Copyright (c) 2014-2018, 2020 Andrey Semashev
|
7
|
+
* Copyright (c) 2014-2018, 2020-2021 Andrey Semashev
|
8
8
|
*/
|
9
9
|
/*!
|
10
10
|
* \file atomic/detail/config.hpp
|
@@ -36,39 +36,43 @@
|
|
36
36
|
#define BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA
|
37
37
|
#endif
|
38
38
|
|
39
|
-
#if (defined(__i386__) || defined(__x86_64__)) && (defined(__clang__) || (defined(BOOST_GCC) &&
|
39
|
+
#if (defined(__i386__) || defined(__x86_64__)) && (defined(__clang__) || (defined(BOOST_GCC) && BOOST_GCC < 40500) || defined(__SUNPRO_CC))
|
40
40
|
// This macro indicates that the compiler does not support allocating eax:edx or rax:rdx register pairs ("A") in asm blocks
|
41
41
|
#define BOOST_ATOMIC_DETAIL_X86_NO_ASM_AX_DX_PAIRS
|
42
42
|
#endif
|
43
43
|
|
44
|
-
#if defined(__i386__) && (defined(__PIC__) || defined(__PIE__)) && !(defined(__clang__) || (defined(BOOST_GCC) &&
|
44
|
+
#if defined(__i386__) && (defined(__PIC__) || defined(__PIE__)) && !(defined(__clang__) || (defined(BOOST_GCC) && BOOST_GCC >= 50100))
|
45
45
|
// This macro indicates that asm blocks should preserve ebx value unchanged. Some compilers are able to maintain ebx themselves
|
46
46
|
// around the asm blocks. For those compilers we don't need to save/restore ebx in asm blocks.
|
47
47
|
#define BOOST_ATOMIC_DETAIL_X86_ASM_PRESERVE_EBX
|
48
48
|
#endif
|
49
49
|
|
50
50
|
#if defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
|
51
|
-
#if !(defined(BOOST_LIBSTDCXX11) &&
|
51
|
+
#if !(defined(BOOST_LIBSTDCXX11) && BOOST_LIBSTDCXX_VERSION >= 40700) /* libstdc++ from gcc >= 4.7 in C++11 mode */
|
52
52
|
// This macro indicates that there is not even a basic <type_traits> standard header that is sufficient for most Boost.Atomic needs.
|
53
53
|
#define BOOST_ATOMIC_DETAIL_NO_CXX11_BASIC_HDR_TYPE_TRAITS
|
54
54
|
#endif
|
55
55
|
#endif // defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
|
56
56
|
|
57
57
|
#if defined(BOOST_NO_CXX11_ALIGNAS) ||\
|
58
|
-
(defined(BOOST_GCC) &&
|
59
|
-
(defined(BOOST_MSVC) &&
|
58
|
+
(defined(BOOST_GCC) && BOOST_GCC < 40900) ||\
|
59
|
+
(defined(BOOST_MSVC) && BOOST_MSVC < 1910 && defined(_M_IX86))
|
60
60
|
// gcc prior to 4.9 doesn't support alignas with a constant expression as an argument.
|
61
61
|
// MSVC 14.0 does support alignas, but in 32-bit mode emits "error C2719: formal parameter with requested alignment of N won't be aligned" for N > 4,
|
62
62
|
// when aligned types are used in function arguments, even though the std::max_align_t type has alignment of 8.
|
63
63
|
#define BOOST_ATOMIC_DETAIL_NO_CXX11_ALIGNAS
|
64
64
|
#endif
|
65
65
|
|
66
|
-
#if defined(BOOST_NO_CXX11_CONSTEXPR) || (defined(BOOST_GCC) &&
|
66
|
+
#if defined(BOOST_NO_CXX11_CONSTEXPR) || (defined(BOOST_GCC) && BOOST_GCC < 40800)
|
67
67
|
// This macro indicates that the compiler doesn't support constexpr constructors that initialize one member
|
68
68
|
// of an anonymous union member of the class.
|
69
69
|
#define BOOST_ATOMIC_DETAIL_NO_CXX11_CONSTEXPR_UNION_INIT
|
70
70
|
#endif
|
71
71
|
|
72
|
+
#if !defined(__cpp_deduction_guides) || __cpp_deduction_guides < 201703
|
73
|
+
#define BOOST_ATOMIC_DETAIL_NO_CXX17_DEDUCTION_GUIDES
|
74
|
+
#endif // !defined(__cpp_deduction_guides) || __cpp_deduction_guides < 201703
|
75
|
+
|
72
76
|
#if !defined(BOOST_ATOMIC_DETAIL_NO_CXX11_CONSTEXPR_UNION_INIT)
|
73
77
|
#define BOOST_ATOMIC_DETAIL_CONSTEXPR_UNION_INIT BOOST_CONSTEXPR
|
74
78
|
#else
|
@@ -91,9 +95,9 @@
|
|
91
95
|
#define BOOST_ATOMIC_DETAIL_ASM_HAS_FLAG_OUTPUTS
|
92
96
|
#endif
|
93
97
|
|
94
|
-
#if defined(BOOST_INTEL) || (defined(BOOST_GCC) &&
|
95
|
-
(defined(BOOST_CLANG) && !defined(__apple_build_version__) && (
|
96
|
-
(defined(__clang__) && defined(__apple_build_version__) && (
|
98
|
+
#if defined(BOOST_INTEL) || (defined(BOOST_GCC) && BOOST_GCC < 40700) ||\
|
99
|
+
(defined(BOOST_CLANG) && !defined(__apple_build_version__) && (__clang_major__ * 100 + __clang_minor__) < 302) ||\
|
100
|
+
(defined(__clang__) && defined(__apple_build_version__) && (__clang_major__ * 100 + __clang_minor__) < 402)
|
97
101
|
// Intel compiler (at least 18.0 update 1) breaks if noexcept specification is used in defaulted function declarations:
|
98
102
|
// error: the default constructor of "boost::atomics::atomic<T>" cannot be referenced -- it is a deleted function
|
99
103
|
// GCC 4.6 doesn't seem to support that either. Clang 3.1 deduces wrong noexcept for the defaulted function and fails as well.
|
@@ -116,7 +120,7 @@
|
|
116
120
|
#define BOOST_ATOMIC_DETAIL_IS_CONSTANT(x) false
|
117
121
|
#endif
|
118
122
|
|
119
|
-
#if (defined(__BYTE_ORDER__) && defined(__FLOAT_WORD_ORDER__) &&
|
123
|
+
#if (defined(__BYTE_ORDER__) && defined(__FLOAT_WORD_ORDER__) && __BYTE_ORDER__ == __FLOAT_WORD_ORDER__) ||\
|
120
124
|
defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
|
121
125
|
// This macro indicates that integer and floating point endianness is the same
|
122
126
|
#define BOOST_ATOMIC_DETAIL_INT_FP_ENDIAN_MATCH
|
@@ -141,8 +145,8 @@
|
|
141
145
|
// gcc since 4.5 supports deprecated attribute with a message; older versions support the attribute without a message.
|
142
146
|
// Oracle Studio 12.4 supports deprecated attribute with a message; this is the first release that supports the attribute.
|
143
147
|
#if !defined(BOOST_ATOMIC_DETAIL_DEPRECATED) && (\
|
144
|
-
(defined(__GNUC__) && (
|
145
|
-
(defined(__SUNPRO_CC) &&
|
148
|
+
(defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 405) ||\
|
149
|
+
(defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5130))
|
146
150
|
#define BOOST_ATOMIC_DETAIL_DEPRECATED(msg) __attribute__((deprecated(msg)))
|
147
151
|
#endif
|
148
152
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
4
4
|
* http://www.boost.org/LICENSE_1_0.txt)
|
5
5
|
*
|
6
|
-
* Copyright (c) 2020 Andrey Semashev
|
6
|
+
* Copyright (c) 2020-2021 Andrey Semashev
|
7
7
|
*/
|
8
8
|
/*!
|
9
9
|
* \file atomic/ipc_atomic_ref.hpp
|
@@ -74,9 +74,22 @@ public:
|
|
74
74
|
BOOST_DELETED_FUNCTION(ipc_atomic_ref& operator= (ipc_atomic_ref const&))
|
75
75
|
};
|
76
76
|
|
77
|
+
#if !defined(BOOST_ATOMIC_DETAIL_NO_CXX17_DEDUCTION_GUIDES)
|
78
|
+
template< typename T >
|
79
|
+
ipc_atomic_ref(T&) -> ipc_atomic_ref< T >;
|
80
|
+
#endif // !defined(BOOST_ATOMIC_DETAIL_NO_CXX17_DEDUCTION_GUIDES)
|
81
|
+
|
82
|
+
//! IPC atomic reference factory function
|
83
|
+
template< typename T >
|
84
|
+
BOOST_FORCEINLINE ipc_atomic_ref< T > make_ipc_atomic_ref(T& value) BOOST_NOEXCEPT
|
85
|
+
{
|
86
|
+
return ipc_atomic_ref< T >(value);
|
87
|
+
}
|
88
|
+
|
77
89
|
} // namespace atomics
|
78
90
|
|
79
91
|
using atomics::ipc_atomic_ref;
|
92
|
+
using atomics::make_ipc_atomic_ref;
|
80
93
|
|
81
94
|
} // namespace boost
|
82
95
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
// This file was automatically generated on
|
1
|
+
// This file was automatically generated on Sat Mar 6 19:55:50 2021
|
2
2
|
// by libs/config/tools/generate.cpp
|
3
|
-
// Copyright John Maddock 2002-
|
3
|
+
// Copyright John Maddock 2002-21.
|
4
4
|
// Use, modification and distribution are subject to the
|
5
5
|
// Boost Software License, Version 1.0. (See accompanying file
|
6
6
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -20,9 +20,6 @@
|
|
20
20
|
#ifdef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
|
21
21
|
# error "Your compiler appears not to be fully C++03 compliant. Detected via defect macro BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS."
|
22
22
|
#endif
|
23
|
-
#ifdef BOOST_NO_AUTO_PTR
|
24
|
-
# error "Your compiler appears not to be fully C++03 compliant. Detected via defect macro BOOST_NO_AUTO_PTR."
|
25
|
-
#endif
|
26
23
|
#ifdef BOOST_NO_COMPLETE_VALUE_INITIALIZATION
|
27
24
|
# error "Your compiler appears not to be fully C++03 compliant. Detected via defect macro BOOST_NO_COMPLETE_VALUE_INITIALIZATION."
|
28
25
|
#endif
|
@@ -1,6 +1,6 @@
|
|
1
|
-
// This file was automatically generated on
|
1
|
+
// This file was automatically generated on Sat Mar 6 19:55:50 2021
|
2
2
|
// by libs/config/tools/generate.cpp
|
3
|
-
// Copyright John Maddock 2002-
|
3
|
+
// Copyright John Maddock 2002-21.
|
4
4
|
// Use, modification and distribution are subject to the
|
5
5
|
// Boost Software License, Version 1.0. (See accompanying file
|
6
6
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -21,9 +21,6 @@
|
|
21
21
|
#ifdef BOOST_NO_CXX11_ALLOCATOR
|
22
22
|
# error "Your compiler appears not to be fully C++11 compliant. Detected via defect macro BOOST_NO_CXX11_ALLOCATOR."
|
23
23
|
#endif
|
24
|
-
#ifdef BOOST_NO_CXX11_ATOMIC_SMART_PTR
|
25
|
-
# error "Your compiler appears not to be fully C++11 compliant. Detected via defect macro BOOST_NO_CXX11_ATOMIC_SMART_PTR."
|
26
|
-
#endif
|
27
24
|
#ifdef BOOST_NO_CXX11_AUTO_DECLARATIONS
|
28
25
|
# error "Your compiler appears not to be fully C++11 compliant. Detected via defect macro BOOST_NO_CXX11_AUTO_DECLARATIONS."
|
29
26
|
#endif
|
@@ -1,6 +1,6 @@
|
|
1
|
-
// This file was automatically generated on
|
1
|
+
// This file was automatically generated on Sat Mar 6 19:55:50 2021
|
2
2
|
// by libs/config/tools/generate.cpp
|
3
|
-
// Copyright John Maddock 2002-
|
3
|
+
// Copyright John Maddock 2002-21.
|
4
4
|
// Use, modification and distribution are subject to the
|
5
5
|
// Boost Software License, Version 1.0. (See accompanying file
|
6
6
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
// This file was automatically generated on
|
1
|
+
// This file was automatically generated on Sat Mar 6 19:55:50 2021
|
2
2
|
// by libs/config/tools/generate.cpp
|
3
|
-
// Copyright John Maddock 2002-
|
3
|
+
// Copyright John Maddock 2002-21.
|
4
4
|
// Use, modification and distribution are subject to the
|
5
5
|
// Boost Software License, Version 1.0. (See accompanying file
|
6
6
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -0,0 +1,56 @@
|
|
1
|
+
// This file was automatically generated on Sat Mar 6 19:55:50 2021
|
2
|
+
// by libs/config/tools/generate.cpp
|
3
|
+
// Copyright John Maddock 2002-21.
|
4
|
+
// Use, modification and distribution are subject to the
|
5
|
+
// Boost Software License, Version 1.0. (See accompanying file
|
6
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
|
8
|
+
// See http://www.boost.org/libs/config for the most recent version.//
|
9
|
+
// Revision $Id$
|
10
|
+
//
|
11
|
+
|
12
|
+
#include <boost/config.hpp>
|
13
|
+
#include <boost/config/assert_cxx17.hpp>
|
14
|
+
|
15
|
+
#ifdef BOOST_NO_CXX20_HDR_BARRIER
|
16
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_BARRIER."
|
17
|
+
#endif
|
18
|
+
#ifdef BOOST_NO_CXX20_HDR_BIT
|
19
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_BIT."
|
20
|
+
#endif
|
21
|
+
#ifdef BOOST_NO_CXX20_HDR_COMPARE
|
22
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_COMPARE."
|
23
|
+
#endif
|
24
|
+
#ifdef BOOST_NO_CXX20_HDR_CONCEPTS
|
25
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_CONCEPTS."
|
26
|
+
#endif
|
27
|
+
#ifdef BOOST_NO_CXX20_HDR_COROUTINE
|
28
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_COROUTINE."
|
29
|
+
#endif
|
30
|
+
#ifdef BOOST_NO_CXX20_HDR_FORMAT
|
31
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_FORMAT."
|
32
|
+
#endif
|
33
|
+
#ifdef BOOST_NO_CXX20_HDR_LATCH
|
34
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_LATCH."
|
35
|
+
#endif
|
36
|
+
#ifdef BOOST_NO_CXX20_HDR_NUMBERS
|
37
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_NUMBERS."
|
38
|
+
#endif
|
39
|
+
#ifdef BOOST_NO_CXX20_HDR_RANGES
|
40
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_RANGES."
|
41
|
+
#endif
|
42
|
+
#ifdef BOOST_NO_CXX20_HDR_SEMAPHORE
|
43
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SEMAPHORE."
|
44
|
+
#endif
|
45
|
+
#ifdef BOOST_NO_CXX20_HDR_SOURCE_LOCATION
|
46
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SOURCE_LOCATION."
|
47
|
+
#endif
|
48
|
+
#ifdef BOOST_NO_CXX20_HDR_SPAN
|
49
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SPAN."
|
50
|
+
#endif
|
51
|
+
#ifdef BOOST_NO_CXX20_HDR_STOP_TOKEN
|
52
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_STOP_TOKEN."
|
53
|
+
#endif
|
54
|
+
#ifdef BOOST_NO_CXX20_HDR_SYNCSTREAM
|
55
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SYNCSTREAM."
|
56
|
+
#endif
|
@@ -190,11 +190,7 @@ BOOST_LIB_SUFFIX: Static/import libraries extension (".lib", ".a") for the c
|
|
190
190
|
# elif defined(BOOST_EMBTC_WINDOWS)
|
191
191
|
|
192
192
|
// Embarcadero Clang based compilers:
|
193
|
-
#
|
194
|
-
# define BOOST_LIB_TOOLSET "bcb32"
|
195
|
-
# elif defined(BOOST_EMBTC_WIN64)
|
196
|
-
# define BOOST_LIB_TOOLSET "bcb64"
|
197
|
-
# endif
|
193
|
+
# define BOOST_LIB_TOOLSET "embtc"
|
198
194
|
|
199
195
|
# elif defined(BOOST_BORLANDC)
|
200
196
|
|
@@ -77,31 +77,20 @@
|
|
77
77
|
|
78
78
|
#define BOOST_NO_CXX11_AUTO_DECLARATIONS
|
79
79
|
#define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
|
80
|
-
#define BOOST_NO_CXX11_CHAR16_T
|
81
|
-
#define BOOST_NO_CXX11_CHAR32_T
|
82
|
-
#define BOOST_NO_CXX11_CONSTEXPR
|
83
|
-
#define BOOST_NO_CXX11_DECLTYPE
|
84
|
-
#define BOOST_NO_CXX11_DECLTYPE_N3276
|
85
80
|
#define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
|
86
81
|
#define BOOST_NO_CXX11_DELETED_FUNCTIONS
|
87
82
|
#define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
|
88
83
|
#define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
|
89
|
-
#define BOOST_NO_CXX11_LAMBDAS
|
90
84
|
#define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
|
91
85
|
#define BOOST_NO_CXX11_NOEXCEPT
|
92
86
|
#define BOOST_NO_CXX11_NULLPTR
|
93
|
-
#define BOOST_NO_CXX11_RANGE_BASED_FOR
|
94
|
-
#define BOOST_NO_CXX11_RAW_LITERALS
|
95
87
|
#define BOOST_NO_CXX11_RVALUE_REFERENCES
|
96
88
|
#define BOOST_NO_CXX11_SCOPED_ENUMS
|
97
89
|
#define BOOST_NO_SFINAE_EXPR
|
98
90
|
#define BOOST_NO_CXX11_SFINAE_EXPR
|
99
91
|
#define BOOST_NO_CXX11_STATIC_ASSERT
|
100
92
|
#define BOOST_NO_CXX11_TEMPLATE_ALIASES
|
101
|
-
#define BOOST_NO_CXX11_UNICODE_LITERALS
|
102
|
-
#define BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
103
93
|
#define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
|
104
|
-
#define BOOST_NO_CXX11_USER_DEFINED_LITERALS
|
105
94
|
#define BOOST_NO_CXX11_ALIGNAS
|
106
95
|
#define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
|
107
96
|
#define BOOST_NO_CXX11_INLINE_NAMESPACES
|
@@ -111,6 +100,37 @@
|
|
111
100
|
#define BOOST_NO_CXX11_THREAD_LOCAL
|
112
101
|
#define BOOST_NO_CXX11_UNRESTRICTED_UNION
|
113
102
|
|
103
|
+
//__cpp_decltype 200707 possibly?
|
104
|
+
#define BOOST_NO_CXX11_DECLTYPE
|
105
|
+
#define BOOST_NO_CXX11_DECLTYPE_N3276
|
106
|
+
|
107
|
+
#if !defined(__cpp_unicode_characters) || (__cpp_unicode_characters < 200704)
|
108
|
+
# define BOOST_NO_CXX11_CHAR16_T
|
109
|
+
# define BOOST_NO_CXX11_CHAR32_T
|
110
|
+
#endif
|
111
|
+
#if !defined(__cpp_unicode_literals) || (__cpp_unicode_literals < 200710)
|
112
|
+
# define BOOST_NO_CXX11_UNICODE_LITERALS
|
113
|
+
#endif
|
114
|
+
#if !defined(__cpp_user_defined_literals) || (__cpp_user_defined_literals < 200809)
|
115
|
+
# define BOOST_NO_CXX11_USER_DEFINED_LITERALS
|
116
|
+
#endif
|
117
|
+
#if !defined(__cpp_variadic_templates) || (__cpp_variadic_templates < 200704)
|
118
|
+
# define BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
119
|
+
#endif
|
120
|
+
#if !defined(__cpp_constexpr) || (__cpp_constexpr < 200907)
|
121
|
+
# define BOOST_NO_CXX11_CONSTEXPR
|
122
|
+
#endif
|
123
|
+
#if !defined(__cpp_lambdas) || (__cpp_lambdas < 200907)
|
124
|
+
# define BOOST_NO_CXX11_LAMBDAS
|
125
|
+
#endif
|
126
|
+
#if !defined(__cpp_range_based_for) || (__cpp_range_based_for < 200710)
|
127
|
+
# define BOOST_NO_CXX11_RANGE_BASED_FOR
|
128
|
+
#endif
|
129
|
+
#if !defined(__cpp_raw_strings) || (__cpp_raw_strings < 200610)
|
130
|
+
# define BOOST_NO_CXX11_RAW_LITERALS
|
131
|
+
#endif
|
132
|
+
|
133
|
+
|
114
134
|
// C++ 14:
|
115
135
|
#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
|
116
136
|
# define BOOST_NO_CXX14_AGGREGATE_NSDMI
|
@@ -1,6 +1,6 @@
|
|
1
|
-
// This file was automatically generated on
|
1
|
+
// This file was automatically generated on Sat Mar 6 19:55:50 2021
|
2
2
|
// by libs/config/tools/generate.cpp
|
3
|
-
// Copyright John Maddock 2002-
|
3
|
+
// Copyright John Maddock 2002-21.
|
4
4
|
// Use, modification and distribution are subject to the
|
5
5
|
// Boost Software License, Version 1.0. (See accompanying file
|
6
6
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -12,7 +12,6 @@
|
|
12
12
|
#if defined(BOOST_NO_ADL_BARRIER)\
|
13
13
|
|| defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP)\
|
14
14
|
|| defined(BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS)\
|
15
|
-
|| defined(BOOST_NO_AUTO_PTR)\
|
16
15
|
|| defined(BOOST_NO_COMPLETE_VALUE_INITIALIZATION)\
|
17
16
|
|| defined(BOOST_NO_CTYPE_FUNCTIONS)\
|
18
17
|
|| defined(BOOST_NO_CV_SPECIALIZATIONS)\
|
@@ -83,7 +82,6 @@
|
|
83
82
|
|| defined(BOOST_NO_CXX11_ADDRESSOF)\
|
84
83
|
|| defined(BOOST_NO_CXX11_ALIGNAS)\
|
85
84
|
|| defined(BOOST_NO_CXX11_ALLOCATOR)\
|
86
|
-
|| defined(BOOST_NO_CXX11_ATOMIC_SMART_PTR)\
|
87
85
|
|| defined(BOOST_NO_CXX11_AUTO_DECLARATIONS)\
|
88
86
|
|| defined(BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS)\
|
89
87
|
|| defined(BOOST_NO_CXX11_CHAR16_T)\
|
@@ -184,3 +182,21 @@
|
|
184
182
|
# define BOOST_NO_CXX17
|
185
183
|
#endif
|
186
184
|
|
185
|
+
#if defined(BOOST_NO_CXX17)\
|
186
|
+
|| defined(BOOST_NO_CXX20_HDR_BARRIER)\
|
187
|
+
|| defined(BOOST_NO_CXX20_HDR_BIT)\
|
188
|
+
|| defined(BOOST_NO_CXX20_HDR_COMPARE)\
|
189
|
+
|| defined(BOOST_NO_CXX20_HDR_CONCEPTS)\
|
190
|
+
|| defined(BOOST_NO_CXX20_HDR_COROUTINE)\
|
191
|
+
|| defined(BOOST_NO_CXX20_HDR_FORMAT)\
|
192
|
+
|| defined(BOOST_NO_CXX20_HDR_LATCH)\
|
193
|
+
|| defined(BOOST_NO_CXX20_HDR_NUMBERS)\
|
194
|
+
|| defined(BOOST_NO_CXX20_HDR_RANGES)\
|
195
|
+
|| defined(BOOST_NO_CXX20_HDR_SEMAPHORE)\
|
196
|
+
|| defined(BOOST_NO_CXX20_HDR_SOURCE_LOCATION)\
|
197
|
+
|| defined(BOOST_NO_CXX20_HDR_SPAN)\
|
198
|
+
|| defined(BOOST_NO_CXX20_HDR_STOP_TOKEN)\
|
199
|
+
|| defined(BOOST_NO_CXX20_HDR_SYNCSTREAM)
|
200
|
+
# define BOOST_NO_CXX20
|
201
|
+
#endif
|
202
|
+
|
@@ -88,6 +88,11 @@
|
|
88
88
|
#elif defined(__CloudABI__)
|
89
89
|
// Nuxi CloudABI:
|
90
90
|
# define BOOST_PLATFORM_CONFIG "boost/config/platform/cloudabi.hpp"
|
91
|
+
|
92
|
+
#elif defined (__wasm__)
|
93
|
+
// Web assembly:
|
94
|
+
# define BOOST_PLATFORM_CONFIG "boost/config/platform/wasm.hpp"
|
95
|
+
|
91
96
|
#else
|
92
97
|
|
93
98
|
# if defined(unix) \
|
@@ -475,6 +475,13 @@ namespace std {
|
|
475
475
|
# define BOOST_CTOR_TYPENAME
|
476
476
|
#endif
|
477
477
|
|
478
|
+
//
|
479
|
+
// If we're on a CUDA device (note DEVICE not HOST, irrespective of compiler) then disable __float128 support if present:
|
480
|
+
//
|
481
|
+
#if defined(__CUDA_ARCH__) && defined(BOOST_HAS_FLOAT128)
|
482
|
+
# undef BOOST_HAS_FLOAT128
|
483
|
+
#endif
|
484
|
+
|
478
485
|
// long long workaround ------------------------------------------//
|
479
486
|
// On gcc (and maybe other compilers?) long long is alway supported
|
480
487
|
// but it's use may generate either warnings (with -ansi), or errors
|
@@ -1123,6 +1130,80 @@ namespace std{ using ::type_info; }
|
|
1123
1130
|
#endif
|
1124
1131
|
#endif
|
1125
1132
|
|
1133
|
+
#if !defined(_YVALS) && !defined(_CPPLIB_VER) // msvc std lib already configured
|
1134
|
+
#if (!defined(__has_include) || (__cplusplus < 201704))
|
1135
|
+
# define BOOST_NO_CXX20_HDR_BARRIER
|
1136
|
+
# define BOOST_NO_CXX20_HDR_FORMAT
|
1137
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_LOCATION
|
1138
|
+
# define BOOST_NO_CXX20_HDR_BIT
|
1139
|
+
# define BOOST_NO_CXX20_HDR_LATCH
|
1140
|
+
# define BOOST_NO_CXX20_HDR_SPAN
|
1141
|
+
# define BOOST_NO_CXX20_HDR_COMPARE
|
1142
|
+
# define BOOST_NO_CXX20_HDR_NUMBERS
|
1143
|
+
# define BOOST_NO_CXX20_HDR_STOP_TOKEN
|
1144
|
+
# define BOOST_NO_CXX20_HDR_CONCEPTS
|
1145
|
+
# define BOOST_NO_CXX20_HDR_RANGES
|
1146
|
+
# define BOOST_NO_CXX20_HDR_SYNCSTREAM
|
1147
|
+
# define BOOST_NO_CXX20_HDR_COROUTINE
|
1148
|
+
# define BOOST_NO_CXX20_HDR_SEMAPHORE
|
1149
|
+
#else
|
1150
|
+
#if !__has_include(<barrier>)
|
1151
|
+
# define BOOST_NO_CXX20_HDR_BARRIER
|
1152
|
+
#endif
|
1153
|
+
#if !__has_include(<format>)
|
1154
|
+
# define BOOST_NO_CXX20_HDR_FORMAT
|
1155
|
+
#endif
|
1156
|
+
#if !__has_include(<source_Location>)
|
1157
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_LOCATION
|
1158
|
+
#endif
|
1159
|
+
#if !__has_include(<bit>)
|
1160
|
+
# define BOOST_NO_CXX20_HDR_BIT
|
1161
|
+
#endif
|
1162
|
+
#if !__has_include(<latch>)
|
1163
|
+
# define BOOST_NO_CXX20_HDR_LATCH
|
1164
|
+
#endif
|
1165
|
+
#if !__has_include(<span>)
|
1166
|
+
# define BOOST_NO_CXX20_HDR_SPAN
|
1167
|
+
#endif
|
1168
|
+
#if !__has_include(<compare>)
|
1169
|
+
# define BOOST_NO_CXX20_HDR_COMPARE
|
1170
|
+
#endif
|
1171
|
+
#if !__has_include(<numbers>)
|
1172
|
+
# define BOOST_NO_CXX20_HDR_NUMBERS
|
1173
|
+
#endif
|
1174
|
+
#if !__has_include(<stop_token>)
|
1175
|
+
# define BOOST_NO_CXX20_HDR_STOP_TOKEN
|
1176
|
+
#endif
|
1177
|
+
#if !__has_include(<concepts>)
|
1178
|
+
# define BOOST_NO_CXX20_HDR_CONCEPTS
|
1179
|
+
#endif
|
1180
|
+
#if !__has_include(<ranges>)
|
1181
|
+
# define BOOST_NO_CXX20_HDR_RANGES
|
1182
|
+
#endif
|
1183
|
+
#if !__has_include(<syncstream>)
|
1184
|
+
# define BOOST_NO_CXX20_HDR_SYNCSTREAM
|
1185
|
+
#endif
|
1186
|
+
#if !__has_include(<coroutine>)
|
1187
|
+
# define BOOST_NO_CXX20_HDR_COROUTINE
|
1188
|
+
#endif
|
1189
|
+
#if !__has_include(<semaphore>)
|
1190
|
+
# define BOOST_NO_CXX20_HDR_SEMAPHORE
|
1191
|
+
#endif
|
1192
|
+
#endif
|
1193
|
+
#endif
|
1194
|
+
|
1195
|
+
//
|
1196
|
+
// Define composite agregate macros:
|
1197
|
+
//
|
1198
|
+
#include <boost/config/detail/cxx_composite.hpp>
|
1199
|
+
|
1200
|
+
//
|
1201
|
+
// Define the std level that the compiler claims to support:
|
1202
|
+
//
|
1203
|
+
#ifndef BOOST_CXX_VERSION
|
1204
|
+
# define BOOST_CXX_VERSION __cplusplus
|
1205
|
+
#endif
|
1206
|
+
|
1126
1207
|
//
|
1127
1208
|
// Define composite agregate macros:
|
1128
1209
|
//
|
@@ -28,7 +28,8 @@
|
|
28
28
|
// FreeBSD has <nl_types.h> but does not
|
29
29
|
// advertise the fact in <unistd.h>:
|
30
30
|
//
|
31
|
-
#if (defined(__FreeBSD__) && (__FreeBSD__ >= 3))
|
31
|
+
#if (defined(__FreeBSD__) && (__FreeBSD__ >= 3)) \
|
32
|
+
|| defined(__OpenBSD__) || defined(__DragonFly__)
|
32
33
|
# define BOOST_HAS_NL_TYPES_H
|
33
34
|
#endif
|
34
35
|
|
@@ -56,7 +57,8 @@
|
|
56
57
|
#endif
|
57
58
|
|
58
59
|
#if !((defined(__FreeBSD__) && (__FreeBSD__ >= 5)) \
|
59
|
-
|| (defined(__NetBSD_GCC__) && (__NetBSD_GCC__ >= 2095003))
|
60
|
+
|| (defined(__NetBSD_GCC__) && (__NetBSD_GCC__ >= 2095003)) \
|
61
|
+
|| defined(__OpenBSD__) || defined(__DragonFly__))
|
60
62
|
# define BOOST_NO_CWCHAR
|
61
63
|
#endif
|
62
64
|
//
|
@@ -74,13 +76,8 @@
|
|
74
76
|
#define BOOST_HAS_GETTIMEOFDAY
|
75
77
|
#define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
|
76
78
|
#define BOOST_HAS_SIGACTION
|
79
|
+
#define BOOST_HAS_CLOCK_GETTIME
|
77
80
|
|
78
81
|
// boilerplate code:
|
79
82
|
#define BOOST_HAS_UNISTD_H
|
80
83
|
#include <boost/config/detail/posix_features.hpp>
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
@@ -0,0 +1,17 @@
|
|
1
|
+
// (C) Copyright John Maddock 2020.
|
2
|
+
// Use, modification and distribution are subject to the
|
3
|
+
// Boost Software License, Version 1.0. (See accompanying file
|
4
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
5
|
+
|
6
|
+
// See http://www.boost.org for most recent version.
|
7
|
+
|
8
|
+
// WASM specific config options:
|
9
|
+
|
10
|
+
#define BOOST_PLATFORM "Wasm"
|
11
|
+
|
12
|
+
// boilerplate code:
|
13
|
+
#include <boost/config/detail/posix_features.hpp>
|
14
|
+
//
|
15
|
+
// fenv lacks the C++11 macros:
|
16
|
+
//
|
17
|
+
#define BOOST_NO_FENV_H
|
@@ -192,6 +192,26 @@
|
|
192
192
|
# define BOOST_NO_CXX17_STD_INVOKE
|
193
193
|
#endif
|
194
194
|
|
195
|
+
// C++20 features
|
196
|
+
#if !defined(_MSVC_STL_UPDATE) || (_MSVC_STL_UPDATE < 202008L) || !defined(_HAS_CXX20) || (_HAS_CXX20 == 0)
|
197
|
+
# define BOOST_NO_CXX20_HDR_BARRIER
|
198
|
+
# define BOOST_NO_CXX20_HDR_BIT
|
199
|
+
# define BOOST_NO_CXX20_HDR_LATCH
|
200
|
+
# define BOOST_NO_CXX20_HDR_SPAN
|
201
|
+
# define BOOST_NO_CXX20_HDR_COMPARE
|
202
|
+
# define BOOST_NO_CXX20_HDR_NUMBERS
|
203
|
+
# define BOOST_NO_CXX20_HDR_CONCEPTS
|
204
|
+
# define BOOST_NO_CXX20_HDR_COROUTINE
|
205
|
+
# define BOOST_NO_CXX20_HDR_SEMAPHORE
|
206
|
+
#endif
|
207
|
+
// C++20 features not yet implemented:
|
208
|
+
# define BOOST_NO_CXX20_HDR_FORMAT
|
209
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_LOCATION
|
210
|
+
# define BOOST_NO_CXX20_HDR_STOP_TOKEN
|
211
|
+
# define BOOST_NO_CXX20_HDR_SYNCSTREAM
|
212
|
+
// Incomplete:
|
213
|
+
# define BOOST_NO_CXX20_HDR_RANGES
|
214
|
+
|
195
215
|
#if !(!defined(_CPPLIB_VER) || (_CPPLIB_VER < 650) || !defined(BOOST_MSVC) || (BOOST_MSVC < 1912) || !defined(_HAS_CXX17) || (_HAS_CXX17 == 0))
|
196
216
|
// Deprecated std::iterator:
|
197
217
|
# define BOOST_NO_STD_ITERATOR
|
@@ -227,6 +247,12 @@
|
|
227
247
|
# define BOOST_NO_CXX98_BINDERS
|
228
248
|
# endif
|
229
249
|
#endif
|
250
|
+
//
|
251
|
+
// Things deprecated in C++20:
|
252
|
+
//
|
253
|
+
#if defined(_HAS_CXX20)
|
254
|
+
# define BOOST_NO_CXX11_ATOMIC_SMART_PTR
|
255
|
+
#endif
|
230
256
|
|
231
257
|
|
232
258
|
//
|
@@ -106,6 +106,7 @@
|
|
106
106
|
|
107
107
|
#ifdef __has_include
|
108
108
|
#if __has_include(<version>)
|
109
|
+
#include <version>
|
109
110
|
|
110
111
|
#if !defined(__cpp_lib_execution) || (__cpp_lib_execution < 201603L)
|
111
112
|
# define BOOST_NO_CXX17_HDR_EXECUTION
|
@@ -114,6 +115,54 @@
|
|
114
115
|
#define BOOST_NO_CXX17_STD_INVOKE
|
115
116
|
#endif
|
116
117
|
|
118
|
+
#if !defined(__cpp_lib_bit_cast) || (__cpp_lib_bit_cast < 201806L) || !defined(__cpp_lib_bitops) || (__cpp_lib_bitops < 201907L) || !defined(__cpp_lib_endian) || (__cpp_lib_endian < 201907L)
|
119
|
+
# define BOOST_NO_CXX20_HDR_BIT
|
120
|
+
#endif
|
121
|
+
#if !defined(__cpp_lib_three_way_comparison) || (__cpp_lib_three_way_comparison < 201907L)
|
122
|
+
# define BOOST_NO_CXX20_HDR_COMPARE
|
123
|
+
#endif
|
124
|
+
#if !defined(__cpp_lib_ranges) || (__cpp_lib_ranges < 201911L)
|
125
|
+
# define BOOST_NO_CXX20_HDR_RANGES
|
126
|
+
#endif
|
127
|
+
#if !defined(__cpp_lib_barrier) || (__cpp_lib_barrier < 201907L)
|
128
|
+
# define BOOST_NO_CXX20_HDR_BARRIER
|
129
|
+
#endif
|
130
|
+
#if !defined(__cpp_lib_format) || (__cpp_lib_format < 201907L)
|
131
|
+
# define BOOST_NO_CXX20_HDR_FORMAT
|
132
|
+
#endif
|
133
|
+
#if !defined(__cpp_lib_source_location) || (__cpp_lib_source_location < 201907L)
|
134
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_LOCATION
|
135
|
+
#endif
|
136
|
+
#if !defined(__cpp_lib_latch) || (__cpp_lib_latch < 201907L)
|
137
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_LATCH
|
138
|
+
#endif
|
139
|
+
#if !defined(__cpp_lib_span) || (__cpp_lib_span < 202002L)
|
140
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_SPAN
|
141
|
+
#endif
|
142
|
+
#if !defined(__cpp_lib_math_constants) || (__cpp_lib_math_constants < 201907L)
|
143
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_NUMBERS
|
144
|
+
#endif
|
145
|
+
#if !defined(__cpp_lib_jthread) || (__cpp_lib_jthread < 201911L)
|
146
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_STOP_TOKEN
|
147
|
+
#endif
|
148
|
+
#if !defined(__cpp_lib_concepts) || (__cpp_lib_concepts < 202002L)
|
149
|
+
# define BOOST_NO_CXX20_HDR_SOURCE_STOP_CONCEPTS
|
150
|
+
#endif
|
151
|
+
#if !defined(__cpp_lib_syncbuf) || (__cpp_lib_syncbuf < 201803L)
|
152
|
+
# define BOOST_NO_CXX20_HDR_SYNCSTREAM
|
153
|
+
#endif
|
154
|
+
#if !defined(__cpp_lib_coroutine) || (__cpp_lib_coroutine < 201902L)
|
155
|
+
# define BOOST_NO_CXX20_HDR_COROUTINE
|
156
|
+
#endif
|
157
|
+
#if !defined(__cpp_lib_semaphore) || (__cpp_lib_semaphore < 201907L)
|
158
|
+
# define BOOST_NO_CXX20_HDR_SEMAPHORE
|
159
|
+
#endif
|
160
|
+
|
161
|
+
#if(_LIBCPP_VERSION < 9000) && !defined(BOOST_NO_CXX20_HDR_SPAN)
|
162
|
+
// as_writable_bytes is missing.
|
163
|
+
# define BOOST_NO_CXX20_HDR_SPAN
|
164
|
+
#endif
|
165
|
+
|
117
166
|
#else
|
118
167
|
#define BOOST_NO_CXX17_STD_INVOKE // Invoke support is incomplete (no invoke_result)
|
119
168
|
#define BOOST_NO_CXX17_HDR_EXECUTION
|