geeqie/geeqie-gcc10-buildfix.patch
Bjørn Lie 830d31c080 Accepting request 811562 from home:iznogood:branches:GNOME:Apps
- Add geeqie-gcc10-buildfix.patch: Fix build with gcc 10.
- Drop no longer needed desktop_database_post(un) calls from
  post(un), and various other spec modernizations.

OBS-URL: https://build.opensuse.org/request/show/811562
OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/geeqie?expand=0&rev=31
2020-06-05 15:18:00 +00:00

57 lines
1.6 KiB
Diff

From 3ea5fa39d37e56443907255fbc81cb1b83dc9978 Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich <>
Date: Sun, 26 Jan 2020 11:05:18 +0000
Subject: [PATCH] Fix #746: src/options: fix build failure against gcc-10
https://github.com/BestImageViewer/geeqie/pull/746
---
src/bar_exif.h | 3 ---
src/options.c | 3 +++
src/options.h | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/bar_exif.h b/src/bar_exif.h
index 63c30d4b..1395e842 100644
--- a/src/bar_exif.h
+++ b/src/bar_exif.h
@@ -28,9 +28,6 @@ void bar_pane_exif_update_from_config(GtkWidget *pane, const gchar **attribute_n
void bar_pane_exif_entry_add_from_config(GtkWidget *pane, const gchar **attribute_names, const gchar **attribute_values);
/* these are exposed for when duplication of the exif bar's text is needed */
-
-const gchar **bar_exif_key_list;
-const gint bar_exif_key_count;
GList *bar_pane_exif_list();
#endif
diff --git a/src/options.c b/src/options.c
index 99459381..bab26acb 100644
--- a/src/options.c
+++ b/src/options.c
@@ -32,6 +32,9 @@
#include "ui_fileops.h"
#include "window.h"
+ConfOptions *options;
+CommandLine *command_line;
+
ConfOptions *init_options(ConfOptions *options)
{
gint i;
diff --git a/src/options.h b/src/options.h
index fcfe961a..02ff8fac 100644
--- a/src/options.h
+++ b/src/options.h
@@ -329,8 +329,8 @@ struct _ConfOptions
GList *disabled_plugins;
};
-ConfOptions *options;
-CommandLine *command_line;
+extern ConfOptions *options;
+extern CommandLine *command_line;
ConfOptions *init_options(ConfOptions *options);
void setup_default_options(ConfOptions *options);