view src/mingw-glib-2-fixes.patch @ 4303:eac52a8a7822

Disable more doc files * Makefile.in: add pkghtml_DATA to MXE_DISABLE_DOCS * src/lame.mk: add MXE_DISABLE_DOCS to install * src/libidn.mk: add MXE_DISABLE_DOCS to install * src/libffi.mk: remove man, info files from install * src/libiconv.mk: remove man, info files from install * src/librsb.mk: html doc files from install
author John D
date Fri, 30 Dec 2016 22:26:22 -0500
parents 96e96221fe09
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,