Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Aug 2020 22:31:12 +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: r545789 - head/audio/nas/files
Message-ID:  <202008222231.07MMVCh7092754@repo.freebsd.org>

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

Log:
  audio/nas: fix build with -fno-common
  
  Pull in a patch from upstream to fix the build of audio/nas with
  -fno-common, which is the default with llvm 11.
  
  MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)

Added:
  head/audio/nas/files/patch-server_dia_main.c   (contents, props changed)

Added: head/audio/nas/files/patch-server_dia_main.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/nas/files/patch-server_dia_main.c	Sat Aug 22 22:31:11 2020	(r545789)
@@ -0,0 +1,11 @@
+--- server/dia/main.c.orig	2020-08-22 22:22:28 UTC
++++ server/dia/main.c
+@@ -76,7 +76,7 @@ static char *AuServerName(void);
+ extern char *display;
+ 
+ static int restart = 0;
+-FILE *yyin;                     /* for the config parser */
++extern FILE *yyin;                     /* for the config parser */
+ 
+ void
+ NotImplemented()



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