* 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)
18 lines
452 B
Text
18 lines
452 B
Text
$NetBSD: patch-aa,v 1.4 2005/10/14 21:50:45 jmmv Exp $
|
|
|
|
Added some necessary header files.
|
|
|
|
--- drivers/festival/festivalsynthesisdriver.c.orig Tue Mar 8 14:10:23 2005
|
|
+++ drivers/festival/festivalsynthesisdriver.c Fri Mar 11 09:47:37 2005
|
|
@@ -25,8 +25,10 @@
|
|
*
|
|
*/
|
|
|
|
-#include <string.h>
|
|
#include <sys/types.h>
|
|
+#include <sys/socket.h>
|
|
+#include <netinet/in.h>
|
|
+#include <string.h>
|
|
#include <sys/wait.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|