mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
gst/elements/gstfdsrc.c: Fix cygwin compile error (#169732).
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * gst/elements/gstfdsrc.c: Fix cygwin compile error (#169732).
This commit is contained in:
parent
6da18bd898
commit
09226e160e
3 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-03-10 Jean de Largentaye <jlargentaye@gmail.com>
|
||||
|
||||
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/elements/gstfdsrc.c:
|
||||
Fix cygwin compile error (#169732).
|
||||
|
||||
2005-03-10 Jan Schmidt,,, <thaytan@mad.scientist.com>
|
||||
* gst/registries/gstlibxmlregistry.c: (load_plugin), (load_paths):
|
||||
g_free allocated GstPlugins, since they're not GstObjects.
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
#endif
|
||||
#include "gst/gst_private.h"
|
||||
|
||||
#ifndef HAVE_WIN32
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
#endif
|
||||
#include "gst/gst_private.h"
|
||||
|
||||
#ifndef HAVE_WIN32
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
|
|
Loading…
Reference in a new issue