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:
Ronald S. Bultje 2005-03-10 17:22:14 +00:00
parent 6da18bd898
commit 09226e160e
3 changed files with 15 additions and 0 deletions

View file

@ -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.

View file

@ -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>

View file

@ -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>