mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
glib-2.0 2.28.x: update to 2.28.8
(From OE-Core rev: c075634135249d3d5d84bbb6dd98e98d3fbf938c) Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
899dcfe4ad
commit
3c1a960856
@@ -0,0 +1,28 @@
|
|||||||
|
From 3d371334d5668bcd02a38ff99884bd343c244d68 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
||||||
|
Date: Sat, 18 Jun 2011 23:51:35 +0200
|
||||||
|
Subject: [PATCH 3/7] gatomic-proper-pointer-get-cast.patch
|
||||||
|
|
||||||
|
Upstream-Status: Unknown
|
||||||
|
|
||||||
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
||||||
|
---
|
||||||
|
glib/gatomic.h | 2 +-
|
||||||
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/glib/gatomic.h b/glib/gatomic.h
|
||||||
|
index ddd39b8..b758142 100644
|
||||||
|
--- a/glib/gatomic.h
|
||||||
|
+++ b/glib/gatomic.h
|
||||||
|
@@ -70,7 +70,7 @@ void g_atomic_pointer_set (volatile gpointer G_GNUC_MAY_ALI
|
||||||
|
(g_atomic_int_set) ((volatile gint G_GNUC_MAY_ALIAS *) (volatile void *) (atomic), (newval)))
|
||||||
|
# define g_atomic_pointer_get(atomic) \
|
||||||
|
((void) sizeof (gchar [sizeof (*(atomic)) == sizeof (gpointer) ? 1 : -1]), \
|
||||||
|
- (g_atomic_pointer_get) ((volatile gpointer G_GNUC_MAY_ALIAS *) (volatile void *) (atomic)))
|
||||||
|
+ (g_atomic_pointer_get) ((volatile gpointer G_GNUC_MAY_ALIAS *) (volatile void G_GNUC_MAY_ALIAS *) (atomic)))
|
||||||
|
# define g_atomic_pointer_set(atomic, newval) \
|
||||||
|
((void) sizeof (gchar [sizeof (*(atomic)) == sizeof (gpointer) ? 1 : -1]), \
|
||||||
|
(g_atomic_pointer_set) ((volatile gpointer G_GNUC_MAY_ALIAS *) (volatile void *) (atomic), (newval)))
|
||||||
|
--
|
||||||
|
1.6.6.1
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
From a8e5c4a808e7f8572bd5023645a6cb4386b9aff8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
||||||
|
Date: Sat, 18 Jun 2011 23:52:17 +0200
|
||||||
|
Subject: [PATCH 5/7] don't leak buildpaths into perl hashbang
|
||||||
|
|
||||||
|
Upstream-Status: Unknown
|
||||||
|
|
||||||
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
||||||
|
---
|
||||||
|
gobject/glib-mkenums.in | 2 +-
|
||||||
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in
|
||||||
|
index 6372245..b486fe9 100755
|
||||||
|
--- a/gobject/glib-mkenums.in
|
||||||
|
+++ b/gobject/glib-mkenums.in
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#! @PERL_PATH@
|
||||||
|
+#! /usr/bin/env perl
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
use File::Basename;
|
||||||
|
--
|
||||||
|
1.6.6.1
|
||||||
|
|
||||||
+8
-4
@@ -1,18 +1,22 @@
|
|||||||
require glib.inc
|
require glib.inc
|
||||||
|
|
||||||
PE = "1"
|
|
||||||
PR = "r1"
|
PR = "r1"
|
||||||
|
PE = "1"
|
||||||
|
|
||||||
SRC_URI = "${GNOME_MIRROR}/glib/2.28/glib-${PV}.tar.bz2 \
|
SRC_URI = "${GNOME_MIRROR}/glib/2.28/glib-${PV}.tar.bz2 \
|
||||||
file://configure-libtool.patch \
|
file://configure-libtool.patch \
|
||||||
file://60_wait-longer-for-threads-to-die.patch \
|
file://60_wait-longer-for-threads-to-die.patch \
|
||||||
file://g_once_init_enter.patch \
|
file://g_once_init_enter.patch \
|
||||||
|
file://0003-gatomic-proper-pointer-get-cast.patch.patch \
|
||||||
|
file://0005-glib-mkenums-interpreter.patch.patch \
|
||||||
"
|
"
|
||||||
# Only apply this patch for target recipe on uclibc
|
# Only apply this patch for target recipe on uclibc
|
||||||
SRC_URI_append_libc-uclibc = " ${@['', 'file://no-iconv.patch']['${PN}' == '${BPN}']}"
|
SRC_URI_append_libc-uclibc = " ${@['', 'file://no-iconv.patch']['${PN}' == '${BPN}']}"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "7d8fc15ae70d5111c0cf2a79d50ef717"
|
|
||||||
SRC_URI[sha256sum] = "557fb7c39d21b9359fbac51fd6b0b883bc97a2561c0166eef993a4078312f578"
|
|
||||||
|
|
||||||
SRC_URI_append_virtclass-native = " file://glib-gettextize-dir.patch"
|
SRC_URI_append_virtclass-native = " file://glib-gettextize-dir.patch"
|
||||||
|
|
||||||
|
SRC_URI[md5sum] = "789e7520f71c6a4bf08bc683ec764d24"
|
||||||
|
SRC_URI[sha256sum] = "222f3055d6c413417b50901008c654865e5a311c73f0ae918b0a9978d1f9466f"
|
||||||
|
|
||||||
BBCLASSEXTEND = "native"
|
BBCLASSEXTEND = "native"
|
||||||
|
|
||||||
@@ -31,7 +31,8 @@ EXTRA_OECONF = "--disable-debug --enable-included-printf=no"
|
|||||||
EXTRA_OECONF_virtclass-native = ""
|
EXTRA_OECONF_virtclass-native = ""
|
||||||
EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no"
|
EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no"
|
||||||
|
|
||||||
FILES_${PN} = "${libdir}/lib*${SOLIBS}"
|
FILES_${PN} = "${libdir}/lib*${SOLIBS} ${sysconfdir}/bash_completion.d ${datadir}/glib-2.0/schemas"
|
||||||
FILES_${PN}-dev += "${libdir}/glib-2.0/include"
|
FILES_${PN}-dev += "${libdir}/glib-2.0/include"
|
||||||
|
FILES_${PN}-dbg += "${datadir}/glib-2.0/gdb ${datadir}/gdb"
|
||||||
|
|
||||||
ARM_INSTRUCTION_SET = "arm"
|
ARM_INSTRUCTION_SET = "arm"
|
||||||
|
|||||||
Reference in New Issue
Block a user