view src/mingw-glib-2-fixes.patch @ 3183:96e96221fe09

Update glib mingw native and cross compile * src/mingw-glib-2-fixes.patch: New file for MemoryBarrier call. * src/mingw-glib-1-fixes.patch: update to use latest mxe devel branch glib patch. * src/glib.mk: run autogen.sh on native build, build just cross version of everything if cross mingw.
author John Donoghue <john.donoghue@ieee.org>
date Mon, 29 Jul 2013 13:54:19 -0400
parents
children
line wrap: on
line source

--- a/glib/gatomic.c.orig	2013-07-29 12:05:27 -0400
+++ a/glib/gatomic.c	2013-07-29 12:07:46 -0400
@@ -475,6 +475,14 @@
 
 #if !defined (_MSC_VER) || _MSC_VER <= 1200
 #include "gmessages.h"
+
+#ifndef MemoryBarrier
+static inline void MemoryBarrier (void) {
+  long dummy = 0;
+  InterlockedExchange (&dummy, 1);
+}
+#endif
+
 /* Inlined versions for older compiler */
 static LONG
 _gInterlockedAnd (volatile guint *atomic,