Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Sep 2020 16:44:43 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r549119 - branches/2020Q3/audio/stegosaurus-lv2/files
Message-ID:  <202009201644.08KGihOc020000@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Sep 20 16:44:43 2020
New Revision: 549119
URL: https://svnweb.freebsd.org/changeset/ports/549119

Log:
  MFH: r549049
  
  audio/stegosaurus-lv2: Fix build on 13-CURRENT with clang-11
  
  Symbol was defined in the header and included mutiple times.
  
  Reported by:	fallout
  
  Approved by:	ports-secteam (fluffy)

Added:
  branches/2020Q3/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.c
     - copied unchanged from r549049, head/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.c
  branches/2020Q3/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.h
     - copied unchanged from r549049, head/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.h
Modified:
Directory Properties:
  branches/2020Q3/   (props changed)

Copied: branches/2020Q3/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.c (from r549049, head/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.c)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2020Q3/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.c	Sun Sep 20 16:44:43 2020	(r549119, copy of r549049, head/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.c)
@@ -0,0 +1,11 @@
+--- stegosaurus_synth.c.orig	2020-09-19 18:50:38 UTC
++++ stegosaurus_synth.c
+@@ -2,6 +2,8 @@
+ #include "stegosaurus_synth.h"
+ #include "noise.h"
+ 
++stegosaurus* stegosaurus_self = 0;
++
+ voice* voices[4];
+ int next_voice = 0;
+ int keys[128];

Copied: branches/2020Q3/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.h (from r549049, head/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2020Q3/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.h	Sun Sep 20 16:44:43 2020	(r549119, copy of r549049, head/audio/stegosaurus-lv2/files/patch-stegosaurus__synth.h)
@@ -0,0 +1,11 @@
+--- stegosaurus_synth.h.orig	2020-09-19 18:50:03 UTC
++++ stegosaurus_synth.h
+@@ -26,7 +26,7 @@ void stegosaurus_synth_set_osc_waves(int, int, int);
+ #define ENV_STATE_KILL 7
+ 
+ 
+-stegosaurus* stegosaurus_self;
++extern stegosaurus* stegosaurus_self;
+ 
+ 
+ 	typedef struct



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