mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
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:
parent
d102d88729
commit
5aed1d4777
2 changed files with 8 additions and 0 deletions
|
@ -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>
|
2008-04-25 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
|
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
|
||||||
|
|
|
@ -25,7 +25,9 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue