svn commit: r546233 - head/graphics/geeqie/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Aug 25 21:28:40 UTC 2020


Author: amdmi3
Date: Tue Aug 25 21:28:39 2020
New Revision: 546233
URL: https://svnweb.freebsd.org/changeset/ports/546233

Log:
  Fix duplicate symbols
  
  This should fix the build on latest CURRENT and is mostly equal to upstream commit 3ea5fa3
  
  Reported by:	soralx at cydem dot org

Added:
  head/graphics/geeqie/files/patch-options.c   (contents, props changed)
  head/graphics/geeqie/files/patch-options.h   (contents, props changed)

Added: head/graphics/geeqie/files/patch-options.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/geeqie/files/patch-options.c	Tue Aug 25 21:28:39 2020	(r546233)
@@ -0,0 +1,12 @@
+--- src/options.c.orig	2019-08-20 19:01:23 UTC
++++ 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;

Added: head/graphics/geeqie/files/patch-options.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/geeqie/files/patch-options.h	Tue Aug 25 21:28:39 2020	(r546233)
@@ -0,0 +1,13 @@
+--- src/options.h.orig	2019-08-20 19:01:23 UTC
++++ 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);


More information about the svn-ports-head mailing list