diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-08-09 22:56:09 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-08-20 14:26:49 -0700 |
| commit | eae02c95b33ec0272a232395820379e0a8b2393d (patch) | |
| tree | 2b5c15c4d61d8fe497d3de2b90167065479bda10 /ports/boost-thread | |
| parent | 5e57beb401c260cea9cb5c355410f1ffc4e49347 (diff) | |
| download | vcpkg-eae02c95b33ec0272a232395820379e0a8b2393d.tar.gz vcpkg-eae02c95b33ec0272a232395820379e0a8b2393d.zip | |
[boost] Update to 1.68.0
[boost-vcpkg-helpers] Improve include scanner
[boost-vcpkg-helpers] Fix boost/functional/hash -> boost/container_hash dependency
[boost-context] Install replacement boost/context/all.hpp to support FindBoost.cmake
[boost] Improve port dependency qualifiers for UWP
[boost-contract] Mark as known to fail for ARM
Diffstat (limited to 'ports/boost-thread')
| -rw-r--r-- | ports/boost-thread/CONTROL | 4 | ||||
| -rw-r--r-- | ports/boost-thread/avoid-winapi.patch | 13 | ||||
| -rw-r--r-- | ports/boost-thread/portfile.cmake | 5 |
3 files changed, 18 insertions, 4 deletions
diff --git a/ports/boost-thread/CONTROL b/ports/boost-thread/CONTROL index 6eeb13ebc..2929ec0b8 100644 --- a/ports/boost-thread/CONTROL +++ b/ports/boost-thread/CONTROL @@ -1,5 +1,5 @@ # Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
Source: boost-thread
-Version: 1.67.0
-Build-Depends: boost-algorithm, boost-assert, boost-atomic, boost-bind, boost-build, boost-chrono, boost-concept-check, boost-config, boost-container, boost-core, boost-date-time, boost-detail, boost-exception, boost-function, boost-functional, boost-integer, boost-intrusive, boost-io, boost-lexical-cast, boost-math, boost-modular-build-helper, boost-move, boost-mpl, boost-optional, boost-predef, boost-preprocessor, boost-smart-ptr, boost-static-assert, boost-system, boost-throw-exception, boost-tuple, boost-type-traits, boost-utility, boost-vcpkg-helpers, boost-winapi
+Version: 1.68.0
+Build-Depends: boost-algorithm, boost-assert, boost-atomic, boost-bind, boost-build, boost-chrono, boost-concept-check, boost-config, boost-container, boost-container-hash, boost-core, boost-date-time, boost-detail, boost-exception, boost-function, boost-integer, boost-intrusive, boost-io, boost-lexical-cast, boost-math, boost-modular-build-helper, boost-move, boost-mpl, boost-optional, boost-predef, boost-preprocessor, boost-smart-ptr, boost-static-assert, boost-system, boost-throw-exception, boost-tuple, boost-type-traits, boost-utility, boost-vcpkg-helpers, boost-winapi
Description: Boost thread module
diff --git a/ports/boost-thread/avoid-winapi.patch b/ports/boost-thread/avoid-winapi.patch new file mode 100644 index 000000000..ed6a89ee7 --- /dev/null +++ b/ports/boost-thread/avoid-winapi.patch @@ -0,0 +1,13 @@ +diff --git a/include/boost/thread/win32/thread_primitives.hpp b/include/boost/thread/win32/thread_primitives.hpp
+index 5e378f7..6144621 100644
+--- a/include/boost/thread/win32/thread_primitives.hpp
++++ b/include/boost/thread/win32/thread_primitives.hpp
+@@ -70,7 +70,7 @@ namespace boost
+ {
+ namespace win32
+ {
+- namespace detail { typedef ticks_type (WINAPI *gettickcount64_t)(); }
++ namespace detail { typedef ticks_type (__stdcall *gettickcount64_t)(); }
+ extern BOOST_THREAD_DECL boost::detail::win32::detail::gettickcount64_t gettickcount64;
+
+ enum event_type
diff --git a/ports/boost-thread/portfile.cmake b/ports/boost-thread/portfile.cmake index 30f203d31..d260bcae9 100644 --- a/ports/boost-thread/portfile.cmake +++ b/ports/boost-thread/portfile.cmake @@ -5,9 +5,10 @@ include(vcpkg_common_functions) vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO boostorg/thread
- REF boost-1.67.0
- SHA512 e641484c2d021d0a8b77955bd9ee7f53f4a4c7f003b9260aa17c78b236a8cda4b1ec59c9fb16aab823b7be9d6da6a67c2d333308d8b1d5c9bbaa6a0de9018479
+ REF boost-1.68.0
+ SHA512 ccb1283550347d367390d26c7b64d630cefbdd69ed18d0bdd42a82c726942a76a10a06729630b6e8788d553cf6fee8123feebc3f5b751254cef7a022475b02e8
HEAD_REF master
+ PATCHES avoid-winapi.patch
)
include(${CURRENT_INSTALLED_DIR}/share/boost-build/boost-modular-build.cmake)
|
