diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/unionfs/files | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/unionfs/files')
-rw-r--r-- | packages/unionfs/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/unionfs/files/gcc2-hack.patch | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/packages/unionfs/files/.mtn2git_empty b/packages/unionfs/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/unionfs/files/.mtn2git_empty diff --git a/packages/unionfs/files/gcc2-hack.patch b/packages/unionfs/files/gcc2-hack.patch index e69de29bb2..7c1f4dd32e 100644 --- a/packages/unionfs/files/gcc2-hack.patch +++ b/packages/unionfs/files/gcc2-hack.patch @@ -0,0 +1,28 @@ + +# +# 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. */ |