gst/tcp/gstfdset.c: Fix compile problem on OS/X.

Original commit message from CVS:
* gst/tcp/gstfdset.c: Fix compile problem on OS/X.
This commit is contained in:
David Schleef 2004-08-11 22:58:07 +00:00
parent f50999ca83
commit b9a69ae7f7
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-08-11 David Schleef <ds@schleef.org>
* gst/tcp/gstfdset.c: Fix compile problem on OS/X.
2004-08-11 David Schleef <ds@schleef.org>
* gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct

View file

@ -24,6 +24,11 @@
#define INIT_POLLFDS MIN_POLLFDS
#include <sys/poll.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
/* OS/X needs this because of bad headers */
#include <string.h>
#include "gstfdset.h"