summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-07-01 07:50:31 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-07-01 07:50:31 +0000
commit9f20b67ed98a74426e591824dbc2156fb5342342 (patch)
treec102a4d00fac5b9b5c5022751842c4e6e330f78f /media-sound/spiralmodular/files
parentVersion bump; add patch to disable strict aliasing for the low-level drivers. (diff)
downloadgentoo-2-9f20b67ed98a74426e591824dbc2156fb5342342.tar.gz
gentoo-2-9f20b67ed98a74426e591824dbc2156fb5342342.tar.bz2
gentoo-2-9f20b67ed98a74426e591824dbc2156fb5342342.zip
media-sound/spiralmodular removal per bug #351697
Diffstat (limited to 'media-sound/spiralmodular/files')
-rw-r--r--media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc41.patch39
-rw-r--r--media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc43.patch46
2 files changed, 0 insertions, 85 deletions
diff --git a/media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc41.patch b/media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc41.patch
deleted file mode 100644
index ce0ad91a4cc6..000000000000
--- a/media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc41.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -Naur spiralmodular-0.2.2.old/SpiralSound/Sample.h spiralmodular-0.2.2/SpiralSound/Sample.h
---- spiralmodular-0.2.2.old/SpiralSound/Sample.h 2006-04-02 04:42:11.000000000 -0400
-+++ spiralmodular-0.2.2/SpiralSound/Sample.h 2006-04-02 04:43:11.000000000 -0400
-@@ -68,7 +68,7 @@
- void CropTo(int NewLength);
- bool IsEmpty() const { return m_IsEmpty; }
-
-- inline float &Sample::operator[](int i) const
-+ inline float &operator[](int i) const
- {
- #ifdef DEBUG
- assert(i>=0 && i<m_Length);
-@@ -77,7 +77,7 @@
- }
-
- // Linear interpolated
-- inline float Sample::operator[](float i) const
-+ inline float operator[](float i) const
- {
- int ii=(int)i;
-
-@@ -91,7 +91,7 @@
- }
-
-
-- inline void Sample::Set(int i, float v)
-+ inline void Set(int i, float v)
- {
- m_IsEmpty=false;
- #ifdef DEBUG
-@@ -100,7 +100,7 @@
- m_Data[i]=v;
- }
-
-- inline Sample &Sample::operator=(const Sample &rhs)
-+ inline Sample &operator=(const Sample &rhs)
- {
- Allocate(rhs.GetLength());
- memcpy(m_Data,rhs.GetBuffer(),GetLengthInBytes());
diff --git a/media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc43.patch b/media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc43.patch
deleted file mode 100644
index 3241ed02492f..000000000000
--- a/media-sound/spiralmodular/files/spiralmodular-0.2.2a-gcc43.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -NrU5 spiralmodular-0.2.2.orig/main.cpp spiralmodular-0.2.2/main.cpp
---- spiralmodular-0.2.2.orig/main.cpp 2003-08-16 08:16:03.000000000 +0200
-+++ spiralmodular-0.2.2/main.cpp 2008-04-28 00:37:48.000000000 +0200
-@@ -20,10 +20,11 @@
- #include <config.h>
- #endif
-
- #include <iostream>
- #include <cstdlib>
-+#include <cstring>
- #include <FL/Fl.H>
- #include <FL/Fl_Tooltip.h>
- #include <unistd.h>
- #include <sys/time.h>
- #include <sys/resource.h>
-diff -NrU5 spiralmodular-0.2.2.orig/SpiralSound/ChannelHandler.C spiralmodular-0.2.2/SpiralSound/ChannelHandler.C
---- spiralmodular-0.2.2.orig/SpiralSound/ChannelHandler.C 2003-02-21 01:51:15.000000000 +0100
-+++ spiralmodular-0.2.2/SpiralSound/ChannelHandler.C 2008-04-28 00:49:15.000000000 +0200
-@@ -16,10 +16,12 @@
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
- #include "ChannelHandler.h"
- #include <unistd.h>
-+#include <cstring>
-+#include <cstdlib>
-
- using namespace std;
-
- //#define CHANNEL_DEBUG
-
-diff -NrU5 spiralmodular-0.2.2.orig/SpiralSound/Sample.h spiralmodular-0.2.2/SpiralSound/Sample.h
---- spiralmodular-0.2.2.orig/SpiralSound/Sample.h 2003-07-23 00:08:41.000000000 +0200
-+++ spiralmodular-0.2.2/SpiralSound/Sample.h 2008-04-28 00:47:01.000000000 +0200
-@@ -22,10 +22,11 @@
- #define PLUGINGUI_IN_MODULE_TEST
-
- #include <assert.h>
- #include <limits.h>
- #include <iostream>
-+#include <cstring>
-
- //#define DEBUG
-
- inline float Linear(float bot,float top,float pos,float val1,float val2)
- {