tools/gst-run.c: Include <unistd.h> conditionally on HAVE_UNISTD_H as elsewhere.

Original commit message from CVS:
Patch by Edward Hervey <edward.hervey@collabora.co.uk>
* tools/gst-run.c:
Include <unistd.h> conditionally on HAVE_UNISTD_H as elsewhere.
This commit is contained in:
Edward Hervey 2008-04-26 00:13:03 +00:00 committed by Michael Smith
parent d102d88729
commit 5aed1d4777
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2008-04-25 Michael Smith <msmith@songbirdnest.com>
Patch by Edward Hervey <edward.hervey@collabora.co.uk>
* tools/gst-run.c:
Include <unistd.h> conditionally on HAVE_UNISTD_H as elsewhere.
2008-04-25 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),

View file

@ -25,7 +25,9 @@
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <errno.h>
#include <glib.h>