summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-09-26 02:13:38 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-09-26 02:13:38 +0000
commitfb1d2d7be2803ccb1a92a86bbe61a2fba4b9a693 (patch)
tree5f349808f817ac0d0733a09405a2206229996629 /ffmpeg.c
parent6ad1c9c992251018130e47618cd4990e4415546c (diff)
include sys/select.h, fix freebsd 5.5 compilation
Originally committed as revision 15421 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index d9027aeaff..c7ea0f0746 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -48,6 +48,10 @@
#include <windows.h>
#endif
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
#if defined(HAVE_TERMIOS_H)
#include <fcntl.h>
#include <sys/ioctl.h>