Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2005-05-09 14:48:12 +0400
committerDiego Biurrun <diego@biurrun.de>2005-05-09 14:48:12 +0400
commit01cf54f041eaf72a0febc3ba97116d5bdacb1955 (patch)
tree61ac46bf2b0fa07fd17d5e292a90e2612a6eab2f /libavformat/tcp.c
parent97006039cc0bcadc845cd6f2aa2281f38aed1442 (diff)
Mac OS X 10.4 compilation fix by Steven M. Schultz <sms at 2BSD dot COM>
Originally committed as revision 4207 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/tcp.c')
-rw-r--r--libavformat/tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tcp.c b/libavformat/tcp.c
index 33702e0ec0..86a3cfb6c4 100644
--- a/libavformat/tcp.c
+++ b/libavformat/tcp.c
@@ -21,7 +21,7 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
-#if defined(__APPLE__) || defined(__BEOS__)
+#if defined(__BEOS__)
typedef int socklen_t;
#endif
#ifndef __BEOS__