diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-09-24 22:11:53 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-09-24 22:11:53 +0000 |
commit | c75a0cce5bc3b53489979cb20af35c0e0b0db382 (patch) | |
tree | 9010e37289a2a356059529c91698f9b5f8571dc5 /libavformat/tcp.c | |
parent | 933bd8e291b5684bb0d37e0e48afe2275d2e8183 (diff) | |
download | ffmpeg-c75a0cce5bc3b53489979cb20af35c0e0b0db382.tar.gz |
include sys/select.h to get select, according to posix 2001,
fix compilation on freebsd 5.5
Originally committed as revision 15406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/tcp.c')
-rw-r--r-- | libavformat/tcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 1b13c5686e..4ab7086677 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -22,6 +22,7 @@ #include <unistd.h> #include "network.h" #include "os_support.h" +#include <sys/select.h> #include <sys/time.h> typedef struct TCPContext { |