Skip to content

Commit 9528253

Browse files
spdawsonjacmet
authored andcommitted
libglib2: bump version to 2.38.2
libglib2 can fail to build for arm, with the following error. gatomic.c:668:2: error: #error G_ATOMIC_LOCK_FREE defined, but incapable of lock-free atomics. The following upstream commit fixes the problem. commit 996edb0c46356d8a326f886b91a77a6af9a2de3e Author: Antoine Jacoutot <[email protected]> Date: Wed Aug 28 09:35:27 2013 +0200 fix atomic ops detection AC_TRY_LINK should be used instead of AC_TRY_COMPILE because the code will compile everywhere, either producing ``atomic'' code, or an external reference to __sync_bool_compare_and_swap. https://bugzilla.gnome.org/show_bug.cgi?id=706958 The upstream commit went into version 2.37.7, so this is the lowest version that we can bump to, in order to fix the atomic operations problem. However, 2.37.x is a development version, so we bump to 2.38.2 instead. Signed-off-by: Simon Dawson <[email protected]> Signed-off-by: Peter Korsgaard <[email protected]>
1 parent e0c4aa5 commit 9528253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/libglib2/libglib2.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
################################################################################
66

7-
LIBGLIB2_VERSION_MAJOR = 2.36
8-
LIBGLIB2_VERSION_MINOR = 3
7+
LIBGLIB2_VERSION_MAJOR = 2.38
8+
LIBGLIB2_VERSION_MINOR = 2
99
LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).$(LIBGLIB2_VERSION_MINOR)
1010
LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.xz
1111
LIBGLIB2_SITE = http://ftp.gnome.org/pub/gnome/sources/glib/$(LIBGLIB2_VERSION_MAJOR)

0 commit comments

Comments
 (0)