summaryrefslogtreecommitdiff
path: root/extra/rubberband
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-04-03 14:54:55 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-04-03 14:54:55 +0000
commitb618c3d0693aec564c6746238fd05d94e31d3b76 (patch)
tree4a4834f3097bba25dba1adeba4324080c1b4bf7b /extra/rubberband
parent8cb5196780766f47b595410eed8ddbee2e8add08 (diff)
Tue Apr 3 14:54:45 UTC 2012
Diffstat (limited to 'extra/rubberband')
-rw-r--r--extra/rubberband/gcc46.patch10
-rw-r--r--extra/rubberband/vectorops.patch13
2 files changed, 0 insertions, 23 deletions
diff --git a/extra/rubberband/gcc46.patch b/extra/rubberband/gcc46.patch
deleted file mode 100644
index 38ac76d42..000000000
--- a/extra/rubberband/gcc46.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- rubberband-1.6.0.orig/rubberband/RubberBandStretcher.h
-+++ rubberband-1.6.0/rubberband/RubberBandStretcher.h
-@@ -21,6 +21,7 @@
-
- #include <vector>
- #include <map>
-+#include <cstddef>
-
- /**
- * @mainpage RubberBand
diff --git a/extra/rubberband/vectorops.patch b/extra/rubberband/vectorops.patch
deleted file mode 100644
index cae961591..000000000
--- a/extra/rubberband/vectorops.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/src/system/VectorOps.h Mon Mar 21 21:51:33 2011 +0000
-+++ b/src/system/VectorOps.h Sun Oct 02 21:12:42 2011 +0100
-@@ -84,8 +84,8 @@
- }
-
- template<typename T>
--inline void v_move(T *const R__ dst,
-- const T *const R__ src,
-+inline void v_move(T *const dst,
-+ const T *const src,
- const int count)
- {
- memmove(dst, src, count * sizeof(T));