Commit 438fcb75 authored by François Revol's avatar François Revol

OSX and BeOS networking fix (socklen_t)

Originally committed as revision 2077 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent be3564ed
...@@ -16,6 +16,8 @@ struct ip_mreq { ...@@ -16,6 +16,8 @@ struct ip_mreq {
struct in_addr imr_interface; /* local IP address of interface */ struct in_addr imr_interface; /* local IP address of interface */
}; };
#include <netdb.h>
#else #else
# include <arpa/inet.h> # include <arpa/inet.h>
#endif #endif
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
*/ */
#include "avformat.h" #include "avformat.h"
#include <unistd.h> /* for select() prototype */
#include <sys/time.h> #include <sys/time.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <sys/socket.h> #include <sys/socket.h>
......
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
#if defined(__APPLE__) || defined(__BEOS__)
typedef int socklen_t;
#endif
#ifndef __BEOS__ #ifndef __BEOS__
# include <arpa/inet.h> # include <arpa/inet.h>
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment