mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-21 06:38:19 +00:00
gst/gstregistrybinary.c: Include io.h for write() and close() when building with MSVC. Fixes bug #520877.
Original commit message from CVS: Patch by: Ole André Vadla Ravnås <ole dot andre dot ravnas at tandberg dot com> * gst/gstregistrybinary.c: Include io.h for write() and close() when building with MSVC. Fixes bug #520877.
This commit is contained in:
parent
3c9dda6df9
commit
7185de8a67
2 changed files with 14 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2008-03-07 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
Patch by: Ole André Vadla Ravnås
|
||||
<ole dot andre dot ravnas at tandberg dot com>
|
||||
|
||||
* gst/gstregistrybinary.c:
|
||||
Include io.h for write() and close() when building with MSVC. Fixes
|
||||
bug #520877.
|
||||
|
||||
2008-03-07 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* gstregistrybinary.c: GstRegistryBinary object, support routines
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it ulnder the terms of the GNU Library General Public
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
|
@ -51,6 +51,10 @@
|
|||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#if defined (_MSC_VER) && _MSC_VER >= 1400
|
||||
#include <io.h>
|
||||
#endif
|
||||
|
||||
#include <gst/gst_private.h>
|
||||
#include <gst/gstconfig.h>
|
||||
#include <gst/gstelement.h>
|
||||
|
|
Loading…
Reference in a new issue