Only include sys/ioctl.h in libntfs/device.c if ./configure detected

it to be present.  (Christophe)
edge.strict_endians
antona 2005-08-19 16:01:15 +00:00
parent fa99ae3d0f
commit 0f3a85c8e3
2 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,9 @@ xx/xx/2005 - 1.12.0-WIP
ntfs_mft_record_alloc. (Yura)
- Make ntfsmount use new APIs for file and directory creation/deletion.
Implement utime operation. (Yura)
- Hard link mkfs.ntfs and mkfs.ntfs.8 with mkntfs and mkntfs.8 (Szaka).
- Hard link mkfs.ntfs and mkfs.ntfs.8 with mkntfs and mkntfs.8. (Szaka)
- Only include sys/ioctl.h in libntfs/device.c if ./configure detected
it to be present. (Christophe)
08/08/2005 - 1.11.2 - ntfsdecrypt now works and lots of fixes and improvements.

View File

@ -29,7 +29,9 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#ifdef HAVE_LINUX_FD_H
# include <linux/fd.h>
#endif