summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorryoon <ryoon>2013-02-15 14:34:32 +0000
committerryoon <ryoon>2013-02-15 14:34:32 +0000
commit2fe6ea94802ebf85e3304ea6d6f3e4756ae4cf32 (patch)
tree0b2638331664d5088e42665effa75c6d9ce532fb /audio
parentd99c93327b721e48838ae2780e017d07e86ffc9c (diff)
downloadpkgsrc-2fe6ea94802ebf85e3304ea6d6f3e4756ae4cf32.tar.gz
Remove obsolete patches.
Diffstat (limited to 'audio')
-rw-r--r--audio/jack/patches/patch-ac16
-rw-r--r--audio/jack/patches/patch-ai29
2 files changed, 0 insertions, 45 deletions
diff --git a/audio/jack/patches/patch-ac b/audio/jack/patches/patch-ac
deleted file mode 100644
index 3780464202f..00000000000
--- a/audio/jack/patches/patch-ac
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2008/11/16 11:22:55 bjs Exp $
-
---- libjack/simd.c.orig 2008-11-11 17:36:29.000000000 -0500
-+++ libjack/simd.c
-@@ -332,9 +332,9 @@ sse_nonalign:
- void x86_sse_f2i (int *dest, const float *src, int length, float scale)
- {
- int i;
-- float max[4] __attribute__((aligned(16))) =
-+ static const float max[4] __attribute__((aligned(16))) =
- { -1.0F, -1.0F, -1.0F, -1.0F };
-- float min[4] __attribute__((aligned(16))) =
-+ static const float min[4] __attribute__((aligned(16))) =
- { 1.0F, 1.0F, 1.0F, 1.0F };
- float s[4] __attribute__((aligned(16)));
-
diff --git a/audio/jack/patches/patch-ai b/audio/jack/patches/patch-ai
deleted file mode 100644
index 34364c1b017..00000000000
--- a/audio/jack/patches/patch-ai
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-ai,v 1.3 2008/11/16 11:55:19 bjs Exp $
-
---- libjack/client.c.orig 2008-11-11 17:36:29.000000000 -0500
-+++ libjack/client.c
-@@ -969,10 +969,7 @@ jack_client_open_aux (const char *client
- }
-
- /* parse variable arguments */
-- if (ap)
- jack_varargs_parse(options, ap, &va);
-- else
-- jack_varargs_init(&va);
-
- /* External clients need to know where the tmpdir used for
- communication with the server lives
-@@ -1114,10 +1111,12 @@ jack_client_t* jack_client_open(const ch
- jack_client_t *
- jack_client_new (const char *client_name)
- {
-+ va_list ap;
-+
- jack_options_t options = JackUseExactName;
- if (getenv("JACK_START_SERVER") == NULL)
- options |= JackNoStartServer;
-- return jack_client_open_aux (client_name, options, NULL, NULL);
-+ return jack_client_open_aux (client_name, options, NULL, ap);
- }
-
- char *