summaryrefslogtreecommitdiff
path: root/audio/speex/files/patch-libspeex::stack_alloc.h
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2007-02-23 22:50:15 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2007-02-23 22:50:15 +0000
commit0f28824a015ef202713615ac0e4f0947c451f48b (patch)
tree10b618140e90d587f70e95174b21199906dcd905 /audio/speex/files/patch-libspeex::stack_alloc.h
parentForce commit to add commit message because I used the wrong cvs flags. (diff)
audio/speex-devel -> audio/speex, remove audio/speex-devel.
Diffstat (limited to '')
-rw-r--r--audio/speex/files/patch-libspeex::stack_alloc.h14
1 files changed, 0 insertions, 14 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))))