Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv5724
Modified Files:
ChangeLog config.h.in configure configure.in
Log Message:
Global replacement of __[su]{8,16,32,64} with [su]{8,16,32,64} and layout.h define it.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -U2 -r1.63 -r1.64
--- ChangeLog 8 Jun 2002 14:12:00 -0000 1.63
+++ ChangeLog 2 Jul 2002 23:47:10 -0000 1.64
@@ -106,4 +106,7 @@
ntfs_lookup_inode_by_name(), and
ntfs_readdir().
+ - We now use u8, u16, u32, u64, s8, s16, s32, and s64 types and we
+ typedef them ourselves from the C99 standard uint8_t, etc types which
+ IMO are braindamaged.
12/03/2002 - 1.6.0 - More mkntfs options and cleanups.
Index: config.h.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/config.h.in,v
retrieving revision 1.22
retrieving revision 1.23
diff -U2 -r1.22 -r1.23
--- config.h.in 5 Jun 2002 20:38:11 -0000 1.22
+++ config.h.in 2 Jul 2002 23:47:10 -0000 1.23
@@ -154,4 +154,7 @@
#undef HAVE_STDARG_H
+/* Define if you have the <stdint.h> header file. */
+#undef HAVE_STDINT_H
+
/* Define if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
Index: configure
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure,v
retrieving revision 1.36
retrieving revision 1.37
diff -U2 -r1.36 -r1.37
--- configure 5 Jun 2002 20:38:11 -0000 1.36
+++ configure 2 Jul 2002 23:47:10 -0000 1.37
@@ -5814,7 +5814,7 @@
fi
-for ac_hdr in stdlib.h fcntl.h unistd.h errno.h sys/stat.h sys/ioctl.h \
- sys/types.h linux/types.h asm/byteorder.h sys/mount.h time.h \
- mntent.h stdio.h stdarg.h string.h getopt.h linux/major.h \
+for ac_hdr in stdint.h stdlib.h fcntl.h unistd.h errno.h sys/stat.h \
+ sys/ioctl.h sys/types.h linux/types.h asm/byteorder.h sys/mount.h \
+ time.h mntent.h stdio.h stdarg.h string.h getopt.h linux/major.h \
limits.h linux/fd.h wchar.h
do
Index: configure.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/configure.in,v
retrieving revision 1.32
retrieving revision 1.33
diff -U2 -r1.32 -r1.33
--- configure.in 5 Jun 2002 20:38:11 -0000 1.32
+++ configure.in 2 Jul 2002 23:47:10 -0000 1.33
@@ -97,7 +97,7 @@
dnl Checks for header files.
AC_HEADER_STDC
-AC_CHECK_HEADERS(stdlib.h fcntl.h unistd.h errno.h sys/stat.h sys/ioctl.h \
- sys/types.h linux/types.h asm/byteorder.h sys/mount.h time.h \
- mntent.h stdio.h stdarg.h string.h getopt.h linux/major.h \
+AC_CHECK_HEADERS(stdint.h stdlib.h fcntl.h unistd.h errno.h sys/stat.h \
+ sys/ioctl.h sys/types.h linux/types.h asm/byteorder.h sys/mount.h \
+ time.h mntent.h stdio.h stdarg.h string.h getopt.h linux/major.h \
limits.h linux/fd.h wchar.h)
|