parent
852af74c58
commit
6b66bce89d
|
@ -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
|
||||
|
|
|
@ -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 $@
|
||||
|
||||
|
|
Loading…
Reference in New Issue