AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
December 2008

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2008.12.18 04:56 "tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 05:13 "Re: tiffvers.h - TIFFLIB_RELEASE macro addition", by Lee Howard
2008.12.18 05:31 "Re: tiffvers.h - TIFFLIB_RELEASE macro addition", by Bob Friesenhahn
2008.12.18 06:00 "Re: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 16:16 "Re: tiffvers.h - TIFFLIB_RELEASE macro addition", by Bob Friesenhahn
2008.12.18 18:59 "Re: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 19:04 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Lee Howard
2008.12.18 19:18 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Edward Lam
2008.12.18 19:20 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 19:28 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Lee Howard
2008.12.18 19:35 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 20:11 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 20:42 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Bob Friesenhahn
2008.12.18 21:56 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.18 22:05 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Bob Friesenhahn
2008.12.19 02:26 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.19 03:12 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Bob Friesenhahn
2008.12.21 16:03 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Jay Berkenbilt
2008.12.21 16:10 "Re: 3.9.0 release", by Jay Berkenbilt
2008.12.21 15:35 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Jay Berkenbilt
2008.12.21 15:57 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Jay Berkenbilt
2008.12.21 16:14 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Frank Warmerdam
2008.12.21 16:44 "Re: 3.9.0 release, Was: tiffvers.h - TIFFLIB_RELEASE macro addition", by Jay Berkenbilt

2008.12.21 16:10 "Re: 3.9.0 release", by Jay Berkenbilt

In case anyone is interested, there are a small handful of tests that
I run to verify ABI compatibility, and I'll share them with the list.

 * Run diff -uw on all the public header files:

   tiff.h
   tiffconf.h
   tiffio.h
   tiffvers.h
   tiffio.hxx

   to make sure there were no changes to structures or function
   arguments.  Addition of new interfaces are okay, but changes to or
   removals of old interfaces are not.  Changes to structures are not
   okay.  Changes like replacing one type with another type of the
   same size are fine.  For example, this change is innocuous.

-typedef uint32 tstrip_t;	/* strip number */
-typedef uint32 ttile_t;	/* tile number */
+typedef uint32 tstrile_t;       /* strip or tile number */
+typedef tstrile_t tstrip_t;     /* strip number */
+typedef tstrile_t ttile_t;      /* tile number */

 * Run diff -uw on tif_dirinfo.c and carefully check any changes to
   the tiffFieldInfo table.  Additions of new entries are fine, but
   changes to old entries are not.  Changes here constitute ABI
   changes since they change the interpretation of arguments to
   TIFFSetField and TIFFGetField.

 * Run several applications against all the images in tiff-samples
   compiled with an older version and run with a newer version of the
   shared library.  I use at least display from imagemagick, gthumb
   from gnome, tiffgt from the tiff distribution, and sometimes other
   things.  I make sure to try applications that read the tiff files
   in various ways.  Lots of the gnome programs use the RGBA
   interfaces while some of the others use scanline-based functions.

I also run make check, but the test suite is extremely minimal right
now, so I don't put too much value in it yet.

--Jay

-- 
Jay Berkenbilt <ejb@ql.org>