Browse Source

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
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
933bd8e291
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtsp.c

+ 1
- 1
libavformat/rtsp.c View File

@@ -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"


Loading…
Cancel
Save