summaryrefslogtreecommitdiffstats
path: root/development/Bear/fcc90e43eebe9250abeeb81aab429053864da325.patch
diff options
context:
space:
mode:
author Ivan Kovmir <i@kovmir.eu>2024-05-27 12:08:53 +0200
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2024-05-28 12:48:27 +0700
commitfbb069208a6729cb7c798b6ea10907b86fa766d5 (patch)
tree8a9f12105361161721c6c5f6f2cd3fa0428c918c /development/Bear/fcc90e43eebe9250abeeb81aab429053864da325.patch
parent482b1e6b1fa49145861e7aaad9b78ff6f4d4d3c5 (diff)
downloadslackbuilds-fbb069208a6729cb7c798b6ea10907b86fa766d5.tar.gz
slackbuilds-fbb069208a6729cb7c798b6ea10907b86fa766d5.tar.xz
development/Bear: Updated for version 3.1.4
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--development/Bear/fcc90e43eebe9250abeeb81aab429053864da325.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/development/Bear/fcc90e43eebe9250abeeb81aab429053864da325.patch b/development/Bear/fcc90e43eebe9250abeeb81aab429053864da325.patch
deleted file mode 100644
index 3d760041bd..0000000000
--- a/development/Bear/fcc90e43eebe9250abeeb81aab429053864da325.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From fcc90e43eebe9250abeeb81aab429053864da325 Mon Sep 17 00:00:00 2001
-From: Ruben Carlo Benante <rcb@beco.cc>
-Date: Thu, 28 Mar 2024 23:29:41 -0300
-Subject: [PATCH] always_print_primitive_fields only if GOOGLE_PROTOBUF_VERSION
- < 5026000 ref #566
-
----
- source/intercept/source/collect/db/EventsDatabaseWriter.cc | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/source/intercept/source/collect/db/EventsDatabaseWriter.cc b/source/intercept/source/collect/db/EventsDatabaseWriter.cc
-index 0403a1ae..bd30cb29 100644
---- a/source/intercept/source/collect/db/EventsDatabaseWriter.cc
-+++ b/source/intercept/source/collect/db/EventsDatabaseWriter.cc
-@@ -21,6 +21,8 @@
- #include "libsys/Errors.h"
-
- #include <google/protobuf/util/json_util.h>
-+#include <google/protobuf/stubs/common.h>
-+
- #include <fmt/format.h>
-
- #include <sys/types.h>
-@@ -36,7 +38,9 @@ namespace {
- JsonPrintOptions create_print_options() {
- JsonPrintOptions print_options;
- print_options.add_whitespace = false;
-- print_options.always_print_primitive_fields = true;
-+#if GOOGLE_PROTOBUF_VERSION < 5026000
-+ print_options.always_print_primitive_fields = true;
-+#endif
- print_options.preserve_proto_field_names = true;
- print_options.always_print_enums_as_ints = false;
- return print_options;