diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-02-15 14:34:32 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-02-15 14:34:32 +0000 |
commit | 68bf3e35022f1f94a0540da870de8d2c95d10785 (patch) | |
tree | 0b2638331664d5088e42665effa75c6d9ce532fb | |
parent | 0d34aa549da0cf3daf6b48b9ab4aae674d8fad5e (diff) | |
download | pkgsrc-68bf3e35022f1f94a0540da870de8d2c95d10785.tar.gz |
Remove obsolete patches.
-rw-r--r-- | audio/jack/patches/patch-ac | 16 | ||||
-rw-r--r-- | audio/jack/patches/patch-ai | 29 |
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 * |