mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
Don't need memory barriers when using a non-gcc compiler on Windows
2008-05-20 Tor Lillqvist <tml@novell.com> * configure.in: Don't need memory barriers when using a non-gcc compiler on Windows either. svn path=/trunk/; revision=6918
This commit is contained in:
parent
445bb2718b
commit
7100c410d2
@ -1,3 +1,8 @@
|
|||||||
|
2008-05-20 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
|
* configure.in: Don't need memory barriers when using a non-gcc
|
||||||
|
compiler on Windows either.
|
||||||
|
|
||||||
2008-05-19 Tor Lillqvist <tml@novell.com>
|
2008-05-19 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
* glib/gdir.c: Include the dirent.h and wdirent.c from
|
* glib/gdir.c: Include the dirent.h and wdirent.c from
|
||||||
|
@ -2367,6 +2367,11 @@ if test x"$GCC" = xyes; then
|
|||||||
glib_memory_barrier_needed=yes
|
glib_memory_barrier_needed=yes
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
else
|
||||||
|
if test $glib_native_win32 = yes; then
|
||||||
|
# For Windows but not using gcc. No barriers needed then either.
|
||||||
|
glib_memory_barrier_needed=no
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl ****************************************
|
dnl ****************************************
|
||||||
|
Loading…
Reference in New Issue
Block a user