GNOME Bugzilla – Bug 604007
[gstpluginloader] fails to compile with mingw32
Last modified: 2009-12-07 21:18:57 UTC
If the problem is not known: First glib needs to be included before to check G_OS_WIN32: --- a/gst/gstpluginloader.c +++ b/gst/gstpluginloader.c @@ -24,6 +24,8 @@ # include "config.h" #endif +#include <glib.h> + #ifndef G_OS_WIN32 #include <sys/types.h> #include <sys/wait.h> Then there is no native fsync on win32.
Julien: I think you can just commit trivial stuff like this as longs as the module isn't frozen (as per IRC topic). There's also bug #597662 for the registry changes + win32.
ok. I'll try the patch.