]> git.wh0rd.org - dump.git/blobdiff - compat/include/bsdcompat.h
Update the location of dump home page (to the sourceforge one).
[dump.git] / compat / include / bsdcompat.h
index a29421e18a41825b064fe19ead6aa18981edf3dd..8aad39790066845569e9338e6ec39c65d9a26e0e 100644 (file)
@@ -2,12 +2,14 @@
  *     Ported to Linux's Second Extended File System as part of the
  *     dump and restore backup suit
  *     Remy Card <card@Linux.EU.Org>, 1994-1997
- *      Stelian Pop <pop@cybercable.fr>, 1999
+ *     Stelian Pop <pop@cybercable.fr>, 1999-2000
  *
+ *     $Id: bsdcompat.h,v 1.9 2000/01/21 10:17:41 stelian Exp $
  */
 
 #include <config.h>
 #include <sys/time.h>
+#include <dirent.h>
 
 #define        __dead          volatile
 
@@ -107,23 +109,14 @@ struct dinode {
  * This is the 4.4BSD directory entry structure
  */
 #define DIRBLKSIZ      DEV_BSIZE
+#ifndef MAXNAMLEN
 #define MAXNAMLEN      255
-
-struct direct {
-       __u32   d_ino;
-       __u16   d_reclen;
-#if 1
-       __u8    d_namlen;
-       __u8    d_type;
-#else
-       __u16   d_namlen;
 #endif
-       char            d_name[MAXNAMLEN + 1];
-};
 
 /*
- * File types
+ * For old libc.
  */
+#ifndef DT_UNKNOWN
 #define DT_UNKNOWN      0
 #define DT_FIFO                 1
 #define DT_CHR          2
@@ -132,7 +125,23 @@ struct direct {
 #define DT_REG          8
 #define DT_LNK         10
 #define DT_SOCK                12
-#define        DT_WHT          14
+#endif
+
+#ifndef d_fileno
+#define d_fileno d_ino
+#endif
+
+struct direct {
+       __u32   d_ino;
+       __u16   d_reclen;
+#if 1
+       __u8    d_namlen;
+       __u8    d_type;
+#else
+       __u16   d_namlen;
+#endif
+       char            d_name[MAXNAMLEN + 1];
+};
 
 /*
  * Convert between stat structure types and directory types.
@@ -205,6 +214,11 @@ struct old_bsd_inode {
        __u32           di_spare[4];
 };
 
+struct bsdtimeval {    /* XXX alpha-*-linux is deviant */
+       __u32   tv_sec;
+       __u32   tv_usec;
+};
+
 /*
  * This is the new (4.4) BSD inode structure
  * copied from the FreeBSD 2.0 <ufs/ufs/dinode.h> include file
@@ -217,9 +231,9 @@ struct new_bsd_inode {
                __u32           inumber;
        }               di_u;
        u_quad_t        di_size;
-       struct timeval  di_atime;
-       struct timeval  di_mtime;
-       struct timeval  di_ctime;
+       struct bsdtimeval       di_atime;
+       struct bsdtimeval       di_mtime;
+       struct bsdtimeval       di_ctime;
        daddr_t         di_db[NDADDR];
        daddr_t         di_ib[NIADDR];
        __u32           di_flags;