Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31691
Modified Files:
ChangeLog configure.ac
Log Message:
Fix compilation and warnings in ntfsdecrypt.c on OSX/gcc4.0.1. The
compilation failure was because we use strnlen() which is gnu
specific and not present on my current version of OSX so ntfsdecrypt
now provides own version if it is not present on system. (Anton)
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -p -r1.306 -r1.307
--- ChangeLog 15 Oct 2005 21:48:37 -0000 1.306
+++ ChangeLog 15 Oct 2005 22:30:20 -0000 1.307
@@ -6,7 +6,7 @@ xx/xx/2005 - 1.12.2-WIP
- Rewrite gcc version detection logic using the -dumpversion option.
Tested on various OS and architectures and gcc versions from 2.95 to
4.0.1 with some weird ones like 3.5-blah thrown in, too. (Anton)
- - Fix bogus le16_to_cpu() which shouldbe le32_to_cpu() when accessing
+ - Fix bogus le16_to_cpu() which should be le32_to_cpu() when accessing
the attribute list entry attribute type in some places in
libntfs/attrib.c. (Anton)
- Fix silly bug introduced in 1.12.0 which breaks ntfsfix (and others
@@ -19,6 +19,10 @@ xx/xx/2005 - 1.12.2-WIP
distribution otherwise make test fails on released sources. Solution
is not perfect as it also adds the test/runlist-data/CVS directory
but it will do at least for me. (Anton)
+ - Fix compilation and warnings in ntfsdecrypt.c on OSX/gcc4.0.1. The
+ compilation failure was because we use strnlen() which is gnu
+ specific and not present on my current version of OSX so ntfsdecrypt
+ now provides own version if it is not present on system. (Anton)
10/10/2005 - 1.12.1 - Minor fix to location of mount.ntfs-fuse and mkfs.ntfs.
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -p -r1.88 -r1.89
--- configure.ac 15 Oct 2005 11:34:26 -0000 1.88
+++ configure.ac 15 Oct 2005 22:30:20 -0000 1.89
@@ -317,9 +317,9 @@ AC_FUNC_STAT
AC_FUNC_STRFTIME
AC_FUNC_UTIME_NULL
AC_FUNC_VPRINTF
-AC_CHECK_FUNCS([atexit fdatasync getopt_long hasmntopt mbsinit memmove memset \
- realpath regcomp setlocale setxattr strcasecmp strchr strdup strerror \
- strtol strtoul utime])
+AC_CHECK_FUNCS([atexit dup2 fdatasync getopt_long hasmntopt mbsinit memmove \
+ memset realpath regcomp setlocale setxattr strcasecmp strchr strdup \
+ strerror strnlen strtol strtoul utime])
# Makefiles to be created by configure.
AC_CONFIG_FILES([
|