mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
libbonoboui: remove
* it depends on removed libglade * project is dead - last release in 2011 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
a3c1c4d981
commit
281ffdaf2e
-49
@@ -1,49 +0,0 @@
|
||||
From b75879e8c3e24d338c0e5843d616bc9b02da4d04 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 26 Aug 2017 09:52:17 -0700
|
||||
Subject: [PATCH] bonobo-ui-node: qualify functions with G_GNUC_PRINTF
|
||||
|
||||
This helps compiler in doing format checking correctly
|
||||
Fixes
|
||||
bonobo-ui-node.c:864:38: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
|
||||
| g_logv ("XML", G_LOG_LEVEL_ERROR, msg, args);
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
bonobo/bonobo-ui-node.c | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/bonobo/bonobo-ui-node.c b/bonobo/bonobo-ui-node.c
|
||||
index 9bab5e5..6ec66e2 100644
|
||||
--- a/bonobo/bonobo-ui-node.c
|
||||
+++ b/bonobo/bonobo-ui-node.c
|
||||
@@ -835,7 +835,7 @@ uiCharacters (ParseState *ps, const xmlChar *chars, int len)
|
||||
g_string_append_len (ps->content, chars, len);
|
||||
}
|
||||
|
||||
-static void
|
||||
+static G_GNUC_PRINTF(2, 3) void
|
||||
uiWarning (ParseState *ps, const char *msg, ...)
|
||||
{
|
||||
va_list args;
|
||||
@@ -845,7 +845,7 @@ uiWarning (ParseState *ps, const char *msg, ...)
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
-static void
|
||||
+static G_GNUC_PRINTF(2, 3) void
|
||||
uiError (ParseState *ps, const char *msg, ...)
|
||||
{
|
||||
va_list args;
|
||||
@@ -855,7 +855,7 @@ uiError (ParseState *ps, const char *msg, ...)
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
-static void
|
||||
+static G_GNUC_PRINTF(2, 3) void
|
||||
uiFatalError (ParseState *ps, const char *msg, ...)
|
||||
{
|
||||
va_list args;
|
||||
--
|
||||
2.14.1
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
Index: libbonoboui-2.24.5/tools/browser/Makefile.am
|
||||
===================================================================
|
||||
--- libbonoboui-2.24.5.orig/tools/browser/Makefile.am
|
||||
+++ libbonoboui-2.24.5/tools/browser/Makefile.am
|
||||
@@ -2,7 +2,6 @@ INCLUDES = \
|
||||
-DBONOBO_BROWSER_DATADIR=\""$(datadir)"\" \
|
||||
-DBONOBO_SUPPORT_LOCALEDIR=\""$(datadir)/locale"\" \
|
||||
-I$(srcdir) -I$(top_srcdir) \
|
||||
- -I$(top_srcdir)/bonobo-browser \
|
||||
$(BONOBOUI_CFLAGS) \
|
||||
$(WARN_CFLAGS)
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
SECTION = "x11/gnome/libs"
|
||||
LICENSE = "GPLv2 & LGPLv2.1"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
||||
file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34"
|
||||
|
||||
inherit distro_features_check gnomebase pkgconfig gtk-doc
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
SRC_URI += "file://gcc5.patch \
|
||||
file://0001-bonobo-ui-node-qualify-functions-with-G_GNUC_PRINTF.patch \
|
||||
"
|
||||
|
||||
SRC_URI[archive.md5sum] = "853be8e28aaa4ce48ba60be7d9046bf4"
|
||||
SRC_URI[archive.sha256sum] = "fab5f2ac6c842d949861c07cb520afe5bee3dce55805151ce9cd01be0ec46fcd"
|
||||
GNOME_COMPRESS_TYPE="bz2"
|
||||
|
||||
DEPENDS = "libgnomecanvas libbonobo libgnome glib-2.0 gconf libxml2 libglade gnome-common intltool-native"
|
||||
|
||||
FILES_${PN} += "${libdir}/libglade/2.0/*.so"
|
||||
FILES_${PN}-dev += "${libdir}/libglade/2.0/*.la ${datadir}/gnome-2.0/ui \
|
||||
${libdir}/bonobo-2.0/samples"
|
||||
FILES_${PN}-staticdev += "${libdir}/libglade/2.0/*.a"
|
||||
FILES_${PN}-dbg += "${libdir}/bonobo-2.0/samples/.debug \
|
||||
${libdir}/libglade/2.0/.debug"
|
||||
Reference in New Issue
Block a user