summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/vte/vte
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2016-04-26 15:19:48 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 18:05:23 +0100
commitee0188f1e0bdb65bf2dd0e68c1bd4a51f32a4da8 (patch)
treed01bb29ac5e96870563c238d540f1392f1a03966 /meta/recipes-support/vte/vte
parent5b076f945a0d563dcc9c60e893d58eb0bf39a8e4 (diff)
downloadpoky-ee0188f1e0bdb65bf2dd0e68c1bd4a51f32a4da8.tar.gz
vte: Upgrade to 0.44.1
* License change LGPL 2.0 -> LGPL 2.1+ * vte-termcap is no more * API break: current version seems to be parallel installable with old one, but I did not opt for that. * Add patch to avoid stack protection by default * Use libtool-cross: libtool adds "-nostdlib" when g++ is used, and this leads to a link failure on PIE builds: "undefined reference to __init_array_start". libtool-cross has a hack to avoid "-nostdlib" (From OE-Core rev: dc21182ada418cf3917ae8319494d219462c5bfd) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/vte/vte')
-rw-r--r--meta/recipes-support/vte/vte/0001-Don-t-enable-stack-protection-by-default.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-support/vte/vte/0001-Don-t-enable-stack-protection-by-default.patch b/meta/recipes-support/vte/vte/0001-Don-t-enable-stack-protection-by-default.patch
new file mode 100644
index 0000000000..fcfc559758
--- /dev/null
+++ b/meta/recipes-support/vte/vte/0001-Don-t-enable-stack-protection-by-default.patch
@@ -0,0 +1,29 @@
1From b0a579d83e355545b64742c997fe8b1d58bf4207 Mon Sep 17 00:00:00 2001
2From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3Date: Mon, 13 Jun 2016 11:05:00 +0300
4Subject: [PATCH] Don't enable stack-protection by default
5
6These are set by security_flags.inc.
7
8Upstream-Status: Inappropriate [configuration]
9Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
10---
11 configure.ac | 2 --
12 1 file changed, 2 deletions(-)
13
14diff --git a/configure.ac b/configure.ac
15index 068d072..d580f84 100644
16--- a/configure.ac
17+++ b/configure.ac
18@@ -138,8 +138,6 @@ m4_define([compiler_flags_common],[ dnl
19 -fno-common dnl
20 -fdiagnostics-show-option dnl
21 -fno-strict-aliasing dnl
22- -fstack-protector dnl
23- -fstack-protector-strong dnl
24 -fno-semantic-interposition dnl
25 -Wno-deprecated-declarations dnl
26 ])
27--
282.1.4
29