summaryrefslogtreecommitdiff
path: root/m68k-unknown-amigaos/recipes/patches/gcc/include.filenames.h.p
diff options
context:
space:
mode:
Diffstat (limited to 'm68k-unknown-amigaos/recipes/patches/gcc/include.filenames.h.p')
-rw-r--r--m68k-unknown-amigaos/recipes/patches/gcc/include.filenames.h.p14
1 files changed, 0 insertions, 14 deletions
diff --git a/m68k-unknown-amigaos/recipes/patches/gcc/include.filenames.h.p b/m68k-unknown-amigaos/recipes/patches/gcc/include.filenames.h.p
deleted file mode 100644
index a9d5548..0000000
--- a/m68k-unknown-amigaos/recipes/patches/gcc/include.filenames.h.p
+++ /dev/null
@@ -1,14 +0,0 @@
---- gcc-3.4.6/include/filenames.h 2003-07-01 22:29:16.000000000 +0200
-+++ include/filenames.h 2013-05-19 20:23:32.000000000 +0200
-@@ -43,7 +43,11 @@
- #else /* not DOSish */
-
- #define IS_DIR_SEPARATOR(c) ((c) == '/')
-+#if !defined(__amigaos__)
- #define IS_ABSOLUTE_PATH(f) (IS_DIR_SEPARATOR((f)[0]))
-+#else
-+#define IS_ABSOLUTE_PATH(f) (IS_DIR_SEPARATOR((f)[0]) || strchr((f), VOL_SEPARATOR))
-+#endif
- #define FILENAME_CMP(s1, s2) strcmp(s1, s2)
-
- #endif /* not DOSish */