From c444f8ca0137c15eb3fd043e7e6022b169adcab7 Mon Sep 17 00:00:00 2001 From: aldot Date: Mon, 19 Mar 2007 15:15:06 +0000 Subject: - be gentle to the intel compiler and make sure we have __u64 which is needed for linux/loop.h git-svn-id: svn://busybox.net/trunk/busybox@18164 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/platform.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/platform.h b/include/platform.h index baabd49b7..69d031dca 100644 --- a/include/platform.h +++ b/include/platform.h @@ -139,6 +139,15 @@ typedef int socklen_t; # define HAVE_MNTENT_H 1 #endif /* ___digital__ && __unix__ */ +/* linux/loop.h relies on __u64. Make sure we have that as a proper type + * until userspace is widely fixed. */ +#ifndef __GNUC__ +#if defined __INTEL_COMPILER +__extension__ typedef __signed__ long long __s64; +__extension__ typedef unsigned long long __u64; +#endif /* __INTEL_COMPILER */ +#endif /* ifndef __GNUC__ */ + /*----- Kernel versioning ------------------------------------*/ #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -- cgit v1.2.3-55-g6feb