diff options
author | Dan Winship <danw@gnome.org> | 2013-10-19 13:04:00 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-11-20 09:25:39 -0500 |
commit | 158dde050702f83a058962d14156a02234fc9685 (patch) | |
tree | 73f8f1cc846447ca50cd92b3d58144fff818febe /glib/gstdio.c | |
parent | 3981cddbf8659458be9f863151314cd0fd1682bf (diff) | |
download | glib-158dde050702f83a058962d14156a02234fc9685.tar.gz |
Replace #ifdef HAVE_UNISTD_H checks with #ifdef G_OS_UNIX
In Windows development environments that have it, <unistd.h> is mostly
just a wrapper around several other native headers (in particular,
<io.h>, which contains read(), close(), etc, and <process.h>, which
contains getpid()). But given that some Windows dev environments don't
have <unistd.h>, everything that uses those functions on Windows
already needed to include the correct Windows header as well, and so
there is never any point to including <unistd.h> on Windows.
Also, remove some <unistd.h> includes (and a few others) that were
unnecessary even on unix.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
Diffstat (limited to 'glib/gstdio.c')
-rw-r--r-- | glib/gstdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gstdio.c b/glib/gstdio.c index a78558fcc..dfb3feb1c 100644 --- a/glib/gstdio.c +++ b/glib/gstdio.c @@ -27,7 +27,7 @@ #include <sys/stat.h> #include <fcntl.h> -#ifdef HAVE_UNISTD_H +#ifdef G_OS_UNIX #include <unistd.h> #endif |