rpms/festival/devel festival-1.95-fix-localhost-connections.patch, NONE, 1.1 festival.spec, 1.14, 1.15

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Jan 23 01:09:37 UTC 2006


Author: rstrode

Update of /cvs/dist/rpms/festival/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv32360

Modified Files:
	festival.spec 
Added Files:
	festival-1.95-fix-localhost-connections.patch 
Log Message:
- get gnopernicus again. Patch from 
  Fernando Herrera <fherrera at gmail.com> (bug 178312)


festival-1.95-fix-localhost-connections.patch:
 server.cc |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE festival-1.95-fix-localhost-connections.patch ---
--- festival-1.95/src/arch/festival/server.cc.orig	2003-01-20 13:07:58.000000000 +0100
+++ festival-1.95/src/arch/festival/server.cc	2005-08-02 04:03:35.000000000 +0200
@@ -213,7 +213,7 @@
     clienthost = gethostbyaddr((char *)&peer.sin_addr,
 			       sizeof(peer.sin_addr),AF_INET);
     client_hostnum = inet_ntoa(peer.sin_addr);
-    if (streq(client_hostnum,"0.0.0.0"))               // its me !
+    if (streq(client_hostnum,"0.0.0.0") || streq(client_hostnum,"127.0.0.1")) // its me !
 	client_hostname = "localhost";
     else if (clienthost == 0)	                       // failed to get a name
 	client_hostname = client_hostnum;


Index: festival.spec
===================================================================
RCS file: /cvs/dist/rpms/festival/devel/festival.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- festival.spec	9 Dec 2005 22:40:23 -0000	1.14
+++ festival.spec	23 Jan 2006 01:09:35 -0000	1.15
@@ -1,7 +1,7 @@
 Name: festival
 Summary: A free speech synthesizer
 Version: 1.95
-Release: 4.1
+Release: 5
 
 # we ship the 1.4.2 docs for now.
 %define docversion 1.4.2
@@ -66,6 +66,9 @@
 Patch4: speech_tools-1.2.95-gcc4.patch
 Patch5: festival-1.95-gcc4.patch
 
+# Get gnopernicus working again: bug 178312
+Patch6: festival-1.95-fix-localhost-connections.patch
+
 # mattdm: this is a hack to make the shared libraries build with actual
 # sonames. I'm not sure I'm doing the right thing here, but this *does*
 # make it work. Someone should double check me.
@@ -117,6 +120,7 @@
 %patch3 -p1
 %patch4 -p0
 %patch5 -p1
+%patch6 -p1 -b .fix-localhost-connections
 %patch30 -p1 -b .soname
 
 # zero length
@@ -287,6 +291,10 @@
 %{_includedir}/festival/*
 
 %changelog
+* Sun Jan 22 2006 Ray Strode <rstrode at redhat.com> - 1.95-5
+- get gnopernicus again. Patch from 
+  Fernando Herrera <fherrera at gmail.com> (bug 178312)
+
 * Fri Dec 09 2005 Jesse Keating <jkeating at redhat.com>
 - rebuilt
 




More information about the fedora-cvs-commits mailing list