summaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2019-12-16 02:20:43 +0100
committerKhem Raj <raj.khem@gmail.com>2019-12-15 21:08:54 -0800
commit2c9b186ae233afd46de28af8eeeddf8790e69742 (patch)
tree5bfb0c7a8c1c32bef0506faafa6b63c6e6951078 /meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch
parent68d7475f778eaae33eb0073dfaef86a873033092 (diff)
downloadmeta-openembedded-2c9b186ae233afd46de28af8eeeddf8790e69742.tar.gz
glade3: remove ancient version of glade
* This was suggested already [1] but I complained that there is a use-case. There are several workarounds possible for this so we don't need to keep it anymore. * glade3 popped into focus during preparations for python2 removal. So instead of wasting time to keep unmaintained version just drop it [1] http://lists.openembedded.org/pipermail/openembedded-devel/2019-May/199523.html Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch')
-rw-r--r--meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch b/meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch
deleted file mode 100644
index f735ff819..000000000
--- a/meta-xfce/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch
+++ /dev/null
@@ -1,39 +0,0 @@
1From 5aa3d2abb905fa8594f6c6572a87809da54c9342 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
3Date: Mon, 5 Sep 2016 11:25:27 +0200
4Subject: [PATCH] fix gcc-6 build
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Upstream-Status: Pending
10
11Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
12---
13 gladeui/glade-editor-property.c | 3 +++
14 1 file changed, 3 insertions(+)
15
16diff --git a/gladeui/glade-editor-property.c b/gladeui/glade-editor-property.c
17index a0c1039..5e9ac38 100644
18--- a/gladeui/glade-editor-property.c
19+++ b/gladeui/glade-editor-property.c
20@@ -2703,6 +2703,8 @@ glade_eprop_object_view (gboolean radio)
21 }
22
23
24+#pragma GCC diagnostic push
25+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
26 static gchar *
27 glade_eprop_object_dialog_title (GladeEditorProperty *eprop)
28 {
29@@ -2731,6 +2733,7 @@ glade_eprop_object_dialog_title (GladeEditorProperty *eprop)
30 return g_strdup_printf (format, g_type_name
31 (eprop->klass->pspec->value_type));
32 }
33+#pragma GCC diagnostic pop
34
35
36 gboolean
37--
382.5.5
39