summaryrefslogtreecommitdiff
path: root/patches/gcc/2.95.3/170-pr3106.patch
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-10-28 23:10:06 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-10-28 23:10:06 (GMT)
commitde8f2cea32f14099cf756cbef40d312ffd1894a8 (patch)
treeaf4f9ce5798909cfa1eadec07390425937e3886a /patches/gcc/2.95.3/170-pr3106.patch
parent06cb0b6ddbbb2f9275b3a71eda3f2ffeff929d90 (diff)
parent5b0242a30c12e4ce1366788126cea866b21abeba (diff)
Merge.
Diffstat (limited to 'patches/gcc/2.95.3/170-pr3106.patch')
-rw-r--r--patches/gcc/2.95.3/170-pr3106.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/patches/gcc/2.95.3/170-pr3106.patch b/patches/gcc/2.95.3/170-pr3106.patch
deleted file mode 100644
index 0e077ea..0000000
--- a/patches/gcc/2.95.3/170-pr3106.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-See http://gcc.gnu.org/PR3106
-Backported from gcc-3.0.x
-
-Fixes error
- .../binutils-2.11.2/libiberty/strerror.c:468: error: conflicting types for `sys_nerr'
- /usr/include/stdio.h:258: error: previous declaration of `sys_nerr'
- make[1]: *** [strerror.o] Error 1
- make: *** [all-libiberty] Error 2
-on Mac OS X.
-
---- gcc-2.95.3/libiberty/strerror.c.old 2004-03-24 16:23:19.000000000 -0800
-+++ gcc-2.95.3/libiberty/strerror.c 2004-03-24 16:23:48.000000000 -0800
-@@ -13,6 +13,7 @@
- incompatible with our later declaration, perhaps by using const
- attributes. So we hide the declaration in errno.h (if any) using a
- macro. */
-+#define sys_nerr sys_nerr__
- #define sys_errlist sys_errlist__
- #endif
-
-@@ -20,6 +21,7 @@
- #include <errno.h>
-
- #ifdef HAVE_SYS_ERRLIST
-+#undef sys_nerr
- #undef sys_errlist
- #endif
-