<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From bda73451ca3ec28cbbde89aceefa803bc99635bb Mon Sep 17 00:00:00 2001
From: Florian Franzmann &lt;bwlf@bandrate.org&gt;
Date: Sun, 5 Jul 2020 15:37:19 +0200
Subject: [PATCH] fix linking errors

---
 src/bar_exif.c | 3 +++
 src/bar_exif.h | 4 ++--
 src/options.c  | 3 +++
 src/options.h  | 4 ++--
 4 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/bar_exif.c b/src/bar_exif.c
index cb6c5e9..9440edd 100644
--- a/src/bar_exif.c
+++ b/src/bar_exif.c
@@ -45,6 +45,9 @@
  *-------------------------------------------------------------------
  */
 
+const gchar **bar_exif_key_list;
+const gint bar_exif_key_count;
+
 typedef struct _ExifEntry ExifEntry;
 typedef struct _PaneExifData PaneExifData;
 
diff --git a/src/bar_exif.h b/src/bar_exif.h
index 63c30d4..99df9e1 100644
--- a/src/bar_exif.h
+++ b/src/bar_exif.h
@@ -29,8 +29,8 @@ void bar_pane_exif_entry_add_from_config(GtkWidget *pane, const gchar **attribut
 
 /* 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;
+extern const gchar **bar_exif_key_list;
+extern const gint bar_exif_key_count;
 GList *bar_pane_exif_list();
 
 #endif
diff --git a/src/options.c b/src/options.c
index dd83f29..c2826e8 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 65e8b74..51f42ab 100644
--- a/src/options.h
+++ b/src/options.h
@@ -321,8 +321,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);
-- 
2.27.0

</pre></body></html>