fix slave mode on MACOSX: reported by devros <devros at seznam.cz>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9908 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-04-11 16:33:29 +00:00
parent 9c94ac4ec5
commit 57cf0621d2
1 changed files with 4 additions and 2 deletions

6
configure vendored
View File

@ -2297,9 +2297,11 @@ echores "$_vsscanf"
echocheck "posix select()"
cat > $TMPC << EOF
#include <sys/select.h>
#include <sys/time.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>
int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
EOF