From 6b66bce89db3e1f9987fd64226130fd8264f0760 Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Thu, 4 Mar 2004 16:59:58 +0000 Subject: [PATCH] update (Logical change 1.291) --- ChangeLog | 6 ++++++ ntfsprogs/Makefile.in | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2e2c3089..cf49e581 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,12 @@ xx/xx/2004 - 1.8.6-WIP - In include/ntfs/*.h Wrap all #include "config.h" by #ifdef HAVE_CONFIG_H. (Suggested by Christophe.) - Update doc/CodingStyle. (Suggested by Szaka.) + - Fix mkntfs for large volumes where the number of clusters would + exceed the maximum of 32 bits and mkntfs would segfault. Now we + increase the cluster size until the number of clusters no longer + exceeds 32 bits or the maximum cluster size is reached. We then + exit with an appropriate error message. (Thanks to Szaka for the + bug report.) 27/02/2004 - 1.8.5 - Springclean of the build process, cleanups, bug fixes - Fixup ntfsinfo a little bit and give its manpage a small update to diff --git a/ntfsprogs/Makefile.in b/ntfsprogs/Makefile.in index 3e283e46..a0f7e0d5 100644 --- a/ntfsprogs/Makefile.in +++ b/ntfsprogs/Makefile.in @@ -146,10 +146,10 @@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ -@REALLYSTATIC_TRUE@AM_LIBS = $(top_srcdir)/libntfs/.libs/libntfs.a @REALLYSTATIC_FALSE@AM_LIBS = $(top_srcdir)/libntfs/libntfs.la -@REALLYSTATIC_TRUE@AM_LFLAGS = -static +@REALLYSTATIC_TRUE@AM_LIBS = $(top_srcdir)/libntfs/.libs/libntfs.a @REALLYSTATIC_FALSE@AM_LFLAGS = $(all_libraries) +@REALLYSTATIC_TRUE@AM_LFLAGS = -static @REALLYSTATIC_TRUE@STATIC_LINK = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ @REALLYSTATIC_FALSE@LIBTOOL_LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@