mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
This is initial set of patches for testing them out The patches need documentation is pending Some patches especially uclibc related are not needed they must be dropped. (From OE-Core rev: 26858099bc104efc3b3d15d9298018285c551b9a) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
891 B
Diff
29 lines
891 B
Diff
Index: gcc-4.6.0/libstdc++-v3/include/ext/rope
|
|
===================================================================
|
|
--- gcc-4.6.0.orig/libstdc++-v3/include/ext/rope
|
|
+++ gcc-4.6.0/libstdc++-v3/include/ext/rope
|
|
@@ -54,6 +54,9 @@
|
|
#include <bits/gthr.h>
|
|
#include <tr1/functional>
|
|
|
|
+/* cope w/ index defined as macro, SuSv3 proposal */
|
|
+#undef index
|
|
+
|
|
# ifdef __GC
|
|
# define __GC_CONST const
|
|
# else
|
|
Index: gcc-4.6.0/libstdc++-v3/include/ext/ropeimpl.h
|
|
===================================================================
|
|
--- gcc-4.6.0.orig/libstdc++-v3/include/ext/ropeimpl.h
|
|
+++ gcc-4.6.0/libstdc++-v3/include/ext/ropeimpl.h
|
|
@@ -49,6 +49,9 @@
|
|
#include <ext/memory> // For uninitialized_copy_n
|
|
#include <ext/numeric> // For power
|
|
|
|
+/* cope w/ index defined as macro, SuSv3 proposal */
|
|
+#undef index
|
|
+
|
|
namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
|
|
{
|
|
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|