svn commit: trunk/busybox/include

aldot at busybox.net aldot at busybox.net
Mon Mar 19 15:15:06 UTC 2007


Author: aldot
Date: 2007-03-19 08:15:06 -0700 (Mon, 19 Mar 2007)
New Revision: 18164

Log:
- be gentle to the intel compiler and make sure we have __u64 which is needed for linux/loop.h


Modified:
   trunk/busybox/include/platform.h


Changeset:
Modified: trunk/busybox/include/platform.h
===================================================================
--- trunk/busybox/include/platform.h	2007-03-19 14:52:26 UTC (rev 18163)
+++ trunk/busybox/include/platform.h	2007-03-19 15:15:06 UTC (rev 18164)
@@ -139,6 +139,15 @@
 # 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))
 




More information about the busybox-cvs mailing list