summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-07 10:51:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-12 14:12:09 +0100
commitd2b4818c5cca291f90c5acc9a2316d807ef9fa26 (patch)
treed6e9042b98366e4e3fe8fe397cc18958bebf847d /meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch
parent9167557fb94b94f4fca8cf2cdfacbc0cf783b49d (diff)
downloadpoky-d2b4818c5cca291f90c5acc9a2316d807ef9fa26.tar.gz
gcc: Drop old version 4.5.1
(From OE-Core rev: 59443380286010eda07f1434e918a3af8c8a31a9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch')
-rw-r--r--meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch
deleted file mode 100644
index 25f4e9333e..0000000000
--- a/meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1Upstream-Status: Pending
2
3Index: gcc-4.5.0/libstdc++-v3/include/ext/rope
4===================================================================
5--- gcc-4.5.0.orig/libstdc++-v3/include/ext/rope 2009-04-09 08:00:19.000000000 -0700
6+++ gcc-4.5.0/libstdc++-v3/include/ext/rope 2010-06-25 10:51:33.613383077 -0700
7@@ -54,6 +54,9 @@
8 #include <bits/gthr.h>
9 #include <tr1/functional>
10
11+/* cope w/ index defined as macro, SuSv3 proposal */
12+#undef index
13+
14 # ifdef __GC
15 # define __GC_CONST const
16 # else
17Index: gcc-4.5.0/libstdc++-v3/include/ext/ropeimpl.h
18===================================================================
19--- gcc-4.5.0.orig/libstdc++-v3/include/ext/ropeimpl.h 2009-04-09 08:00:19.000000000 -0700
20+++ gcc-4.5.0/libstdc++-v3/include/ext/ropeimpl.h 2010-06-25 10:51:33.621381669 -0700
21@@ -49,6 +49,9 @@
22 #include <ext/memory> // For uninitialized_copy_n
23 #include <ext/numeric> // For power
24
25+/* cope w/ index defined as macro, SuSv3 proposal */
26+#undef index
27+
28 _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
29
30 using std::size_t;