summaryrefslogtreecommitdiffstats
path: root/patches/insight-6.8-1
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2010-03-26 22:46:26 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2010-04-01 10:25:47 +0200
commit17cc97ea8ecf27553525509e4cea948475fb8369 (patch)
tree8fd062329b244aab90c4a4a4a8987815cce96616 /patches/insight-6.8-1
parent9968259e4a7e441e68b92424d7d5b10fcde03904 (diff)
downloadptxdist-17cc97ea8ecf27553525509e4cea948475fb8369.tar.gz
ptxdist-17cc97ea8ecf27553525509e4cea948475fb8369.tar.xz
[cross-insight] version bump to 6.8-1
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'patches/insight-6.8-1')
-rw-r--r--patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch27
-rw-r--r--patches/insight-6.8-1/series1
2 files changed, 28 insertions, 0 deletions
diff --git a/patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch b/patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch
new file mode 100644
index 000000000..1f4353f8f
--- /dev/null
+++ b/patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch
@@ -0,0 +1,27 @@
+From d7931d9affb51de54069b75ae0ae9648ffdd64fc Mon Sep 17 00:00:00 2001
+From: Holger Hans Peter Freyther <zecke@selfish.org>
+Date: Sun, 2 Aug 2009 04:09:03 +0200
+Subject: [PATCH] gdb: Add a patch to fix compilation of gdb 6.8
+
+gcc warns about the subscript_array being uninitialized,
+just memset this area... luckily I can not break much as
+this is for fortran code.
+
+Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
+
+Index: gdb-6.8/gdb/eval.c
+===================================================================
+--- gdb-6.8.orig/gdb/eval.c 2009-08-02 03:25:20.000000000 +0200
++++ gdb-6.8/gdb/eval.c 2009-08-02 03:53:39.000000000 +0200
+@@ -1656,6 +1656,8 @@
+ if (nargs != ndimensions)
+ error (_("Wrong number of subscripts"));
+
++ memset(&subscript_array, 0, sizeof(subscript_array));
++
+ /* Now that we know we have a legal array subscript expression
+ let us actually find out where this element exists in the array. */
+
+--
+1.6.1
+
diff --git a/patches/insight-6.8-1/series b/patches/insight-6.8-1/series
new file mode 100644
index 000000000..8213c8d6f
--- /dev/null
+++ b/patches/insight-6.8-1/series
@@ -0,0 +1 @@
+gdb-6.8-fix-compile-karmic.patch