diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-12-13 19:02:56 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-19 17:50:03 +0000 |
commit | 5b671669e461a0f61ae178cb1ee2102fdedc13dc (patch) | |
tree | 1dadccdb59fb6cdb82ad2f5f60575d2e8253afcd /meta/recipes-gnome | |
parent | 3d535ac34b356d40576553a20f2ce04fd527350d (diff) | |
download | openembedded-core-5b671669e461a0f61ae178cb1ee2102fdedc13dc.tar.gz openembedded-core-5b671669e461a0f61ae178cb1ee2102fdedc13dc.tar.bz2 openembedded-core-5b671669e461a0f61ae178cb1ee2102fdedc13dc.zip |
gconf: Update to 3.2.5
Removed patch as it was incorporated in new version
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r-- | meta/recipes-gnome/gnome/gconf-3.2.3/backenddir.patch | 45 | ||||
-rw-r--r-- | meta/recipes-gnome/gnome/gconf_3.2.5.bb (renamed from meta/recipes-gnome/gnome/gconf_3.2.3.bb) | 9 |
2 files changed, 4 insertions, 50 deletions
diff --git a/meta/recipes-gnome/gnome/gconf-3.2.3/backenddir.patch b/meta/recipes-gnome/gnome/gconf-3.2.3/backenddir.patch deleted file mode 100644 index d4cdf8b38e..0000000000 --- a/meta/recipes-gnome/gnome/gconf-3.2.3/backenddir.patch +++ /dev/null @@ -1,45 +0,0 @@ -Allow the backend directory to be specified from the environment. This is -required so we can relocate gconf-native to different paths and still -allow it to work. - -Bug filed upstream with patch: https://bugzilla.gnome.org/show_bug.cgi?id=664650 - -Upstream-Status: Pending - -RP 2011/11/23 - -Index: GConf-3.2.3/gconf/gconf-backend.c -=================================================================== ---- GConf-3.2.3.orig/gconf/gconf-backend.c 2011-07-01 14:01:20.000000000 +0100 -+++ GConf-3.2.3/gconf/gconf-backend.c 2011-11-23 14:56:37.141293320 +0000 -@@ -21,6 +21,7 @@ - #include <config.h> - #include "gconf-backend.h" - #include "gconf-internals.h" -+#include <stdlib.h> - #include <stdio.h> - #include <string.h> - #include <sys/stat.h> -@@ -171,6 +172,7 @@ - gchar* back; - gchar* file; - gchar* retval; -+ const gchar* backenddir; - - g_return_val_if_fail(address != NULL, NULL); - -@@ -179,9 +181,13 @@ - if (back == NULL) - return NULL; - -+ backenddir = getenv("GCONF_BACKEND_DIR"); -+ if (backenddir == NULL) -+ backenddir = GCONF_BACKEND_DIR; -+ - file = g_strconcat("gconfbackend-", back, NULL); - -- retval = g_module_build_path(GCONF_BACKEND_DIR, file); -+ retval = g_module_build_path(backenddir, file); - - g_free(back); - diff --git a/meta/recipes-gnome/gnome/gconf_3.2.3.bb b/meta/recipes-gnome/gnome/gconf_3.2.5.bb index ef21624de1..9e9232269a 100644 --- a/meta/recipes-gnome/gnome/gconf_3.2.3.bb +++ b/meta/recipes-gnome/gnome/gconf_3.2.5.bb @@ -13,14 +13,13 @@ PR = "r13" inherit gnomebase gtk-doc -SRC_URI = "${GNOME_MIRROR}/GConf/${@gnome_verdir("${PV}")}/GConf-${PV}.tar.bz2;name=archive \ - file://backenddir.patch" - -SRC_URI[archive.md5sum] = "f80329173cd9d134ad07e36002dd2a15" -SRC_URI[archive.sha256sum] = "52008a82a847527877d9e1e549a351c86cc53cada4733b8a70a1123925d6aff4" +SRC_URI = "${GNOME_MIRROR}/GConf/${@gnome_verdir("${PV}")}/GConf-${PV}.tar.xz;name=archive" S = "${WORKDIR}/GConf-${PV}" +SRC_URI[archive.md5sum] = "1b803eb4f8576c572d072692cf40c9d8" +SRC_URI[archive.sha256sum] = "4ddea9503a212ee126c5b46a0a958fd5484574c3cb6ef2baf38db02e819e58c6" + POLKIT_OECONF = "--enable-defaults-service" POLKIT_OECONF_class-native = "--disable-defaults-service" POLKIT_OECONF_libc-uclibc = "--disable-default-service" |