Update for 1.9.1 release.

(Logical change 1.337)
edge.strict_endians
cantab.net!aia21 2004-03-17 14:41:47 +00:00
parent f33bdf28a5
commit e5f05c8401
4 changed files with 16 additions and 13 deletions

View File

@ -1,4 +1,4 @@
xx/xx/2004 - 1.9.1-WIP
17/03/2004 - 1.9.1 - Make mkntfs create bootable volumes and fixes/updates.
- Update with SuSE 9.1 beta 1 versions of GNU build system.
- Fix warnings on powerpc architecture where it would seem char is
unsigned so comparisons with -1 cause a warning that comparison is
@ -28,7 +28,7 @@ xx/xx/2004 - 1.9.1-WIP
- Define the ioctls we use in ntfsclone if they are not defined, as it
is done in device.c.
11/04/2004 - 1.9.0 - Added ntfsresize relocation support and a lot of cleanups.
11/03/2004 - 1.9.0 - Added ntfsresize relocation support and a lot of cleanups.
- In include/ntfs/*.h Wrap all #include "config.h" by #ifdef
HAVE_CONFIG_H. (Suggested by Christophe.)
- Update doc/CodingStyle. (Suggested by Szaka.)

3
NEWS
View File

@ -1,6 +1,9 @@
Current news
============
mkntfs now creates bootable ntfs volumes so you can install Windows on an
ntfs volume created with mkntfs and Windows will manage to boot afterwards.
ntfsresize now supports relocation which generally means you are now able to
resize to any size you like (as long as there is enough free space). Note,
this modifies the command line options a little as well as the returned output

20
configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for ntfsprogs 1.9.1-WIP.
# Generated by GNU Autoconf 2.59 for ntfsprogs 1.9.1.
#
# Report bugs to <linux-ntfs-dev@lists.sourceforge.net>.
#
@ -423,8 +423,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='ntfsprogs'
PACKAGE_TARNAME='ntfsprogs'
PACKAGE_VERSION='1.9.1-WIP'
PACKAGE_STRING='ntfsprogs 1.9.1-WIP'
PACKAGE_VERSION='1.9.1'
PACKAGE_STRING='ntfsprogs 1.9.1'
PACKAGE_BUGREPORT='linux-ntfs-dev@lists.sourceforge.net'
ac_unique_file="config.h.in"
@ -955,7 +955,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures ntfsprogs 1.9.1-WIP to adapt to many kinds of systems.
\`configure' configures ntfsprogs 1.9.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1022,7 +1022,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of ntfsprogs 1.9.1-WIP:";;
short | recursive ) echo "Configuration of ntfsprogs 1.9.1:";;
esac
cat <<\_ACEOF
@ -1170,7 +1170,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
ntfsprogs configure 1.9.1-WIP
ntfsprogs configure 1.9.1
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@ -1184,7 +1184,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by ntfsprogs $as_me 1.9.1-WIP, which was
It was created by ntfsprogs $as_me 1.9.1, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@ -1904,7 +1904,7 @@ fi
# Define the identity of the package.
PACKAGE='ntfsprogs'
VERSION='1.9.1-WIP'
VERSION='1.9.1'
cat >>confdefs.h <<_ACEOF
@ -23045,7 +23045,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
This file was extended by ntfsprogs $as_me 1.9.1-WIP, which was
This file was extended by ntfsprogs $as_me 1.9.1, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -23108,7 +23108,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
ntfsprogs config.status 1.9.1-WIP
ntfsprogs config.status 1.9.1
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"

View File

@ -22,7 +22,7 @@
#
AC_PREREQ(2.59)
AC_INIT([ntfsprogs],[1.9.1-WIP],[linux-ntfs-dev@lists.sourceforge.net])
AC_INIT([ntfsprogs],[1.9.1],[linux-ntfs-dev@lists.sourceforge.net])
AC_CANONICAL_HOST([])
AC_CANONICAL_TARGET([])
AC_CONFIG_SRCDIR([config.h.in])