Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Aug 2020 14:17:09 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545768 - head/irc/scrollz/files
Message-ID:  <202008221417.07MEH9ne087714@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Sat Aug 22 14:17:09 2020
New Revision: 545768
URL: https://svnweb.freebsd.org/changeset/ports/545768

Log:
  irc/scrollz: Fix build with -fno-common
  
  Fix the build of irc/scrolls with built with -fno-common, which is the
  default with llvm 11.
  Patch from a pull request to scrollz on github.
  
  MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)

Added:
  head/irc/scrollz/files/patch-a8b05aab   (contents, props changed)

Added: head/irc/scrollz/files/patch-a8b05aab
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/scrollz/files/patch-a8b05aab	Sat Aug 22 14:17:09 2020	(r545768)
@@ -0,0 +1,16 @@
+diff --git a/include/ircterm.h b/include/ircterm.h
+index 1fdbfeb..1da3fab 100644
+--- include/ircterm.h
++++ include/ircterm.h
+@@ -89,9 +89,9 @@ extern	char	*CM,
+ extern	int	SG;
+ /**************************** PATCHED by Flier ******************************/
+ #ifdef WANTANSI
+-char            *SETAF,
++extern char     *SETAF,
+                 *SETAB;
+-int             NUMCOLORS;
++extern int      NUMCOLORS;
+ #endif /* WANTANSI */
+ /****************************************************************************/
+ 



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