gnash-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gnash-dev] Ready for 0.8.1 ?


From: Takashi Iwai
Subject: Re: [Gnash-dev] Ready for 0.8.1 ?
Date: Mon, 13 Aug 2007 17:21:58 +0200
User-agent: Wanderlust/2.15.5 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (Sanjō) APEL/10.6 MULE XEmacs/21.5 (beta27) (fiddleheads) (+CVS-20060704) (i386-suse-linux)

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;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]