diff options
Diffstat (limited to 'unionfs/unionfs-1.0.3/gcc2-hack.patch')
-rw-r--r-- | unionfs/unionfs-1.0.3/gcc2-hack.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/unionfs/unionfs-1.0.3/gcc2-hack.patch b/unionfs/unionfs-1.0.3/gcc2-hack.patch deleted file mode 100644 index 7c1f4dd32e..0000000000 --- a/unionfs/unionfs-1.0.3/gcc2-hack.patch +++ /dev/null @@ -1,28 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- unionfs-1.0.3/fist.h~gcc2 2004-11-10 09:38:58.000000000 -0500 -+++ unionfs-1.0.3/fist.h 2004-11-14 05:11:47.601022344 -0500 -@@ -212,11 +212,20 @@ - } while (0) - - /* Call if you encounter a bug. */ -+ -+#if __GNUC__ < 3 -+#define FISTBUG(arg...) \ -+do { \ -+ printk("<0>FISTBUG " ##arg); \ -+ (*((char *)0))=0; \ -+} while (0) -+#else - #define FISTBUG(fmt, args...) \ - do { \ - printk("<0>FISTBUG at %s:%s:%d " fmt, __FILE__, __FUNCTION__, __LINE__, ##args); \ - (*((char *)0))=0; \ - } while (0); -+#endif - - /* The if (0 ...) is so that we can make sure that you don't pass this - * define a non-pointer. gcc should optimize it away. */ |