From 80ec32c55f93f93ccf5002282212da445344e13e Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Thu, 15 Feb 2024 14:29:10 +0100 Subject: [PATCH] bump abseil --- Dependencies.txt | 2 +- WORKSPACE | 4 ++-- cmake/dependencies/CMakeLists.txt | 4 ++-- ...bseil-cpp-20240116.0.patch => abseil-cpp-20240116.1.patch} | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename patches/{abseil-cpp-20240116.0.patch => abseil-cpp-20240116.1.patch} (100%) diff --git a/Dependencies.txt b/Dependencies.txt index 5590f3d923..1ed955cf92 100644 --- a/Dependencies.txt +++ b/Dependencies.txt @@ -1,5 +1,5 @@ Protobuf=v25.2 -abseil-cpp=20240116.0 +abseil-cpp=20240116.1 Cbc=2.10.7 Cgl=0.60.5 Clp=1.17.7 diff --git a/WORKSPACE b/WORKSPACE index 027202306f..9181859ecc 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -88,8 +88,8 @@ git_repository( ## Abseil-cpp git_repository( name = "com_google_absl", - tag = "20240116.0", - patches = ["//patches:abseil-cpp-20240116.0.patch"], + tag = "20240116.1", + patches = ["//patches:abseil-cpp-20240116.1.patch"], patch_args = ["-p1"], remote = "https://github.com/abseil/abseil-cpp.git", ) diff --git a/cmake/dependencies/CMakeLists.txt b/cmake/dependencies/CMakeLists.txt index 09051f2d87..d51e48128e 100644 --- a/cmake/dependencies/CMakeLists.txt +++ b/cmake/dependencies/CMakeLists.txt @@ -83,8 +83,8 @@ if(BUILD_absl) FetchContent_Declare( abseil-cpp GIT_REPOSITORY "https://github.com/abseil/abseil-cpp.git" - GIT_TAG "20240116.0" - PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/abseil-cpp-20240116.0.patch" + GIT_TAG "20240116.1" + PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/abseil-cpp-20240116.1.patch" ) FetchContent_MakeAvailable(abseil-cpp) list(POP_BACK CMAKE_MESSAGE_INDENT) diff --git a/patches/abseil-cpp-20240116.0.patch b/patches/abseil-cpp-20240116.1.patch similarity index 100% rename from patches/abseil-cpp-20240116.0.patch rename to patches/abseil-cpp-20240116.1.patch