Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8894
Modified Files:
ChangeLog configure.ac
Log Message:
- Revert patch from Christophe applied by Yura.
- Provide a realpath() alternative for systems which do not have it.
This is _much_ nicer as it avoids the horrible #ifdef gunk in the code...
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -p -r1.296 -r1.297
--- ChangeLog 9 Oct 2005 12:53:44 -0000 1.296
+++ ChangeLog 10 Oct 2005 12:55:11 -0000 1.297
@@ -8,6 +8,9 @@
into alternate chroot / other system still works. (Anton)
- ntfscmp: fix some corner cases and all memory leaks; handle corrupt
NTFS more gracefully. (Szaka)
+ - If the system does not have realpath(), supply our own dummy version
+ which just copies the string without any kind of checking or
+ expansion. (Anton)
07/10/2005 - 1.12.0 - Lots of fixes and enhancements!
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -p -r1.82 -r1.83
--- configure.ac 10 Oct 2005 11:04:56 -0000 1.82
+++ configure.ac 10 Oct 2005 12:55:11 -0000 1.83
@@ -317,9 +317,9 @@ AC_FUNC_STAT
AC_FUNC_STRFTIME
AC_FUNC_UTIME_NULL
AC_FUNC_VPRINTF
-AC_CHECK_FUNCS([atexit fdatasync hasmntopt memmove memset realpath regcomp setlocale \
- strcasecmp strchr strdup strerror strtol strtoul utime mbsinit \
- setxattr getopt_long ])
+AC_CHECK_FUNCS([atexit fdatasync getopt_long hasmntopt mbsinit memmove memset \
+ realpath regcomp setlocale setxattr strcasecmp strchr strdup strerror \
+ strtol strtoul utime])
# Makefiles to be created by configure.
AC_CONFIG_FILES([
|