summaryrefslogtreecommitdiff
path: root/m68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2018-01-12 23:21:58 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2018-07-23 18:41:06 +0100
commit8614f549b79ac6d9d079efc85a735d0c092ff3e8 (patch)
treef23975e797be5d1764501a956b74e8c1a6c8a83a /m68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p
parentbac3e0ec6390348d2d1f44f0fb7ef5e2c43f74d3 (diff)
downloadtoolchains-8614f549b79ac6d9d079efc85a735d0c092ff3e8.tar.gz
toolchains-8614f549b79ac6d9d079efc85a735d0c092ff3e8.tar.bz2
Update to gcc 6.3
using bebbo's patches (generated from github.com/bebbo/gcc)
Diffstat (limited to 'm68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p')
-rw-r--r--m68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p19
1 files changed, 0 insertions, 19 deletions
diff --git a/m68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p b/m68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p
deleted file mode 100644
index 9e91ea1..0000000
--- a/m68k-unknown-amigaos/recipes/patches/gcc/gcc.c-incpath.c.p
+++ /dev/null
@@ -1,19 +0,0 @@
---- gcc-3.4.6/gcc/c-incpath.c 2013-05-19 19:56:46.000000000 +0200
-+++ gcc/c-incpath.c 2013-05-19 20:23:32.000000000 +0200
-@@ -28,14 +28,14 @@
- #include "c-incpath.h"
- #include "cppdefault.h"
-
--/* Windows does not natively support inodes, and neither does MSDOS.
-+/* Windows does not natively support inodes, and neither does MSDOS or AmigaOS.
- Cygwin's emulation can generate non-unique inodes, so don't use it.
- VMS has non-numeric inodes. */
- #ifdef VMS
- # define INO_T_EQ(A, B) (!memcmp (&(A), &(B), sizeof (A)))
- # define INO_T_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof (SRC))
- #else
--# if (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__
-+# if (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__ || __amigaos__
- # define INO_T_EQ(A, B) 0
- # else
- # define INO_T_EQ(A, B) ((A) == (B))