patches/gcc/4.3.1/290-index_macro.patch
author danielrubiob@gmail.com
Tue Feb 11 21:34:48 2014 +0100 (2014-02-11)
changeset 3285 a8cb9039fade
permissions -rw-r--r--
complibs/cloog: bump version

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>
[yann.morin.1998@free.fr: re-order versions]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
Message-Id: <c2de3964cd6d5e4173cc.1391984023@uemo>
Patchwork-Id: 318637
     1 Original patch from gentoo: gentoo/src/patchsets/gcc/4.3.1/uclibc/90_all_304-index_macro.patch
     2 diff -durN gcc-4.3.1.orig/libstdc++-v3/include/ext/rope gcc-4.3.1/libstdc++-v3/include/ext/rope
     3 --- gcc-4.3.1.orig/libstdc++-v3/include/ext/rope	2008-01-31 19:44:55.000000000 +0100
     4 +++ gcc-4.3.1/libstdc++-v3/include/ext/rope	2008-06-10 14:59:02.000000000 +0200
     5 @@ -59,6 +59,9 @@
     6  #include <bits/gthr.h>
     7  #include <tr1/functional>
     8  
     9 +/* cope w/ index defined as macro, SuSv3 proposal */
    10 +#undef index
    11 +
    12  # ifdef __GC
    13  #   define __GC_CONST const
    14  # else
    15 diff -durN gcc-4.3.1.orig/libstdc++-v3/include/ext/ropeimpl.h gcc-4.3.1/libstdc++-v3/include/ext/ropeimpl.h
    16 --- gcc-4.3.1.orig/libstdc++-v3/include/ext/ropeimpl.h	2007-05-04 17:06:46.000000000 +0200
    17 +++ gcc-4.3.1/libstdc++-v3/include/ext/ropeimpl.h	2008-06-10 14:59:02.000000000 +0200
    18 @@ -54,6 +54,9 @@
    19  #include <ext/memory> // For uninitialized_copy_n
    20  #include <ext/numeric> // For power
    21  
    22 +/* cope w/ index defined as macro, SuSv3 proposal */
    23 +#undef index
    24 +
    25  _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
    26  
    27    using std::size_t;