X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=tools%2Fmtools%2Fpatches%2F100-compile_fix.patch;fp=tools%2Fmtools%2Fpatches%2F100-compile_fix.patch;h=698e1560298162610e71180f7b1d45bf92a1ccc8;hb=a56b1e46386ad1bbb66ed057c71a3078c2d36922;hp=0000000000000000000000000000000000000000;hpb=1c063070cf6bc2b81674f60b6ad6ae0ee9b4152f;p=openwrt%2F.git diff --git a/tools/mtools/patches/100-compile_fix.patch b/tools/mtools/patches/100-compile_fix.patch new file mode 100644 index 0000000000..698e156029 --- /dev/null +++ b/tools/mtools/patches/100-compile_fix.patch @@ -0,0 +1,19 @@ +--- 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