[FFmpeg-cvslog] r15405 - trunk/libavformat/rtsp.c
bcoudurier
subversion
Thu Sep 25 00:08:50 CEST 2008
Author: bcoudurier
Date: Thu Sep 25 00:08:50 2008
New Revision: 15405
Log:
include sys/select.h instead of unistd.h to get select,
according to posix 2001, fix compilation on freebsd 5.5
Modified:
trunk/libavformat/rtsp.c
Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c (original)
+++ trunk/libavformat/rtsp.c Thu Sep 25 00:08:50 2008
@@ -26,7 +26,7 @@
#include "avformat.h"
#include <sys/time.h>
-#include <unistd.h> /* for select() prototype */
+#include <sys/select.h>
#include <strings.h>
#include "network.h"
#include "rtsp.h"
More information about the ffmpeg-cvslog
mailing list