From 933bd8e291b5684bb0d37e0e48afe2275d2e8183 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 24 Sep 2008 22:08:50 +0000 Subject: [PATCH] include sys/select.h instead of unistd.h to get select, according to posix 2001, fix compilation on freebsd 5.5 Originally committed as revision 15405 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index dad62d0b2e..d3f1f1c1a4 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -26,7 +26,7 @@ #include "avformat.h" #include -#include /* for select() prototype */ +#include #include #include "network.h" #include "rtsp.h"