svn commit: trunk/busybox: include libbb util-linux

landley at busybox.net landley at busybox.net
Tue Jun 13 18:28:36 UTC 2006


Author: landley
Date: 2006-06-13 11:28:33 -0700 (Tue, 13 Jun 2006)
New Revision: 15375

Log:
Random cleanup of platform.h.


Modified:
   trunk/busybox/include/platform.h
   trunk/busybox/libbb/copy_file.c
   trunk/busybox/util-linux/fdisk.c


Changeset:
Modified: trunk/busybox/include/platform.h
===================================================================
--- trunk/busybox/include/platform.h	2006-06-13 18:27:16 UTC (rev 15374)
+++ trunk/busybox/include/platform.h	2006-06-13 18:28:33 UTC (rev 15375)
@@ -149,10 +149,8 @@
 #endif /* ifndef __GNUC__ */
 
 #if (defined __digital__ && defined __unix__)
-# undef HAVE_STDBOOL_H
 # undef HAVE_MNTENT_H
 #else
-# define HAVE_STDBOOL_H 1
 # define HAVE_MNTENT_H 1
 #endif /* ___digital__ && __unix__ */
 
@@ -168,6 +166,8 @@
 # error "Sorry, this libc version is not supported :("
 #endif
 
+// Don't perpetuate e2fsck crap into the headers.  Clean up e2fsck instead.
+
 #if defined __GLIBC__ || defined __UCLIBC__ \
 	|| defined __dietlibc__ || defined _NEWLIB_VERSION
 #include <features.h>
@@ -187,12 +187,10 @@
 #endif
 #endif
 
-#if (defined __digital__ && defined __unix__)
-#include <standards.h>
-#define HAVE_STANDARDS_H
-#include <inttypes.h>
-#define HAVE_INTTYPES_H
-#define PRIu32 "u"
+// Is this for non-linux systems, or what?
+
+#if !((__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1))
+#define lchown chown
 #endif
 
 /* uclibc does not implement daemon for no-mmu systems.
@@ -206,8 +204,9 @@
 #define BB_NOMMU
 #endif
 
-/* Need to implement fdprintf for platforms that haven't got dprintf. */
-/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
+/* Platforms that haven't got dprintf need to implement fdprintf() in
+ * libbb.  This would require a platform.c.  It's not going to be cleaned
+ * out of the tree, so stop saying it should be. */
 #define fdprintf dprintf
 
 /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
@@ -216,15 +215,16 @@
 #define FNM_LEADING_DIR 0
 #endif
 
-/* move to platform.c */
 #if (defined __digital__ && defined __unix__)
-/* use legacy setpgrp(pidt_,pid_t) for now..  */
+#include <standards.h>
+#define HAVE_STANDARDS_H
+#include <inttypes.h>
+#define HAVE_INTTYPES_H
+#define PRIu32 "u"
+
+/* use legacy setpgrp(pidt_,pid_t) for now.  move to platform.c */
 #define bb_setpgrp do{pid_t __me = getpid();setpgrp(__me,__me);}while(0)
-#else
-#define bb_setpgrp setpgrp()
-#endif
 
-/* This is needed on some non linux unices like Tru64 */
 #if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
 #define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
 #endif
@@ -238,4 +238,12 @@
 #define ADJ_TICK MOD_CLKB
 #endif
 
+#else
+#define bb_setpgrp setpgrp()
+#endif
+
+#if defined(__linux__) && !defined(BLKGETSIZE64)
+#define BLKGETSIZE64 _IOR(0x12,114,size_t)
+#endif
+
 #endif	/* platform.h	*/

Modified: trunk/busybox/libbb/copy_file.c
===================================================================
--- trunk/busybox/libbb/copy_file.c	2006-06-13 18:27:16 UTC (rev 15374)
+++ trunk/busybox/libbb/copy_file.c	2006-06-13 18:28:33 UTC (rev 15375)
@@ -20,13 +20,6 @@
 
 #include "libbb.h"
 
-/* Compiler version-specific crap that should be in a header file somewhere. */
-
-#if !((__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1))
-#define lchown chown
-#endif
-
-
 int copy_file(const char *source, const char *dest, int flags)
 {
 	struct stat source_stat;

Modified: trunk/busybox/util-linux/fdisk.c
===================================================================
--- trunk/busybox/util-linux/fdisk.c	2006-06-13 18:27:16 UTC (rev 15374)
+++ trunk/busybox/util-linux/fdisk.c	2006-06-13 18:28:33 UTC (rev 15375)
@@ -48,12 +48,6 @@
 #define BLKFLSBUF  _IO(0x12,97)    /* flush buffer cache */
 #define BLKSSZGET  _IO(0x12,104)   /* get block device sector size */
 
-/* Avoid conflicts with the 2.6 kernel headers, which define
- * _IOR rather differently */
-#undef _IOR
-#define _IOR(type,nr,size)      _IOC(_IOC_READ,(type),(nr),sizeof(size))
-#define BLKGETSIZE64 _IOR(0x12,114,uint64_t)
-
 /*
    fdisk.h
 */




More information about the busybox-cvs mailing list