summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Redaelli <drizzt@gentoo.org>2007-01-20 17:14:43 +0000
committerTimothy Redaelli <drizzt@gentoo.org>2007-01-20 17:14:43 +0000
commit971317253870635345b3b0e7b59d78041a779a28 (patch)
treeb28012f1c39332acb40e33550d633bcba60718b3 /media-sound/mumble/files
parenttypo fix: gspca->gspcav1 (diff)
downloadgentoo-2-971317253870635345b3b0e7b59d78041a779a28.tar.gz
gentoo-2-971317253870635345b3b0e7b59d78041a779a28.tar.bz2
gentoo-2-971317253870635345b3b0e7b59d78041a779a28.zip
Add Gorch patch for missing typedefs on gcc 3, wrt bug #162912.
(Portage version: 2.1.2)
Diffstat (limited to 'media-sound/mumble/files')
-rw-r--r--media-sound/mumble/files/mumble-0.9.4-missing_typedefs.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/media-sound/mumble/files/mumble-0.9.4-missing_typedefs.patch b/media-sound/mumble/files/mumble-0.9.4-missing_typedefs.patch
new file mode 100644
index 000000000000..9f8ef06ee5bb
--- /dev/null
+++ b/media-sound/mumble/files/mumble-0.9.4-missing_typedefs.patch
@@ -0,0 +1,14 @@
+diff -Naur mumble-0.9.4.orig/AudioStats.cpp mumble-0.9.4/AudioStats.cpp
+--- mumble-0.9.4.orig/AudioStats.cpp 2006-10-30 12:20:38.000000000 +0100
++++ mumble-0.9.4/AudioStats.cpp 2006-11-17 14:12:55.000000000 +0100
+@@ -38,7 +38,10 @@
+ typedef float spx_word16_t;
+ typedef float spx_word32_t;
+ typedef float spx_float_t;
++typedef long int spx_int32_t;
++typedef short int spx_int16_t;
+ typedef spx_word32_t spx_mem_t;
++
+ /** Speex echo cancellation state. */
+ struct CloneSpeexEchoState {
+ int frame_size; /**< Number of samples processed each time */