Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2020 17:19:58 +0000 (UTC)
From:      =?UTF-8?Q?Stefan_E=c3=9fer?= <se@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r550852 - in head/graphics/ida: . files
Message-ID:  <202010011719.091HJwQG056012@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: se
Date: Thu Oct  1 17:19:57 2020
New Revision: 550852
URL: https://svnweb.freebsd.org/changeset/ports/550852

Log:
  Fix build with -fno-common

Added:
  head/graphics/ida/files/patch-idaconfig.h   (contents, props changed)
  head/graphics/ida/files/patch-viewer.c   (contents, props changed)
Modified:
  head/graphics/ida/Makefile

Modified: head/graphics/ida/Makefile
==============================================================================
--- head/graphics/ida/Makefile	Thu Oct  1 16:53:42 2020	(r550851)
+++ head/graphics/ida/Makefile	Thu Oct  1 17:19:57 2020	(r550852)
@@ -3,6 +3,7 @@
 
 PORTNAME=	ida
 PORTVERSION=	2.14
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	https://www.kraxel.org/releases/fbida/
 DISTNAME=	fbida-${PORTVERSION}

Added: head/graphics/ida/files/patch-idaconfig.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ida/files/patch-idaconfig.h	Thu Oct  1 17:19:57 2020	(r550852)
@@ -0,0 +1,11 @@
+--- idaconfig.h.orig	2017-08-30 10:48:03 UTC
++++ idaconfig.h
+@@ -17,7 +17,7 @@
+ 
+ /* -------------------------------------------------------------------------- */
+ 
+-char *ida_lists;
++extern char *ida_lists;
+ 
+ void ida_init_config(void);
+ void ida_read_config(void);

Added: head/graphics/ida/files/patch-viewer.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ida/files/patch-viewer.c	Thu Oct  1 17:19:57 2020	(r550852)
@@ -0,0 +1,11 @@
+--- viewer.c.orig	2017-08-30 10:48:03 UTC
++++ viewer.c
+@@ -39,7 +39,7 @@
+ 
+ #define PROCESS_LINES    16
+ 
+-int debug;
++extern int debug;
+ Cursor ptrs[POINTER_COUNT];
+ 
+ /* ----------------------------------------------------------------------- */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010011719.091HJwQG056012>