* libtiff 4.0.0alpha4 released.
* HOWTO-RELEASE: Improved release instructions.
This commit is contained in:
parent
cd06c91a13
commit
aeb4c8be72
@ -1,3 +1,9 @@
|
|||||||
|
2009-08-27 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||||
|
|
||||||
|
* libtiff 4.0.0alpha4 released.
|
||||||
|
|
||||||
|
* HOWTO-RELEASE: Improved release instructions.
|
||||||
|
|
||||||
2009-08-24 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
2009-08-24 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||||
|
|
||||||
* man/{TIFFClose.3tiff,raw2tiff.1,tiffcmp.1,tiffsplit.1}: Applied
|
* man/{TIFFClose.3tiff,raw2tiff.1,tiffcmp.1,tiffsplit.1}: Applied
|
||||||
|
113
HOWTO-RELEASE
113
HOWTO-RELEASE
@ -1,54 +1,113 @@
|
|||||||
HOWTO-RELEASE:
|
HOWTO-RELEASE:
|
||||||
|
|
||||||
Notes on releasing. You will need appropriate autoconf, automake and libtool
|
Notes on releasing.
|
||||||
utilities to release a package.
|
|
||||||
|
0. Make sure that you have current FSF releases of autoconf, automake,
|
||||||
|
and libtool packages installed under a common installation prefix
|
||||||
|
and that these tools are in your executable search path prior to
|
||||||
|
any other installed versions. Versions delivered with Linux may be
|
||||||
|
altered so it is best to install official FSF releases. GNU 'm4'
|
||||||
|
1.4.6 or later is needed in order to avoid bugs in m4. These
|
||||||
|
packages may be downloaded from the following ftp locations:
|
||||||
|
|
||||||
|
autoconf - ftp://ftp.gnu.org/pub/gnu/autoconf
|
||||||
|
automake - ftp://ftp.gnu.org/pub/gnu/automake
|
||||||
|
libtool - ftp://ftp.gnu.org/pub/gnu/libtool
|
||||||
|
|
||||||
|
Release builds should only be done on a system with a functioning
|
||||||
|
and correctly set system clock and on a filesystem which accurately
|
||||||
|
records file update times. Use of GNU make is recommended.
|
||||||
|
|
||||||
1. Commit any unsaved changes.
|
1. Commit any unsaved changes.
|
||||||
|
|
||||||
2. "make clean"
|
2. Create html/vX.X.html. Take ChangeLog entries and html-ify in there.
|
||||||
|
|
||||||
3. Create html/vX.X.html. Take ChangeLog entries and html-ify in there.
|
|
||||||
Easist thing to do is take html/vX.(X-1).html and use it as a template.
|
Easist thing to do is take html/vX.(X-1).html and use it as a template.
|
||||||
Add that file to the list of EXTRA_DIST files in the html/Makefile.am.
|
Add that file to the list of EXTRA_DIST files in the html/Makefile.am.
|
||||||
|
|
||||||
3.5. Update html/index.html to refer to this new page as the current release.
|
3. Update html/index.html to refer to this new page as the current release.
|
||||||
|
|
||||||
4. Increment version in configure.ac. Put 'alpha' or 'beta' after
|
4. Increment the release version in configure.ac. Put 'alpha' or
|
||||||
the version, if applicable.
|
'beta' after the version, if applicable. For example:
|
||||||
|
|
||||||
eg.
|
4.0.0
|
||||||
3.5.7
|
or
|
||||||
or
|
4.0.0beta
|
||||||
3.5.8beta
|
|
||||||
|
|
||||||
Version should be updated in two places: in the second argument of the
|
Version should be updated in two places: in the second argument of the
|
||||||
AC_INIT macro and in LIBTIFF_xxx_VERSION variables.
|
AC_INIT macro and in LIBTIFF_xxx_VERSION variables.
|
||||||
|
|
||||||
5. ./autogen.sh
|
5. Update library ELF versioning in configure.ac (LIBTIFF_CURRENT,
|
||||||
|
LIBTIFF_REVISION, and LIBTIFF_AGE). These numbers have nothing to
|
||||||
|
do with the libtiff release version numbers.
|
||||||
|
|
||||||
6. sh configure
|
Note that as of libtiff 4.X, proper ELF versioning is used so
|
||||||
|
please follow the rules listed in configure.ac. At a bare minimum,
|
||||||
|
you should increment LIBTIFF_REVISION for each release so that
|
||||||
|
installed library files don't overwrite existing files. If APIs
|
||||||
|
have been added, removed, or interface structures have changed,
|
||||||
|
then more care is required.
|
||||||
|
|
||||||
7. make release -- this will update "RELEASE-DATE" and "VERSION" in the top
|
6. Add an entry to Changelog similar to:
|
||||||
level dir, and libtiff/tiffvers.h.
|
|
||||||
|
|
||||||
8. Please verify that the version info in RELEASE-DATE, VERSION and
|
* libtiff 4.0.0alpha released.
|
||||||
libtiff/tiffvers.h is right.
|
|
||||||
|
|
||||||
9. make; make distcheck (to test).
|
7. In the source tree do
|
||||||
|
|
||||||
10. make distclean
|
./autogen.sh
|
||||||
|
|
||||||
11. cvs commit
|
This step may be skipped if you have already been using a
|
||||||
|
maintainer build with current autoconf, automake, and libtool
|
||||||
|
packages. It is only needed when updating tool versions.
|
||||||
|
|
||||||
12. cvs tag Release-v3-5-7 (or the appropriate name for the release)
|
8. It is recommended (but not required) to build outside of the source
|
||||||
|
tree so that the source tree is kept in a pristine state. This
|
||||||
|
also allows sharing the source directory on several networked
|
||||||
|
systems. For example:
|
||||||
|
|
||||||
|
mkdir libtiff-build
|
||||||
|
cd libtiff-build
|
||||||
|
/path/to/libtiff/configure --enable-maintainer-mode
|
||||||
|
|
||||||
|
otherwise do
|
||||||
|
|
||||||
|
./configure --enable-maintainer-mode
|
||||||
|
|
||||||
|
9. In the build tree do
|
||||||
|
|
||||||
|
make release
|
||||||
|
|
||||||
|
This will update "RELEASE-DATE", "VERSION", and libtiff/tiffvers.h
|
||||||
|
in the source tree.
|
||||||
|
|
||||||
|
10. In the source tree, verify that the version info in RELEASE-DATE,
|
||||||
|
VERSION and libtiff/tiffvers.h is right.
|
||||||
|
|
||||||
|
11. In the build tree do
|
||||||
|
|
||||||
|
make
|
||||||
|
make distcheck
|
||||||
|
|
||||||
|
If 'make distcheck' fails, then correct any issues until it
|
||||||
|
succeeds.
|
||||||
|
|
||||||
13. configure; make dist
|
|
||||||
Two files with names tiff-version.tar.gz and tiff-version.zip will
|
Two files with names tiff-version.tar.gz and tiff-version.zip will
|
||||||
be created in the top level package directory.
|
be created in the top level build directory.
|
||||||
|
|
||||||
14. Copy to ftp.remotesensing.org ftp site.
|
12. In the source tree do
|
||||||
scp tiff-*.tar.gz tiff-*.zip \
|
|
||||||
frankw@upload.osgeo.org:/osgeo/download/libtiff
|
'cvs commit'.
|
||||||
|
|
||||||
|
13. In the source tree do
|
||||||
|
|
||||||
|
cvs tag Release-v4-0-0
|
||||||
|
|
||||||
|
(or the appropriate name for the release)
|
||||||
|
|
||||||
|
14. Copy release packages from the build tree to the
|
||||||
|
ftp.remotesensing.org ftp site.
|
||||||
|
|
||||||
|
scp tiff-*.tar.gz tiff-*.zip \
|
||||||
|
frankw@upload.osgeo.org:/osgeo/download/libtiff
|
||||||
|
|
||||||
15. Announce to list, tiff@lists.maptools.org
|
15. Announce to list, tiff@lists.maptools.org
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
20080518
|
20090827
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -x
|
set -x
|
||||||
#libtoolize --force --copy
|
libtoolize --force --copy
|
||||||
aclocal -I ./m4
|
aclocal -I ./m4
|
||||||
autoheader
|
autoheader
|
||||||
automake --foreign --add-missing --copy
|
automake --foreign --add-missing --copy
|
||||||
|
24
configure
vendored
24
configure
vendored
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for LibTIFF Software 4.0.0beta3.
|
# Generated by GNU Autoconf 2.64 for LibTIFF Software 4.0.0beta4.
|
||||||
#
|
#
|
||||||
# Report bugs to <tiff@lists.maptools.org>.
|
# Report bugs to <tiff@lists.maptools.org>.
|
||||||
#
|
#
|
||||||
@ -698,8 +698,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='LibTIFF Software'
|
PACKAGE_NAME='LibTIFF Software'
|
||||||
PACKAGE_TARNAME='tiff'
|
PACKAGE_TARNAME='tiff'
|
||||||
PACKAGE_VERSION='4.0.0beta3'
|
PACKAGE_VERSION='4.0.0beta4'
|
||||||
PACKAGE_STRING='LibTIFF Software 4.0.0beta3'
|
PACKAGE_STRING='LibTIFF Software 4.0.0beta4'
|
||||||
PACKAGE_BUGREPORT='tiff@lists.maptools.org'
|
PACKAGE_BUGREPORT='tiff@lists.maptools.org'
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@ -1495,7 +1495,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures LibTIFF Software 4.0.0beta3 to adapt to many kinds of systems.
|
\`configure' configures LibTIFF Software 4.0.0beta4 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@ -1570,7 +1570,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of LibTIFF Software 4.0.0beta3:";;
|
short | recursive ) echo "Configuration of LibTIFF Software 4.0.0beta4:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@ -1733,7 +1733,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
LibTIFF Software configure 4.0.0beta3
|
LibTIFF Software configure 4.0.0beta4
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@ -2457,7 +2457,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by LibTIFF Software $as_me 4.0.0beta3, which was
|
It was created by LibTIFF Software $as_me 4.0.0beta4, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@ -3384,7 +3384,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='tiff'
|
PACKAGE='tiff'
|
||||||
VERSION='4.0.0beta3'
|
VERSION='4.0.0beta4'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@ -3451,12 +3451,12 @@ fi
|
|||||||
LIBTIFF_MAJOR_VERSION=4
|
LIBTIFF_MAJOR_VERSION=4
|
||||||
LIBTIFF_MINOR_VERSION=0
|
LIBTIFF_MINOR_VERSION=0
|
||||||
LIBTIFF_MICRO_VERSION=0
|
LIBTIFF_MICRO_VERSION=0
|
||||||
LIBTIFF_ALPHA_VERSION=beta3
|
LIBTIFF_ALPHA_VERSION=beta4
|
||||||
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
|
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
|
||||||
LIBTIFF_RELEASE_DATE=`date +"%Y%m%d"`
|
LIBTIFF_RELEASE_DATE=`date +"%Y%m%d"`
|
||||||
|
|
||||||
LIBTIFF_CURRENT=5
|
LIBTIFF_CURRENT=5
|
||||||
LIBTIFF_REVISION=0
|
LIBTIFF_REVISION=1
|
||||||
LIBTIFF_AGE=0
|
LIBTIFF_AGE=0
|
||||||
LIBTIFF_VERSION_INFO=$LIBTIFF_CURRENT:$LIBTIFF_REVISION:$LIBTIFF_AGE
|
LIBTIFF_VERSION_INFO=$LIBTIFF_CURRENT:$LIBTIFF_REVISION:$LIBTIFF_AGE
|
||||||
|
|
||||||
@ -18918,7 +18918,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by LibTIFF Software $as_me 4.0.0beta3, which was
|
This file was extended by LibTIFF Software $as_me 4.0.0beta4, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@ -18982,7 +18982,7 @@ Report bugs to <tiff@lists.maptools.org>."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
LibTIFF Software config.status 4.0.0beta3
|
LibTIFF Software config.status 4.0.0beta4
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
47
configure.ac
47
configure.ac
@ -25,7 +25,7 @@ dnl OF THIS SOFTWARE.
|
|||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_PREREQ(2.64)
|
AC_PREREQ(2.64)
|
||||||
AC_INIT([LibTIFF Software],[4.0.0beta3],[tiff@lists.maptools.org],[tiff])
|
AC_INIT([LibTIFF Software],[4.0.0beta4],[tiff@lists.maptools.org],[tiff])
|
||||||
AC_CONFIG_AUX_DIR(config)
|
AC_CONFIG_AUX_DIR(config)
|
||||||
AC_CONFIG_MACRO_DIR(m4)
|
AC_CONFIG_MACRO_DIR(m4)
|
||||||
AC_LANG(C)
|
AC_LANG(C)
|
||||||
@ -42,31 +42,42 @@ dnl Don't fill the ALPHA_VERSION field, if not applicable.
|
|||||||
LIBTIFF_MAJOR_VERSION=4
|
LIBTIFF_MAJOR_VERSION=4
|
||||||
LIBTIFF_MINOR_VERSION=0
|
LIBTIFF_MINOR_VERSION=0
|
||||||
LIBTIFF_MICRO_VERSION=0
|
LIBTIFF_MICRO_VERSION=0
|
||||||
LIBTIFF_ALPHA_VERSION=beta3
|
LIBTIFF_ALPHA_VERSION=beta4
|
||||||
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
|
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
|
||||||
dnl This will be used with the 'make release' target
|
dnl This will be used with the 'make release' target
|
||||||
LIBTIFF_RELEASE_DATE=`date +"%Y%m%d"`
|
LIBTIFF_RELEASE_DATE=`date +"%Y%m%d"`
|
||||||
|
|
||||||
dnl Following version updating rules are quoted from the libtool manual.
|
dnl Libtool library revision control info
|
||||||
|
dnl See the libtool documentation under the heading "Libtool's versioning
|
||||||
|
dnl system" in order to understand the meaning of these fields
|
||||||
dnl
|
dnl
|
||||||
dnl - Update the version information only immediately before a public
|
dnl current
|
||||||
dnl release of your software. More frequent updates are unnecessary,
|
dnl The most recent interface number that this library implements.
|
||||||
dnl and only guarantee that the current interface number gets larger
|
dnl revision
|
||||||
dnl faster.
|
dnl The implementation number of the current interface.
|
||||||
|
dnl age
|
||||||
|
dnl The difference between the newest and oldest interfaces that
|
||||||
|
dnl this library implements. In other words, the library implements
|
||||||
|
dnl all the interface numbers in the range from number current -
|
||||||
|
dnl age to current.
|
||||||
dnl
|
dnl
|
||||||
dnl - If the library source code has not changed at all since the last
|
dnl Here are a set of rules to help you update your library version
|
||||||
dnl update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
|
dnl information:
|
||||||
dnl
|
dnl
|
||||||
dnl - If any interfaces have been added, removed, or changed since the
|
dnl 1. Start with version information of `0:0:0' for each libtool library.
|
||||||
dnl last update, increment CURRENT, and set REVISION to 0.
|
dnl 2. Update the version information only immediately before a public
|
||||||
dnl
|
dnl release of your software. More frequent updates are unnecessary, and
|
||||||
dnl - If any interfaces have been added since the last public release,
|
dnl only guarantee that the current interface number gets larger faster.
|
||||||
dnl then increment AGE.
|
dnl 3. If the library source code has changed at all since the last update,
|
||||||
dnl
|
dnl then increment revision (`c:r:a' becomes `c:r+1:a').
|
||||||
dnl - If any interfaces have been removed since the last public release,
|
dnl 4. If any interfaces have been added, removed, or changed since the last
|
||||||
dnl then set AGE to 0.
|
dnl update, increment current, and set revision to 0.
|
||||||
|
dnl 5. If any interfaces have been added since the last public release, then
|
||||||
|
dnl increment age.
|
||||||
|
dnl 6. If any interfaces have been removed since the last public release,
|
||||||
|
dnl then set age to 0.
|
||||||
LIBTIFF_CURRENT=5
|
LIBTIFF_CURRENT=5
|
||||||
LIBTIFF_REVISION=0
|
LIBTIFF_REVISION=1
|
||||||
LIBTIFF_AGE=0
|
LIBTIFF_AGE=0
|
||||||
LIBTIFF_VERSION_INFO=$LIBTIFF_CURRENT:$LIBTIFF_REVISION:$LIBTIFF_AGE
|
LIBTIFF_VERSION_INFO=$LIBTIFF_CURRENT:$LIBTIFF_REVISION:$LIBTIFF_AGE
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Latest Development Release</th>
|
<th>Latest Development Release</th>
|
||||||
<td><a href="v4.0.0.html">v4.0.0alpha</a></td>
|
<td><a href="v4.0.0.html">v4.0.0beta4</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Master Download Site</th>
|
<th>Master Download Site</th>
|
||||||
@ -128,7 +128,7 @@ Joris Van Damme and Lee Howard.
|
|||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
<p>
|
<p>
|
||||||
Last updated $Date: 2009-08-20 22:57:39 $.
|
Last updated $Date: 2009-08-27 17:40:50 $.
|
||||||
</p>
|
</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<UL>
|
<UL>
|
||||||
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
||||||
<B>Current Version</B>: v4.0.0<BR>
|
<B>Current Version</B>: v4.0.0<BR>
|
||||||
<B>Previous Version</B>: <A HREF=v3.8.2.html>v3.8.2</a><BR>
|
<B>Previous Version</B>: <A HREF=v3.9.0.html>v3.9.0</a><BR>
|
||||||
<B>Master FTP Site</B>: <A HREF="ftp://ftp.remotesensing.org/pub/libtiff">
|
<B>Master FTP Site</B>: <A HREF="ftp://ftp.remotesensing.org/pub/libtiff">
|
||||||
ftp.remotesensing.org</a>, directory pub/libtiff</A><BR>
|
ftp.remotesensing.org</a>, directory pub/libtiff</A><BR>
|
||||||
<B>Master HTTP Site</B>: <A HREF="http://download.osgeo.org/libtiff">
|
<B>Master HTTP Site</B>: <A HREF="http://download.osgeo.org/libtiff">
|
||||||
@ -142,6 +142,21 @@ Other important backward incompatible changes in the public API:
|
|||||||
|
|
||||||
<UL>
|
<UL>
|
||||||
|
|
||||||
|
<LI>Updated autotools: Autoconf 2.64, Automake 1.11, libtool
|
||||||
|
2.2.6.
|
||||||
|
|
||||||
|
<LI>Enabled support for Automake silent build rules
|
||||||
|
(--enable-silent-rules or 'make V=0')
|
||||||
|
|
||||||
|
<LI>Enabled support for Automake colorized and parallel tests.
|
||||||
|
|
||||||
|
<LI>Added detection of 64-bit integer types since libtiff 4.0
|
||||||
|
requires use of 64-bit signed and unsigned integer types.
|
||||||
|
|
||||||
|
<LI>Libtiff now provides a more comprehensive test suite with
|
||||||
|
over 72 tests, which may be executed on Unix-like systems, or
|
||||||
|
under Microsoft Windows using MinGW/MSYS or Cygwin.
|
||||||
|
|
||||||
</UL>
|
</UL>
|
||||||
|
|
||||||
<P><HR WIDTH=65% ALIGN=left>
|
<P><HR WIDTH=65% ALIGN=left>
|
||||||
@ -152,29 +167,36 @@ Other important backward incompatible changes in the public API:
|
|||||||
|
|
||||||
<UL>
|
<UL>
|
||||||
|
|
||||||
<LI>There is considerable change in some files
|
<LI>Patches/fixes made to stable libtiff (v3.9.0) are also
|
||||||
like tif_dirread and tif_dirwrite. These changes don't impact backwards
|
applied to 4.0.0. There are too many to list here. See the
|
||||||
compatibility, they are mostly a clean rewrite that does allow BigTIFF
|
distribution ChangeLog for a detailed change list.
|
||||||
support as well as somewhat more
|
|
||||||
robust reading of the unexpected already and will also serve future API
|
|
||||||
extension but does not impact current API or functionality in a negative way
|
|
||||||
that you need to know about.
|
|
||||||
|
|
||||||
<LI>Although there is still a functional definition for types like toff_t
|
<LI>There is considerable change in some files like
|
||||||
(file offset), tstrip_t (strip index number), etc, we recommend against
|
tif_dirread and tif_dirwrite. These changes don't impact
|
||||||
using these in newer code. We have learned that it is next to impossible to
|
backwards compatibility, they are mostly a clean rewrite that
|
||||||
use these consistently and make real abstraction of the binary format of
|
does allow BigTIFF support as well as somewhat more robust
|
||||||
these types. Instead, at a certain level we always end up doing casts
|
reading of the unexpected already and will also serve future
|
||||||
anyway, and taking the exact binary format into account, so these types are
|
API extension but does not impact current API or functionality
|
||||||
nothing but dangerously misleading and obfuscating. You do not need to
|
in a negative way that you need to know about.
|
||||||
update calling code that uses them, as 99.9% of such code will continue to
|
|
||||||
work. But we recommend against using them in newer calling code, and we
|
|
||||||
started replacing them with binary clear types like uint16, uint32 and such
|
|
||||||
in the library.
|
|
||||||
|
|
||||||
<LI>We do use and will continue to use one functional type that is an
|
<LI>Although there is still a functional definition for types
|
||||||
exception to the above rule, being tmsize_t. This is a signed memory size
|
like toff_t (file offset), tstrip_t (strip index number), etc,
|
||||||
type, i.e. it is int32 on 32bit machines, or int64 on 64bit machines.
|
we recommend against using these in newer code. We have
|
||||||
|
learned that it is next to impossible to use these
|
||||||
|
consistently and make real abstraction of the binary format of
|
||||||
|
these types. Instead, at a certain level we always end up
|
||||||
|
doing casts anyway, and taking the exact binary format into
|
||||||
|
account, so these types are nothing but dangerously misleading
|
||||||
|
and obfuscating. You do not need to update calling code that
|
||||||
|
uses them, as 99.9% of such code will continue to work. But we
|
||||||
|
recommend against using them in newer calling code, and we
|
||||||
|
started replacing them with binary clear types like uint16,
|
||||||
|
uint32 and such in the library.
|
||||||
|
|
||||||
|
<LI>We do use and will continue to use one functional type
|
||||||
|
that is an exception to the above rule, being tmsize_t. This
|
||||||
|
is a signed memory size type, i.e. it is int32 on 32bit
|
||||||
|
machines, or int64 on 64bit machines.
|
||||||
|
|
||||||
</UL>
|
</UL>
|
||||||
|
|
||||||
@ -197,7 +219,7 @@ Other important backward incompatible changes in the public API:
|
|||||||
<UL>
|
<UL>
|
||||||
</UL>
|
</UL>
|
||||||
|
|
||||||
Last updated $Date: 2008-05-18 16:25:50 $.
|
Last updated $Date: 2009-08-27 17:40:50 $.
|
||||||
|
|
||||||
</BODY>
|
</BODY>
|
||||||
</HTML>
|
</HTML>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.0beta1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
|
#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.0beta4\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
|
||||||
/*
|
/*
|
||||||
* This define can be used in code that requires
|
* This define can be used in code that requires
|
||||||
* compilation-related definitions specific to a
|
* compilation-related definitions specific to a
|
||||||
@ -6,4 +6,4 @@
|
|||||||
* version checking should be done based on the
|
* version checking should be done based on the
|
||||||
* string returned by TIFFGetVersion.
|
* string returned by TIFFGetVersion.
|
||||||
*/
|
*/
|
||||||
#define TIFFLIB_VERSION 20080518
|
#define TIFFLIB_VERSION 20090827
|
||||||
|
Loading…
Reference in New Issue
Block a user