aboutsummaryrefslogtreecommitdiff
path: root/ports/hpx/boost-1-66.patch
diff options
context:
space:
mode:
authorHartmut Kaiser <hartmut.kaiser@gmail.com>2018-03-25 08:33:34 +0900
committerRobert Schumacher <roschuma@microsoft.com>2018-03-24 16:33:34 -0700
commit21ef72d02a7ea840b3427bda2ea2705aeaef2f00 (patch)
tree73e4732d6b9de1688f3c02b0a2986685e9660975 /ports/hpx/boost-1-66.patch
parent21909157e28363480a02d2e30697e8c3d5f36e53 (diff)
downloadvcpkg-21ef72d02a7ea840b3427bda2ea2705aeaef2f00.tar.gz
vcpkg-21ef72d02a7ea840b3427bda2ea2705aeaef2f00.zip
Updating HPX to V1.1 (#3120)
* Updating HPX to V1.1 * [hpx] Use vcpkg_fixup_cmake_targets
Diffstat (limited to 'ports/hpx/boost-1-66.patch')
-rw-r--r--ports/hpx/boost-1-66.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/ports/hpx/boost-1-66.patch b/ports/hpx/boost-1-66.patch
deleted file mode 100644
index 6f98a48aa..000000000
--- a/ports/hpx/boost-1-66.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff --git a/src/util/asio_util.cpp b/src/util/asio_util.cpp
-index e2207de..48a35b9 100644
---- a/src/util/asio_util.cpp
-+++ b/src/util/asio_util.cpp
-@@ -231,7 +231,7 @@ namespace hpx { namespace util
- tcp::endpoint ep;
- if (util::get_endpoint(address, port, ep))
- {
-- return endpoint_iterator_type(tcp::resolver::iterator::create(
-+ return endpoint_iterator_type(tcp::resolver::results_type::create(
- ep, address, port_str));
- }
- }
-@@ -283,7 +283,7 @@ namespace hpx { namespace util
- if (util::get_endpoint(address, port, ep))
- {
- return endpoint_iterator_type(
-- tcp::resolver::iterator::create(ep, address, port_str));
-+ tcp::resolver::results_type::create(ep, address, port_str));
- }
- }
- catch (boost::system::system_error const&) {
-diff --git a/src/util/serialize_exception.cpp b/src/util/serialize_exception.cpp
-index 935e575..22bcf37 100644
---- a/src/util/serialize_exception.cpp
-+++ b/src/util/serialize_exception.cpp
-@@ -341,11 +341,7 @@ namespace hpx { namespace serialization
- case hpx::util::boost_system_error:
- e = hpx::detail::construct_exception(
- boost::system::system_error(err_value,
--#ifndef BOOST_SYSTEM_NO_DEPRECATED
-- boost::system::get_system_category()
--#else
- boost::system::system_category()
--#endif
- , err_message
- )
- , throw_function_, throw_file_, throw_line_, throw_back_trace_,