parent
08bd36ca62
commit
0719c9de02
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue