aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mtools/patches/100-compile_fix.patch
diff options
context:
space:
mode:
authorDaniel Engberg <daniel.engberg.lists@pyret.net>2018-12-22 22:20:13 +0100
committerHans Dedecker <dedeckeh@gmail.com>2018-12-24 17:05:57 +0100
commit666dd5dc01bf2b56cd2acf94dfdb9a8748792290 (patch)
treeff82c7358d4ec1ff48dd5a71af210176164970f6 /tools/mtools/patches/100-compile_fix.patch
parent5b3afca7576887be509eb21950009851676a1acb (diff)
downloadupstream-666dd5dc01bf2b56cd2acf94dfdb9a8748792290.tar.gz
upstream-666dd5dc01bf2b56cd2acf94dfdb9a8748792290.tar.bz2
upstream-666dd5dc01bf2b56cd2acf94dfdb9a8748792290.zip
tools/mtools: Update to 4.0.23
Update mtools to 4.0.23 Drop patch, workaround in upstream Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Diffstat (limited to 'tools/mtools/patches/100-compile_fix.patch')
-rw-r--r--tools/mtools/patches/100-compile_fix.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/mtools/patches/100-compile_fix.patch b/tools/mtools/patches/100-compile_fix.patch
deleted file mode 100644
index 698e156029..0000000000
--- a/tools/mtools/patches/100-compile_fix.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/sysincludes.h
-+++ b/sysincludes.h
-@@ -101,14 +101,8 @@ typedef void *caddr_t;
- #if defined __GNUC__ && defined __STDC__
- /* gcc -traditional doesn't have PACKED, UNUSED and NORETURN */
- # define PACKED __attribute__ ((packed))
--# if __GNUC__ == 2 && __GNUC_MINOR__ > 6 || __GNUC__ >= 3
--/* gcc 2.6.3 doesn't have "unused" */ /* mool */
--# define UNUSED(x) x __attribute__ ((unused));x
--# define UNUSEDP __attribute__ ((unused))
--# else
--# define UNUSED(x) x
--# define UNUSEDP /* */
--# endif
-+# define UNUSED(x) x
-+# define UNUSEDP /* */
- # define NORETURN __attribute__ ((noreturn))
- #else
- # define UNUSED(x) x