summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-05-07 19:57:28 +0200
committerCraig Andrews <candrews@gentoo.org>2024-05-07 14:35:25 -0400
commita26c6fcd09c8fe756d291bbc38de04f5b6126f3d (patch)
tree0204c4edca6d47f9e4965cc641719e1baaddf3cf /net-analyzer/netdata
parentx11-libs/gtk+: Keyword 3.24.41 s390, #931281 (diff)
downloadgentoo-a26c6fcd09c8fe756d291bbc38de04f5b6126f3d.tar.gz
gentoo-a26c6fcd09c8fe756d291bbc38de04f5b6126f3d.tar.bz2
gentoo-a26c6fcd09c8fe756d291bbc38de04f5b6126f3d.zip
net-analyzer/netdata: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/36596 Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'net-analyzer/netdata')
-rw-r--r--net-analyzer/netdata/files/netdata-1.44.0-dbengine.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/net-analyzer/netdata/files/netdata-1.44.0-dbengine.patch b/net-analyzer/netdata/files/netdata-1.44.0-dbengine.patch
deleted file mode 100644
index 3119094f64bc..000000000000
--- a/net-analyzer/netdata/files/netdata-1.44.0-dbengine.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From ee6c0bcb7f0bfe6440dd7c4c52dca87486abc181 Mon Sep 17 00:00:00 2001
-From: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com>
-Date: Wed, 20 Dec 2023 21:54:17 +0200
-Subject: [PATCH] Fix compilation error when using --disable-dbengine
-
----
- daemon/global_statistics.c | 2 ++
- daemon/main.c | 2 +-
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/daemon/global_statistics.c b/daemon/global_statistics.c
-index 8392a3c88e08d..6e286b18a7220 100644
---- a/daemon/global_statistics.c
-+++ b/daemon/global_statistics.c
-@@ -857,6 +857,7 @@ static void global_statistics_charts(void) {
-
- // ----------------------------------------------------------------
-
-+#ifdef ENABLE_DBENGINE
- if (tier_page_type[0] == PAGE_GORILLA_METRICS)
- {
- static RRDSET *st_tier0_gorilla_pages = NULL;
-@@ -918,6 +919,7 @@ static void global_statistics_charts(void) {
-
- rrdset_done(st_tier0_compression_info);
- }
-+#endif
- }
-
- // ----------------------------------------------------------------------------
-diff --git a/daemon/main.c b/daemon/main.c
-index fc15f0c9dfc52..7c7452c4aa055 100644
---- a/daemon/main.c
-+++ b/daemon/main.c
-@@ -1502,11 +1502,11 @@ int main(int argc, char **argv) {
- #ifdef ENABLE_DBENGINE
- char* createdataset_string = "createdataset=";
- char* stresstest_string = "stresstest=";
--#endif
-
- if(strcmp(optarg, "pgd-tests") == 0) {
- return pgd_test(argc, argv);
- }
-+#endif
-
- if(strcmp(optarg, "sqlite-meta-recover") == 0) {
- sql_init_database(DB_CHECK_RECOVER, 0);