From 63982b15fd491261f4277a25d8c0ce1e34507838 Mon Sep 17 00:00:00 2001 From: antona Date: Fri, 24 Feb 2006 15:49:59 +0000 Subject: [PATCH] Fix compilation on FreeBSD. (Christophe) --- ChangeLog | 1 + libntfs/device.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 51e14881..5dda5c29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -122,6 +122,7 @@ copes with this and even chkdsk does not detect or fix this so we have to cope with it, too. Thanks to a Pawel for reporting the problem. (Anton) + - Fix compilation on FreeBSD. (Christophe) 10/10/2005 - 1.12.1 - Minor fix to location of mount.ntfs-fuse and mkfs.ntfs. diff --git a/libntfs/device.c b/libntfs/device.c index 929a02f5..23d2c511 100644 --- a/libntfs/device.c +++ b/libntfs/device.c @@ -50,6 +50,9 @@ #ifdef HAVE_SYS_IOCTL_H #include #endif +#ifdef HAVE_SYS_PARAM_H +#include +#endif #ifdef HAVE_SYS_MOUNT_H #include #endif