summaryrefslogtreecommitdiff
path: root/audio/speex-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'audio/speex-devel/files')
-rw-r--r--audio/speex-devel/files/patch-configure10
-rw-r--r--audio/speex-devel/files/patch-libspeex::stack_alloc.h14
2 files changed, 0 insertions, 24 deletions
diff --git a/audio/speex-devel/files/patch-configure b/audio/speex-devel/files/patch-configure
deleted file mode 100644
index 868364574624..000000000000
--- a/audio/speex-devel/files/patch-configure
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure.orig Mon Jul 29 11:40:32 2002
-+++ configure Wed Jul 31 03:49:39 2002
-@@ -5287,6 +5287,7 @@
-
- # This can be used to rebuild libtool when needed
- LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
-+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
-
- # Always use our own libtool.
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff --git a/audio/speex-devel/files/patch-libspeex::stack_alloc.h b/audio/speex-devel/files/patch-libspeex::stack_alloc.h
deleted file mode 100644
index 25883aab513f..000000000000
--- a/audio/speex-devel/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))))