From 438fcb754f47ee30036e7f7819341de7fb7c5d54 Mon Sep 17 00:00:00 2001 From: François Revol Date: Thu, 24 Jul 2003 13:30:27 +0000 Subject: OSX and BeOS networking fix (socklen_t) Originally committed as revision 2077 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/barpainet.h | 2 ++ libavformat/rtsp.c | 1 + libavformat/tcp.c | 3 +++ 3 files changed, 6 insertions(+) diff --git a/libavformat/barpainet.h b/libavformat/barpainet.h index 461403b3fa..665fe2ab14 100644 --- a/libavformat/barpainet.h +++ b/libavformat/barpainet.h @@ -16,6 +16,8 @@ struct ip_mreq { struct in_addr imr_interface; /* local IP address of interface */ }; +#include + #else # include #endif diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 98225cdccd..5b2a207195 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -18,6 +18,7 @@ */ #include "avformat.h" +#include /* for select() prototype */ #include #include #include diff --git a/libavformat/tcp.c b/libavformat/tcp.c index d4b81c88e9..ee61afafe9 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -22,6 +22,9 @@ #include #include #include +#if defined(__APPLE__) || defined(__BEOS__) +typedef int socklen_t; +#endif #ifndef __BEOS__ # include #else -- cgit v1.2.3