aboutsummaryrefslogtreecommitdiff
path: root/ports/abseil
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2019-01-09 12:31:28 -0800
committerRobert Schumacher <roschuma@microsoft.com>2019-01-18 14:08:49 -0800
commitc6db2c880a064b29e0b38eda29f19510235fb4c9 (patch)
treeaf58f3335e667a63252598f1e1bfa0c8aa502778 /ports/abseil
parent75bad0f69baa18aefc70c44e1fa5c6142fb7bbdf (diff)
downloadvcpkg-c6db2c880a064b29e0b38eda29f19510235fb4c9.tar.gz
vcpkg-c6db2c880a064b29e0b38eda29f19510235fb4c9.zip
Updates 2019.01.09
Diffstat (limited to 'ports/abseil')
-rw-r--r--ports/abseil/CMakeLists.txt4
-rw-r--r--ports/abseil/CONTROL2
-rw-r--r--ports/abseil/portfile.cmake4
3 files changed, 5 insertions, 5 deletions
diff --git a/ports/abseil/CMakeLists.txt b/ports/abseil/CMakeLists.txt
index d98914e60..7235b95e2 100644
--- a/ports/abseil/CMakeLists.txt
+++ b/ports/abseil/CMakeLists.txt
@@ -60,7 +60,7 @@ endfunction()
add_sublibrary(algorithm)
add_sublibrary(base)
-add_sublibrary(container)
+add_sublibrary(container STATIC)
add_sublibrary(debugging)
add_sublibrary(hash)
add_sublibrary(memory)
@@ -74,7 +74,7 @@ add_sublibrary(types)
add_sublibrary(utility)
target_link_public_libraries(algorithm base meta)
-target_link_public_libraries(container algorithm base memory)
+target_link_public_libraries(container algorithm base memory time)
target_link_public_libraries(debugging base)
target_link_public_libraries(hash base)
target_link_public_libraries(memory meta)
diff --git a/ports/abseil/CONTROL b/ports/abseil/CONTROL
index e6a265d6b..c1cb755b4 100644
--- a/ports/abseil/CONTROL
+++ b/ports/abseil/CONTROL
@@ -1,5 +1,5 @@
Source: abseil
-Version: 2018-12-14
+Version: 2019-01-09-1
Description: an open-source collection designed to augment the C++ standard library.
Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives.
In some cases, Abseil provides pieces missing from the C++ standard; in others, Abseil provides alternatives to the standard for special needs we've found through usage in the Google code base. We denote those cases clearly within the library code we provide you.
diff --git a/ports/abseil/portfile.cmake b/ports/abseil/portfile.cmake
index 2e2488845..bd2e6a0d4 100644
--- a/ports/abseil/portfile.cmake
+++ b/ports/abseil/portfile.cmake
@@ -7,8 +7,8 @@ endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO abseil/abseil-cpp
- REF 389ec3f906f018661a5308458d623d01f96d7b23
- SHA512 20d2cc8d23eb729607692d861049dccbd6b4af56fc4ed7733492348e3fe879d7acc6316f0d6e1c683f98188f028d460a40cab35667856cf334aa5f00fc830911
+ REF 018b4db1d73ec8238e6dc4b17fd9e1fd7468d0ed
+ SHA512 55cd4bc801a405c9197d4d9bdd906a3742f9f7ef04a70f6f8a41aa8d2f7f6b9c38501265a4a096a12840b2e48ac0bf93d348b6ba8dea05e0801ed4013941f5dd
HEAD_REF master
)