gnash-dev
[Top][All Lists]
Advanced

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

Re: [Gnash-dev] Re: pre-release snapshots for testing


From: Rob Savoye
Subject: Re: [Gnash-dev] Re: pre-release snapshots for testing
Date: Thu, 26 Feb 2009 16:36:01 -0700
User-agent: Thunderbird 2.0.0.19 (X11/20090105)

Marcin Cieslak wrote:

> .../gnash-trunk_20090225/libmedia/.libs/libgnashmedia.so: 
> undefined reference to `sws_getContext(int, int, int, int, int, int, 
>       int, SwsFilter*, SwsFilter*, double*)'
> undefined reference to `sws_freeContext(SwsContext*)'
> undefined reference to `sws_scale(SwsContext*, unsigned char**, int*, 
>       int, int, unsigned char**, int*)'

  This one is fixed in trunk and in the branch, but the fix is newer
than than the snapshots. I'll make new snapshots tonight.

> (2) Many systems don't have POLRDHUP for poll(2), it should probably 
> autodetected.
> The patch below let me compile cygnal.
>  
> --- cygnal/cygnal.cpp.orig    2009-02-26 22:19:54.613358641 +0100
> +++ cygnal/cygnal.cpp 2009-02-26 22:20:22.377814314 +0100
> @@ -578,7 +578,7 @@
>      
>       struct pollfd fds;
>       fds.fd = args->netfd;
> -     fds.events = POLLIN | POLLRDHUP;
> +     fds.events = POLLIN;

  Can you try with this simple patch please ?

#ifndef POLLRDHUP
#define POLLRDHUP 0
#endif

> Other than that, it looks fine as far as I can tell after 2-minute testing.

  Thanks for testing it, the FreeBSD machine I use for testing is
down... (obviously)

        - rob -




reply via email to

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