summaryrefslogtreecommitdiff
path: root/audio/gnome-speech/patches
diff options
context:
space:
mode:
authorjmmv <jmmv>2005-10-14 21:50:44 +0000
committerjmmv <jmmv>2005-10-14 21:50:44 +0000
commitd059f63044047a254f1444f66b2330d5b0b1176b (patch)
tree999696c4f46e2bc522941885062ec4bc52df11af /audio/gnome-speech/patches
parent677cbc8e2dee3fca1cf6265036f7a4a704448bbc (diff)
downloadpkgsrc-d059f63044047a254f1444f66b2330d5b0b1176b.tar.gz
Update to 0.3.8:
* Fix for bug 305489: Festival driver in gnome-speech-0.3.7 seg faults (Willie Walker) * Fix for bug 308468: #include <sys/socket.h>, and do not declare variable after statement (Behdad Esfahbod) * FreeTTS driver now says "FreeTTS synthesis driver running..." instead of saying it is *not* running (Willie Walker)
Diffstat (limited to 'audio/gnome-speech/patches')
-rw-r--r--audio/gnome-speech/patches/patch-aa16
1 files changed, 1 insertions, 15 deletions
diff --git a/audio/gnome-speech/patches/patch-aa b/audio/gnome-speech/patches/patch-aa
index cc9fbda8627..a5e963518cf 100644
--- a/audio/gnome-speech/patches/patch-aa
+++ b/audio/gnome-speech/patches/patch-aa
@@ -1,9 +1,6 @@
-$NetBSD: patch-aa,v 1.3 2005/10/10 13:49:41 joerg Exp $
+$NetBSD: patch-aa,v 1.4 2005/10/14 21:50:45 jmmv Exp $
Added some necessary header files.
-Don't put statements above declarations (gcc-2.95 is not a C99 compiler).
-
-Needed for NetBSD-1.6.2.
--- drivers/festival/festivalsynthesisdriver.c.orig Tue Mar 8 14:10:23 2005
+++ drivers/festival/festivalsynthesisdriver.c Fri Mar 11 09:47:37 2005
@@ -19,14 +16,3 @@ Needed for NetBSD-1.6.2.
#include <sys/wait.h>
#include <signal.h>
#include <unistd.h>
-@@ -591,9 +593,9 @@ get_voice_list (void)
- static void
- voice_list_free (GSList *l)
- {
-- g_assert (l);
- GSList *tmp = l;
-
-+ g_assert (l);
- while (tmp)
- {
- CORBA_free (tmp->data);