At Fri, 10 Aug 2007 21:20:26 +0200,
I wrote:
> 
> At Fri, 10 Aug 2007 20:10:48 +0200,
> strk wrote:
> > 
> > On Fri, Aug 10, 2007 at 07:41:34PM +0200, Takashi Iwai wrote:
> > 
> > > IMO, basically it's ditributor's job to check whether the program
> > > works on their system.  You can pass the task simply by notifying the
> > > package maintainer of each distro (in the case of openSUSE, to me) to
> > > try the latest version before release.  Of course, it'd be nice if we
> > > get a tarball instead of CVS repo.
> > 
> > http://gnashdev.org/dev_snapshots/gnash-0.8.1-20070810.tgz
> 
> Ah, good to know.  Thanks.

FYI, it works fine.

BTW, one compile warning I got with 0.8.1-* looks like a real bug.
The fix is attached below.


Takashi

--- libbase/network.cpp-dist    2007-06-12 11:50:36.000000000 +0200
+++ libbase/network.cpp 2007-06-12 11:51:00.000000000 +0200
@@ -149,7 +149,7 @@
     }
 
     // set protocol type
-    if (DEFAULTPROTO == "udp") {
+    if (strcmp(DEFAULTPROTO, "udp") == 0) {
         type = SOCK_DGRAM;
     } else {
         type = SOCK_STREAM;


_______________________________________________
Gnash-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-dev

Reply via email to