diff options
author | mezz <mezz@FreeBSD.org> | 2007-02-24 06:50:15 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2007-02-24 06:50:15 +0800 |
commit | aaebf793ba41e2f23d3a5c636b1381c7c39dd560 (patch) | |
tree | 6fe77d767321dd16674c5d48aff39972052af9dd /audio/speex/files | |
parent | daa08e05eb363e0f537e2f602c0b02eac63fbde4 (diff) | |
download | freebsd-ports-gnome-aaebf793ba41e2f23d3a5c636b1381c7c39dd560.tar.gz freebsd-ports-gnome-aaebf793ba41e2f23d3a5c636b1381c7c39dd560.tar.zst freebsd-ports-gnome-aaebf793ba41e2f23d3a5c636b1381c7c39dd560.zip |
audio/speex-devel -> audio/speex, remove audio/speex-devel.
Diffstat (limited to 'audio/speex/files')
-rw-r--r-- | audio/speex/files/patch-libspeex::stack_alloc.h | 14 | ||||
-rw-r--r-- | audio/speex/files/patch-src::speexdec.c | 17 |
2 files changed, 0 insertions, 31 deletions
diff --git a/audio/speex/files/patch-libspeex::stack_alloc.h b/audio/speex/files/patch-libspeex::stack_alloc.h deleted file mode 100644 index 25883aab513f..000000000000 --- a/audio/speex/files/patch-libspeex::stack_alloc.h +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- libspeex/stack_alloc.h.orig Wed Jun 11 17:10:53 2003 -+++ libspeex/stack_alloc.h Wed Jun 11 17:11:12 2003 -@@ -48,7 +48,7 @@ - #else - - /*Aligns the stack to a 'size' boundary */ --#define ALIGN(stack, size) ((stack) += ((size) - (int)(stack)) & ((size) - 1)) -+#define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) - - /* Allocates 'size' elements of type 'type' on the stack */ - #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)),(stack)+=((size)*sizeof(type)),(type*)((stack)-((size)*sizeof(type)))) diff --git a/audio/speex/files/patch-src::speexdec.c b/audio/speex/files/patch-src::speexdec.c deleted file mode 100644 index 96a7c2c22841..000000000000 --- a/audio/speex/files/patch-src::speexdec.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/speexdec.c.orig Sun Jun 1 14:58:51 2003 -+++ src/speexdec.c Wed Jun 11 02:07:49 2003 -@@ -72,6 +72,14 @@ - ((buf[base+1]<<8)&0xff00)| \ - (buf[base]&0xff)) - -+#if !defined(AFMT_S16_NE) -+#if defined(BYTE_ORDER) && (BYTE_ORDER == BIG_ENDIAN) -+#define AFMT_S16_NE AFMT_S16_BE -+#else -+#define AFMT_S16_NE AFMT_S16_LE -+#endif -+#endif -+ - static void print_comments(char *comments, int length) - { - char *c=comments; |