(Logical change 1.336)
edge.strict_endians
cantab.net!aia21 2004-03-17 12:22:03 +00:00
parent 08bd36ca62
commit 0719c9de02
3 changed files with 13 additions and 1 deletions

View File

@ -20,6 +20,13 @@ xx/xx/2004 - 1.9.1-WIP
ntfsclone appropriately.
- Add new API mft.[hc]::ntfs_mft_record_{layout,format}() and make
mkntfs use it.
- Add new API device.[hc]::ntfs_device_partition_start_sector_get() and
make mkntfs use it.
- Provide a new command line option "-p" to mkntfs to allow the user to
specify the partition start sector manually.
- Fix mkntfs and ntfsclone to include sys/ioctl.h.
- Define the ioctls we use in ntfsclone if they are not defined, as it
is done in device.c.
11/04/2004 - 1.9.0 - Added ntfsresize relocation support and a lot of cleanups.
- In include/ntfs/*.h Wrap all #include "config.h" by #ifdef

View File

@ -48,6 +48,9 @@
/* Define to 1 if you have the <linux/fd.h> header file. */
#undef HAVE_LINUX_FD_H
/* Define to 1 if you have the <linux/hdreg.h> header file. */
#undef HAVE_LINUX_HDREG_H
/* Define to 1 if you have the <linux/major.h> header file. */
#undef HAVE_LINUX_MAJOR_H

4
configure vendored
View File

@ -20037,13 +20037,15 @@ fi
for ac_header in fcntl.h libintl.h limits.h locale.h mntent.h stddef.h \
stdint.h stdlib.h stdio.h stdarg.h string.h strings.h errno.h time.h \
unistd.h utime.h wchar.h getopt.h features.h endian.h byteswap.h \
sys/endian.h sys/param.h sys/ioctl.h sys/mount.h sys/stat.h \
sys/types.h sys/vfs.h linux/major.h linux/fd.h machine/endian.h
sys/types.h sys/vfs.h linux/major.h linux/fd.h linux/hdreg.h \
machine/endian.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
if eval "test \"\${$as_ac_Header+set}\" = set"; then