svn commit: r545768 - head/irc/scrollz/files

Niclas Zeising zeising at FreeBSD.org
Sat Aug 22 14:17:09 UTC 2020


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 */
+ /****************************************************************************/
+ 


More information about the svn-ports-head mailing list