diff options
Diffstat (limited to 'debian/patches/overload-test-dependencies.diff')
-rw-r--r-- | debian/patches/overload-test-dependencies.diff | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/patches/overload-test-dependencies.diff b/debian/patches/overload-test-dependencies.diff deleted file mode 100644 index fb843c91..00000000 --- a/debian/patches/overload-test-dependencies.diff +++ /dev/null @@ -1,27 +0,0 @@ -From: Benjamin Barenblat <bbaren@google.com> -Subject: Resynchronize absl/functional/CMakeLists.txt with BUILD.bazel -Forwarded: yes -Applied-Upstream: https://github.com/abseil/abseil-cpp/commit/7b87d959346cab4ab9829724efee377f7fb254ed - -overload_test needs some extra dependencies to build when absl::variant -is not an alias for std::variant; these dependencies are listed in -absl/functional/BUILD.bazel but not in absl/functional/CMakeLists.txt. -Copy dependencies from BUILD.bazel to CMakeLists.txt. - -The author works at Google. Upstream applied this patch as Piper -revision 631845552 and exported it to GitHub; the Applied-Upstream URL -above points to the exported commit. - ---- a/absl/functional/CMakeLists.txt -+++ b/absl/functional/CMakeLists.txt -@@ -129,6 +129,10 @@ - COPTS - ${ABSL_TEST_COPTS} - DEPS -+ absl::config -+ absl::overload -+ absl::string_view - absl::strings -+ absl::variant - GTest::gmock_main - ) |