[MPlayer-dev-eng] [PATCH] OS/2 - stream

Diego Biurrun diego at biurrun.de
Mon Aug 20 10:49:15 CEST 2007


On Sat, Aug 18, 2007 at 05:55:15PM +0900, KO Myung-Hun wrote:
> 
> This is a patch of 'stream' for OS/2.
> 
> --- stream/udp.c    (revision 24089)
> +++ stream/udp.c    (working copy)
> @@ -43,6 +43,10 @@
>  
> +#ifndef HAVE_SOCKLEN_T
> +typedef int socklen_t;
> +#endif
>  
> --- stream/tcp.c    (revision 24089)
> +++ stream/tcp.c    (working copy)
> @@ -34,6 +34,10 @@
>  
> +#ifndef HAVE_SOCKLEN_T
> +typedef int socklen_t;
> +#endif
>  
> --- stream/librtsp/rtsp_rtp.c   (revision 24089)
> +++ stream/librtsp/rtsp_rtp.c   (working copy)
> @@ -45,6 +45,10 @@
>  
> +#ifndef HAVE_SOCKLEN_T
> +typedef int socklen_t;
> +#endif

I'm sure there is a way to have this in just one common place.

Diego



More information about the MPlayer-dev-eng mailing list