xref: /libtiff-4.0.7/ChangeLog (revision 3adc3384)
12010-06-08  Bob Friesenhahn  <[email protected]>
2
3	* Update libtool to version 2.2.8.
4
5	* libtiff/tif_fax3.c (Fax3SetupState): Avoid under-allocation of
6	buffer due to integer overflow in TIFFroundup() and several other
7	potential overflows.  In conjunction with the fix to TIFFhowmany(),
8	fixes CVE-2010-1411.
9
10	* libtiff/tiffiop.h (TIFFhowmany): Return zero if parameters would
11	result in an integer overflow. This causes TIFFroundup() to also
12	return zero if there would be an integer overflow.
13
14	* contrib: Add an emacs formatting mode footer to all source files
15	so that emacs can be effectively used.
16
172010-06-03  Oliver Chen Feng <[email protected]>
18
19	* libtiff/tools/tiffcp.c: add a new option -x to force merged tiff
20	file PAGENUMBER value in sequence for users who care the page
21	sequence, this will also prevent tiff2pdf from creating pdf file from
22	the merged tiff file with wrong page sequence.
23
242010-05-08  Olivier Paquet  <[email protected]>
25
26	* libtiff/tif_dirread.c: Restored TIFFReadDirEntryFloat function in order
27	to add missing TIFF_SETGET_FLOAT case to TIFFFetchNormalTag.
28	* libtiff/tif_dirinfo.c: Use correct set_field_type for
29	TIFFTAG_PIXAR_FOVCOT so it is readable again (regression from 3.9.2).
30	http://bugzilla.maptools.org/show_bug.cgi?id=2192
31
322010-05-07  Frank Warmerdam  <[email protected]>
33
34	* libtiff/tif_jpeg.c: Ensure that quality is always set in
35	JPEGPreEncode(), not just when we want to output local tables.
36	Otherwise the quality used during compression may not be right and
37	might not match the tables in the tables tag.   This bug only occurs
38	when seeking between directories in the midst of writing blocks.
39	http://trac.osgeo.org/gdal/ticket/3539
40
412010-05-06  Andrey Kiselev  <[email protected]>
42
43	* html/man/TIFFGetField.3tiff.html, html/man/TIFFSetField.3tiff.html:
44	Regenerated from the source.
45
462010-05-05  Olivier Paquet  <[email protected]>
47
48	* libtiff/tif_print.c: Fixed printing of TIFFTAG_REFERENCEBLACKWHITE which
49	had stopped working. Also made it always print 6 floats instead of
50	2*SamplesPerPixel.
51	http://bugzilla.maptools.org/show_bug.cgi?id=2191
52	http://bugzilla.maptools.org/show_bug.cgi?id=2186
53	* man/TIFFGetField.3tiff, man/TIFFSetField.3tiff: Fixed doc to reflect the
54	fact that libtiff considers TIFFTAG_REFERENCEBLACKWHITE to be 6 floats.
55
562010-05-05  Frank Warmerdam  <[email protected]>
57
58	* libtiff/tif_jpeg.c: Fix to use memcmp(), not memcpy() when checking
59	if the jpeg table was written.  This is a fix for the last fix on 04-21.
60
612010-04-21  Frank Warmerdam  <[email protected]>
62
63	* libtiff/tif_jpeg.c: avoid preparing jpeg tables everytime
64	JPEGSetupEncode() is called if the tables already seem to be
65	established.  This prevents spurious updates and rewriting of
66	directories with jpegtables when doing updates to existing images.
67	http://trac.osgeo.org/gdal/ticket/3539
68
692010-04-20  Olivier Paquet  <[email protected]>
70
71	* libtiff/tif_dirinfo.c: Use correct set_field_type for
72	TIFFTAG_PIXAR_IMAGEFULLWIDTH, TIFFTAG_PIXAR_IMAGEFULLLENGTH,
73	TIFFTAG_PIXAR_MATRIX_WORLDTOSCREEN and TIFFTAG_PIXAR_MATRIX_WORLDTOCAMERA.
74	They were unreadable with TIFF_SETGET_UNDEFINED, a regression from 3.9.2.
75	http://bugzilla.maptools.org/show_bug.cgi?id=2139
76
772010-04-10  Bob Friesenhahn  <[email protected]>
78
79	* libtiff/tif_dir.c (_TIFFVSetField): Add a special error case for
80	when the tag count value is zero.  Error handling is still a
81	regression since in 3.9.2, empty tags are skipped (with a warning)
82	rather than returning a hard error and refusing to read the file.
83
84	* tools/ppm2tiff.c (main): While case for parsing comment line
85	requires extra parenthesis to work as expected.  Reported by
86	Thomas Sinclair.
87
882010-04-02  Frank Warmerdam  <[email protected]>
89
90	* libtiff/tif_read.c (primarily): Add support for
91	CHUNKY_STRIP_READ_SUPPORT where large strips are
92	read in chunks for applications using TIFFReadScanline().
93	This is intended to make it more practical work with very
94	large compressed one-strip files.   Feature is off by default.
95	Enable by defining CHUNK_STRIP_READ_SUPPORT as a macro.
96	http://trac.osgeo.org/gdal/ticket/3514
97
982010-03-31  Frank Warmerdam  <[email protected]>
99
100	* libtiff/tif_flush.c: Use TIFFRewriteDirectory() when flushing
101	directories so previously placed directories will be migrated to
102	the end of file if needed.
103
1042010-03-30  Frank Warmerdam  <[email protected]>
105
106	* libtiff/tif_lzw.c: change type of dec_bitsleft field to uint64
107	to support operating on strips/tiles of more than 256MB.
108	http://trac.osgeo.org/gdal/ticket/3512
109
1102010-03-10  Bob Friesenhahn  <[email protected]>
111
112	* libtiff/tif_aux.c (_TIFFCheckRealloc): Improve error message so
113	that it is clearly a memory allocation error message, and also
114	includes the size of the allocation request.
115
1162010-02-22  Lee Howard  <[email protected]>
117
118	* libtiff/tif_jpeg.c: Do not generate a JPEGTables tag when creating
119	the JPEG TIFF as is is not required in order to prevent it from
120	being unused and filled with invalid data.  (Leave it to be
121	generated by later activity.)
122	http://bugzilla.maptools.org/show_bug.cgi?id=2135
123	* tools/tiff2pdf.c: Write the JPEG SOI headers into the TIFF strip
124	data rather than skipping them.  This fixes the ability to view in
125	Acrobat Reader, Evince, and Ghostscript.
126	http://bugzilla.maptools.org/show_bug.cgi?id=2135
127	* libtiff/tif_fax3.c: Don't return error on badly-terminated MMR
128	strips.
129	http://bugzilla.maptools.org/show_bug.cgi?id=2029
130
1312009-12-03  Frank Warmerdam  <[email protected]>
132
133	* libtiff/tif_jpeg.c: Made JPEGDecodeRaw() check for buffer overruns.
134	Made so that when working with downsampled images a stub function
135	reporting an error is used for tif_decoderow.  We cannot meaningfully
136	support reading scanlines in this situation.  (#1936)
137
138	* libtiff/tif_jpeg.c: Ensure that tif_scanlinesize is computed after
139	resetting of the upsampling values (gdal:#3259).
140	http://bugzilla.maptools.org/show_bug.cgi?id=1936
141
1422009-11-30  Frank Warmerdam  <[email protected]>
143
144	* contrib/dbs/tiff-grayscale.c, contrib/tif-palette.c,
145	tools/ras2tiff.c: Fix resource leaks on error.
146	http://bugzilla.maptools.org/show_bug.cgi?id=2121
147
148	* libtiff/tif_{aux.c,dir.c,dir.h,dirinfo.c}: Return to handling
149	TIFFTAG_REFERENCEBLACKWHITE as a field in the TIFF directory instead
150	of as a custom(generic) field to avoid a potential reentrancy problem.
151	http://bugzilla.maptools.org/show_bug.cgi?id=2125
152
153	* libtiff/tif_color.c, libtiff/tif_getimage.c, libtiff/tiffio.h,
154	man/TIFFcolor.3tiff: Make TIFFDisplay argument in TIFFCIELabToRGBInit
155	const, and display_sRGB static and const.
156	http://bugzilla.maptools.org/show_bug.cgi?id=2124
157
1582009-11-04  Bob Friesenhahn  <[email protected]>
159
160	* libtiff 4.0.0alpha5 released.
161
1622009-11-03  Bob Friesenhahn  <[email protected]>
163
164	* tools/tiffcrop.c: Updated tiffcrop from Richard Nolde.  This
165	version has undergone substantial testing with arbitrary sample
166	bit depths.  Also eliminates GCC compilation warnings.
167
1682009-11-02  Bob Friesenhahn  <[email protected]>
169
170	* port/libport.h: Add extern declarations for getopt standard
171	globals.
172
1732009-10-31  Bob Friesenhahn  <[email protected]>
174
175	* libtiff/tif_lzw.c (LZWDecode, LZWDecodeCompat): Fix warnings
176	noticed in 64-bit build of libtiff with Visual Studio 2005.
177	Resolves "Bug 2067 - Visual Studio 2005 64-bit warnings in
178	tif_lzw.c", http://bugzilla.maptools.org/show_bug.cgi?id=2067
179
180	* libtiff/tif_pixarlog.c (PixarLogEncode): Fix non-important
181	warning noticed in Visual Studio 2005 build. Resolves "Bug 2068 -
182	Visual Studio 2005 64-bit warning in tif_pixarlog.c",
183	http://bugzilla.maptools.org/show_bug.cgi?id=2068
184
1852009-10-29  Bob Friesenhahn  <[email protected]>
186
187	* libtiff/tif_dirread.c: Eliminate GCC "dereferencing type-punned
188	pointer" warnings.
189
1902009-10-28  Bob Friesenhahn  <[email protected]>
191
192	* html/tools.html: Add manual page links, and a summary
193	description of tiffcrop.
194
1952009-10-07  Bob Friesenhahn  <[email protected]>
196
197	* configure.ac: x86_64 should use the same fill order as i386.
198
1992009-09-24  Bob Friesenhahn  <[email protected]>
200
201	* tools/tiffcrop.c, man/tiffcrop.1: New tiffcrop from Richard
202	Nolde.  Major updates to add significant functionality for reading
203	and writing tile based images with bit depths not a multiple of 8
204	which cannot be handled by tiffcp.
205
2062009-09-03  Bob Friesenhahn  <[email protected]>
207
208	* libtiff/tif_ojpeg.c (OJPEGWriteHeaderInfo): IJG JPEG 7 needs
209	do_fancy_upsampling=FALSE in order to read raw data.  Resolves
210	"Bug 2090 - OJPEG crash with libjpeg v7".
211	http://bugzilla.maptools.org/show_bug.cgi?id=2090
212
2132009-09-03  Frank Warmerdam  <[email protected]>
214
215	* libtiff/tif_getimage.c: Fixed error recognition handling in RGBA
216	interface when stoponerror is set.
217	http://bugzilla.maptools.org/show_bug.cgi?id=2071
218
2192009-08-30  Bob Friesenhahn  <[email protected]>
220
221	* tools/{tiffcrop.c,tiffgt.c}: Applied patch from Oden Eriksson to
222	fix build with gcc when using the "-Wformat
223	-Werror=format-security" flags.
224
2252009-08-29  Bob Friesenhahn  <[email protected]>
226
227	* test/{bmp2tiff_palette.sh, bmp2tiff_rgb.sh, gif2tiff.sh,
228	ppm2tiff_pbm.sh, ppm2tiff_pgm.sh, ppm2tiff_ppm.sh}: Additional
229	utilities tests.
230
2312009-08-28  Bob Friesenhahn  <[email protected]>
232
233	* tools/tiffinfo.c: tiffinfo should return error status to the
234	caller.  Register a private error callback to accomplish that.
235
236	* test/Makefile.am (TIFFIMAGES): Add test images in BMP, GIF, and
237	PNM formats so that we will be able to test more of the tools.
238	While adding these test images I notice that bmp2tiff and gif2tiff
239	only support ancient versions of their respective formats.
240
2412009-08-27  Bob Friesenhahn  <[email protected]>
242
243	* libtiff 4.0.0alpha4 released.
244
245	* HOWTO-RELEASE: Improved release instructions.
246
2472009-08-24  Bob Friesenhahn  <[email protected]>
248
249	* man/{TIFFClose.3tiff,raw2tiff.1,tiffcmp.1,tiffsplit.1}: Applied
250	fixes for "Bug 2023 - nroff errors in manual pages".
251	http://bugzilla.maptools.org/show_bug.cgi?id=2023
252
253	* tools/{rgb2ycbcr.c, tiff2rgba.c}: Applied fixes for "Bug 2079 -
254	CVE-2009-2347 libtiff: integer overflows in various inter-color
255	space conversion tools".
256	http://bugzilla.maptools.org/show_bug.cgi?id=2079
257
258	* libtiff/tif_print.c (TIFFPrintDirectory): Apply fix from Jay
259	Berkenbilt for "Bug 2024 - possible null pointer dereference with
260	one-line fix".
261	http://bugzilla.maptools.org/show_bug.cgi?id=2024
262
263	* libtiff/tif_dirread.c (TIFFReadCustomDirectory): Apply patch
264	from Jay Berkenbilt for "Bug 1895 - logic error in tif_dirread.c:
265	segfault after setting tdir_tag = IGNORE".
266	http://bugzilla.maptools.org/show_bug.cgi?id=1895
267
2682009-08-23  Bob Friesenhahn  <[email protected]>
269
270	* test/Makefile.am, test/tiffcrop*.sh: Split previously existing
271	tiffcrop.sh into a collection of many specific tests.  Re-wrote
272	all of the existing tests to be based on some simple shell
273	functions.  Make distcheck works again.
274
275	Export certain variables (MAKE, MAKEFLAGS, MEMCHECK) to tests and
276	added 'memcheck' and 'ptrcheck' targets to make it easy to run the
277	tests under valgrind.
278
2792009-08-21  Bob Friesenhahn  <[email protected]>
280
281	* test/tiffcp-logluv.sh: Fix test so that it works with a VPATH
282	build.
283
284	* test/Makefile.am (AUTOMAKE_OPTIONS): Colorized tests was not
285	actually activated since it needed to be enabled in this
286	Makefile.am.  Also activated parallel-tests mode since it offers
287	useful features such as per-test .log files and a summary test
288	report .log file.
289
2902009-08-20  Bob Friesenhahn  <[email protected]>
291
292	* configure.ac: Updated autotools.  Autoconf 2.64, Automake 1.11,
293	libtool 2.2.6.  Enabled support for silent build rules
294	(--enable-silent-rules or 'make V=0') and colorized tests.
295
296	* html/{index.html, v3.9.0.html}: Update for 3.9.0 release.
297
2982009-06-30  Frank Warmerdam  <[email protected]>
299
300	* tests/tiffcp-logluv.sh: minimal testing of sgilog compression.
301
302	* tools/tiffcp.c: add -c sgilog support.
303
304	* libtiff/tif_luv.c: correct return codes from encoderow to be
305	1 on success instead of zero.
306	http://bugzilla.maptools.org/show_bug.cgi?id=2069
307
308	* libtiff/tif_lzw.c: back out patch from #2065 and apply patch from
309	#1085 for a better underflow fix that errors properly.
310	http://bugzilla.maptools.org/show_bug.cgi?id=2065
311	http://bugzilla.maptools.org/show_bug.cgi?id=1985
312
3132009-06-26  Frank Warmerdam  <[email protected]>
314
315	* libtiff/tif_strip.c: Remove an inappropriate assertion that often
316	fails on oddly sized 12bit jpeg compressed ycbcr images.
317
3182009-06-22  Frank Warmerdam  <[email protected]>
319
320	* libtiff/tif_lzw.c: Fix buffer underflow bug.
321	http://bugzilla.maptools.org/show_bug.cgi?id=2065
322
3232009-06-21  Frank Warmerdam  <[email protected]>
324
325	* configure.ac, libtiff/tif_jpeg.c, libtiff/tif_jpeg_12.c: add support
326	for dual mode 8/12 bit jpeg support.
327
3282009-06-03  Frank Warmerdam  <[email protected]>
329
330	* libtiff/tif_write.c: do not override the planar configuration to be
331	contig for one sample files if planar configuration is already set.
332	http://bugzilla.maptools.org/show_bug.cgi?id=2057
333
3342009-06-02  Frank Warmerdam  <[email protected]>
335
336	* libtiff/libtiff.def: Add TIFFUnsetField.
337
3382009-05-03  Frank Warmerdam  <[email protected]>
339
340	* libtiff/{tif_jpeg.c,tif_ojpeg.c,tif_getimage.c}: Fixed various
341	error reports to use "%s" as format string.
342	http://trac.osgeo.org/gdal/ticket/2976
343
3442009-03-12  Frank Warmerdam  <[email protected]>
345
346	* libtiff/{tif_fax3.c,tif_jpeg.c,tif_ojpeg.c}: Fix printdir chaining
347	for some codecs (#2020).
348
3492009-02-12  Frank Warmerdam  <[email protected]>
350
351	* libtiff/tif_luv.c: Fix handling of tiled logluv images.
352	http://bugzilla.maptools.org/show_bug.cgi?id=2005
353
3542009-02-09  Frank Warmerdam  <[email protected]>
355
356	* libtiff/tif_dirread.c: Improve allocation safety when allocated
357	buffer for large tags.  (#1998)  Related to (#1993)
358
3592009-02-06  Frank Warmerdam  <[email protected]>
360
361	* tools/tiffcrop.c: Don't default image->res_unit to INCH.  Now the
362	test suite should pass.
363
3642009-02-05  Frank Warmerdam  <[email protected]>
365
366	* libtiff/tif_dirread.c: Re-incorporated a sanity check on tag size,
367	but at the 2GB boundary to avoid overflow on 32bit systems.
368	http://bugzilla.maptools.org/show_bug.cgi?id=1993
369
370	* libtiff/tif_dirread.c: Remove some assertions that blow due to
371	corrupt files rather than in response to library internal
372	inconsistencies.
373	http://bugzilla.maptools.org/show_bug.cgi?id=1995
374	http://bugzilla.maptools.org/show_bug.cgi?id=1991
375
376	* libtiff/tif_dirread.c: Fixed testing for failed result from
377	TIFFReadDirectoryFindFieldInfo().
378	http://bugzilla.maptools.org/show_bug.cgi?id=1992
379
3802009-01-23  Frank Warmerdam  <[email protected]>
381
382	* libtiff/tif_predict.c: Add support for 32bit integer horz. predictors.
383	http://bugzilla.maptools.org/show_bug.cgi?id=1911
384
385	* libtiff/tif_dirwrite.c: Fix byte swapping of next directory offset.
386
387	http://bugzilla.maptools.org/show_bug.cgi?id=1924
388
389	* tools/tiffcrop.c: initialize xres/yres values.
390
391	* test/*.sh - default ${srcdir} to local directory.
392
393	* test/common.sh - start verbose mode after common settings.
394
395	* libtiff/tif_dirinfo.c: Replace lfind() with local equivelent to
396	avoid type mismatches on different platforms.
397	http://bugzilla.maptools.org/show_bug.cgi?id=1889
398
3992009-01-22  Frank Warmerdam  <[email protected]>
400
401	* tools/{fax2tiff.c,thumbnail.c,tiff2pdf.c,tiff2ps.c,tiffdump.c,
402	tiffsplit.c}: avoid warnings, mostly 32bit/64bit casting issues.
403
404	* port,tools: Introduce libport.h, and include in tools if NEED_LIBPORT
405	defined, primarily to reduce prototype warnings on windows.
406
407	* libtiff/tif_dirinfo.c,tif_dirread.c: Avoid warnings
408	about unused parameters, and uninitialized variables.
409
4102009-01-21  Bob Friesenhahn  <[email protected]>
411
412	* test/common.sh: Execute tests like 'make VERBOSE=TRUE check' in
413	order to trace full execution detail while executing the test suite.
414
4152009-01-20  Frank Warmerdam  <[email protected]>
416
417	* tools/tiffsplit.c: fix sampleformat to be shortv instead of longv.
418
4192009-01-20  Bob Friesenhahn  <[email protected]>
420
421	* test/Makefile.am (CLEANFILES): Make sure that test output files
422	are removed by 'make clean'
423
424	* Update autotools for 4.0.0 beta3
425
426	* 4.0.0 beta3 produced.
427
4282009-01-12  Bob Friesenhahn  <[email protected]>
429
430	* test/tiffcrop.sh: New test script for tiffcrop from Richard
431	Nolde.
432
433	* tools/tiff2ps.c: Remove spurious message to stderr.
434
4352009-01-11  Bob Friesenhahn  <[email protected]>
436
437	* tools/tiff2ps.c: Incorporated significant functionality update
438	from Richard Nolde.  In particular, support for rotating the image
439	by 90, 180, 270, and 'auto' has been added.
440
441	* man/tiffcrop.1: Incorporated documentation updates from Richard
442	Nolde.
443
444	* tools/tiffcrop.c: Incorporated significant functionality update
445	from Richard Nolde.
446
4472008-12-31  Bob Friesenhahn  <[email protected]>
448
449	* libtiff/tiffio.h: GCC will now validate format specifications
450	for TIFFError(), TIFFErrorExt(), TIFFWarning(), and
451	TIFFWarningExt() in order to reveal bugs.
452
453	* Many fixes throughout to work better as a 64-bit build.
454
4552008-12-30  Bob Friesenhahn  <[email protected]>
456
457	* tools/{tiff2pdf.c, tiff2ps.c, tiffinfo.c}: Offset and length
458	tags now require 64-bit parameter rather than 32-bit.
459
460	* libtiff/tif_dirread.c: Fixed issues with unaligned access to
461	64-bit values.
462
463	* tools/thumbnail.c: Eliminate crash noticed while running test
464	suite.
465
4662008-12-29  Bob Friesenhahn  <[email protected]>
467
468	* libtiff/tif_ojpeg.c (OJPEGLibjpegJpegSourceMgrFillInputBuffer):
469	Initialize stack variables to avoid compiler warning.
470
471	* tools/tiffinfoce.c (main): Use toff_t for offset type when
472	retrieving offset of EXIF IFD.
473
474	* libtiff/tiffio.h: Undeprecate toff_t and restore its use in the
475	TIFFClientOpen() callback and other external function definitions.
476
477	* tools/tiffinfo.c (main): Offset to EXIF IFD requires a 64-bit
478	type now.  Fixes crash when dumping files containing an EXIF IFD.
479
480	* m4/libtool.m4: Update to libtool 2.2.6.
481
4822008-12-21  Frank Warmerdam  <[email protected]>
483
484	* libtiff/tif_dir.c, tiffio.h: Introduce TIFFUnsetField() function.
485
486	* libtiff/tif_jpeg.c: Avoid errors if the application writes a full
487	strip for the last partial strip in a jpeg compressed file.
488	http://bugzilla.maptools.org/show_bug.cgi?id=1981
489
4902008-10-29  Frank Warmerdam  <[email protected]>
491
492	* libtiff/tif_flush.c: Make sure that BEENWRITING is cleared when
493	we take the shortcut to only update the strip/tile offsets in place.
494	http://trac.osgeo.org/gdal/ticket/2621
495
4962008-10-21  Andrey Kiselev  <[email protected]>
497
498	* libtiff/tif_jbig.c: Support the JBIG-KIT 2.0 (compatibility with
499	the older versions retained).
500
5012008-10-09  Frank Warmerdam  <[email protected]>
502
503	* libtiff/tif_jpeg.c: Add #ifdefs for changes needed if using
504	IPP enabled version of libjpeg from Intel.
505	http://bugzilla.maptools.org/show_bug.cgi?id=1951
506
5072008-09-05  Andrey Kiselev  <[email protected]>
508
509	* tools/tiffsplit.c: Use byte counts of proper size (uint64).
510	Required for libtiff 4.0.
511
512	* tools/tiffsplit.c: Use dynamically allocated array instead of static
513	when constructing output file names.
514
5152008-09-03  Andrey Kiselev  <[email protected]>
516
517	* tools/tiffsplit.c: Get rid of unsafe strcpy()/strcat() calls when
518	doing the filename/path construction.
519
520	* tools/tiff2pdf.c: More appropriate format string in
521	t2p_write_pdf_string(); avoid signed/unsigned mismatch.
522
523	* libtiff/tif_lzw.c: Properly zero out the codetable. As per bug
524
525	http://bugzilla.maptools.org/show_bug.cgi?id=1929
526
527	* libtiff/tif_lzw.c: Properly zero out the string table. Fixes
528	CVE-2008-2327 security issue.
529
5302008-09-01  Frank Warmerdam  <[email protected]>
531
532	* libtiff/tif_dirread.c: Avoid unused TIFFReadDirEntryFloat() function.
533
534	* libtiff/tif_dirwrite.c: modified to write IFDs as either IFD8 or IFD
535	depending on whether the file is bigtiff or classic tiff.
536	http://bugzilla.maptools.org/show_bug.cgi?id=1917
537
5382008-08-12  Edward Lam  <[email protected]>
539
540	* tools/tiffdump.c: When compiling for Microsoft Windows, apply
541	consistent (__int64) casting when testing if _lseeki64 has
542	successfully seeked as requested.  This is necessary for large
543	file support to work since off_t is only 32-bit.
544
5452008-07-29  Frank Warmerdam  <[email protected]>
546
547	* tif_strip.c: Replace assertions related to samplesperpixel != 3 or
548	the subsampling values not being 1, 2 or 4 (for jpeg compressed images)
549	with control logic to return runtime errors (c/o Even Rouault) (#1927).
550
5512008-06-17  Frank Warmerdam  <[email protected]>
552
553	* tools/tiffcrop.c: Fix some portability problems.
554
555	* libtiff/tif_ojpeg.c: Use same jpeg/win32 boolean/FAR hacks as are
556	used in tif_jpeg.c.
557
558	* libtiff/tif_win32.c: Ensure TIFFOpenW() uses same FILE_SHARE flags
559	as TIFFOpen().
560
5612008-06-01  Frank Warmerdam  <[email protected]>
562
563	* libtiff/tif_dirwrite.c: Fix alignment problems affecting architectures
564	like Sparc/Solaris.
565	http://bugzilla.maptools.org/show_bug.cgi?id=1892
566
5672008-05-27  Frank Warmerdam  <[email protected]>
568
569	* libtiff.def: Add TIFFFindField
570	http://bugzilla.maptools.org/show_bug.cgi?id=1891
571
5722008-05-26  Frank Warmerdam  <[email protected]>
573
574	* tif_config.*.h, tiffconf.*.h: Remove SIZEOF_LONG definition, unused.
575
576	* li2008-04-15  Andrey Kiselev  <[email protected]>
577
578btiff/tif_win32.c: Replace custom Win32 memory api with generic
579	POSIX one.  No apparent value to use of GlobalAlloc() in the modern
580	age.  http://bugzilla.maptools.org/show_bug.cgi?id=1885
581
582	* libtiff/tiffconf.vc.h: Added JBIG_SUPPORT and MDI_SUPPORT items
583	in windows version (care of Edward Lam).
584
5852008-05-24  Frank Warmerdam  <[email protected]>
586
587	* tif_codec.c: Avoid NULL pointer dereferencing for exotic
588	compression codec codes.
589
590	* tif_dirwrite.c: fix potential memory leak.
591
592	* tif_dirread.c: Fix unchecked malloc result.
593
5942008-05-24  Bob Friesenhahn  <[email protected]>
595
596	* test {tiff2pdf.sh tiff2ps-EPS1.sh tiff2ps-PS1.sh tiff2ps-PS2.sh
597	tiff2ps-PS3.sh tiffcp-g3-1d-fill.sh tiffcp-g3-1d.sh
598	tiffcp-g3-2d-fill.sh tiffcp-g3-2d.sh tiffcp-g3.sh tiffcp-g4.sh
599	tiffcp-split-join.sh tiffcp-split.sh tiffcp-thumbnail.sh
600	tiffdump.sh tiffinfo.sh}: Added more test scripts based on
601	suggestions from Lee Howard posted to the tiff list on 13 Sep
602	2007.
603
6042008-05-23  Frank Warmerdam  <[email protected]>
605
606	* libtiff/tif_fax3.c: Add an assert in an effort to detect a
607	possible runtime problem reported by coverity.
608
609	* contrib/iptcutil/iptcutil.c: Fixed memory leak of str.
610
611	* tools/tiffcrop.c, man/tiffcrop.1: Major update from Richard Nolde.
612	http://bugzilla.maptools.org/show_bug.cgi?id=1888
613
614	* tools/tiffdither.c: remove dead onestrip code.  avoid memory leak.
615
616	* tools/rgb2ycbcr.c: fix memory leak of raster buffer.
617
618	* tools/tiffcp.c: Simplify inknames code to avoid pointless test.
619	Cleanup scanline allocation to avoid coverity warning.
620
621	* tools/thumbnail.c: Check for TIFFOpen() failure.
622
6232008-05-18  Frank Warmerdam  <[email protected]>
624
625	* libtiff/tif_dirinfo.c: Use TIFF_SETGET_ASCII for PIXAR_TEXTUREFORMAT
626	and PIXAR_WRAPMODES instead of TIFF_SETGET_UNDEFINED.  Not exactly clear
627	why this is needed.
628
6292008-05-09  Bob Friesenhahn  <[email protected]>
630
631	* Makefile.am (ACLOCAL_AMFLAGS): Libtool 2.2.4 does not like
632	"ACLOCAL_AMFLAGS=-I ./m4".  It wants "ACLOCAL_AMFLAGS=-I m4".
633
6342008-04-15  Andrey Kiselev  <[email protected]>
635
636	* test/: Test suite updated. Everything is passed now.
637
638	* libtiff/tif_dirinfo.c: Fixed description of the
639	TIFFTAG_NUMBEROFINKS tag.
640
6412008-04-14  Andrey Kiselev  <[email protected]>
642
643	* libtiff/{tif_dirread.c, tif_dirwrite.c, tiffiop.h}:
644	Get rid of some of "dereferencing type-punned" warnings by converting
645	tdir_offset field of TIFFDirEntry structure into union.
646
6472008-04-10  Andrey Kiselev  <[email protected]>
648
649	* libtiff/{tif_flush.c, tif_dirwrite.c, tiffio.h, tiffiop.h}:
650	TIFFRewriteField() renamed into _TIFFRewriteField() and moved out
651	from the public interface. Type of its 'count' parameter changed
652	from uint32 to tmsize_t.
653
654	* /libtiff/tiffiop.h: Make tif_nfields and tif_nfieldscompat fields
655	of the tiff structure have the size_t type instead of uint32.
656
6572008-04-09  Andrey Kiselev  <[email protected]>
658
659	* tools/tiffdump.c: Added support for MSVS 6.0.
660
661	* libtiff/tif_dirread.c: Use custom functions _TIFFUInt64ToFloat()
662	and _TIFFUInt64ToDouble() to convert 64-bit integers into floating
663	point values on MSVS 6.0 platform.
664
6652008-03-14  Frank Warmerdam  <[email protected]>
666
667	* tif_dirread.c: Removed sanity checks on tags larger than 4MB in
668	TIFFReadDirEntryArray() since they are interfering with seemingly
669	legitimate files.  http://trac.osgeo.org/gdal/ticket/2005
670
6712008-02-09  Joris Van Damme  <[email protected]>
672
673	* tif_dirread.c: Added handling for the case of number of values for
674	PageNumber tag different from 2 (previously resulted in an assert
675	indicating lack of handling and was forgotten about)
676
6772008-02-01  Frank Warmerdam  <[email protected]>
678
679	* libtiff/tif_jpeg.c: Do not try to fixup subsampling tags based on
680	the actual jpeg data stream if the first strip/tile has zero size.
681	This is the case when GDAL creates a new file with zero sizes, closes
682	and reopens it.
683
6842008-01-07  Frank Warmerdam  <[email protected]>
685
686	* tools/tiff2ps.c: fix up 64bit issues (from Edward Lam).
687
6882008-01-01  Frank Warmerdam  <[email protected]>
689
690	* libtiff/tif_dirwrite.c: #ifdef out lots of unused functions.
691
692	* Makefile.vc, libtiff/Makefile.vc, tools/Makefile.vc: Improve clean
693	targets.
694
695	* tools/tiffinfo.c, tools/tiffcmp.c, tools/gif2tiff.c, tools/bmp2tiff.c
696	tools/tiff2pdf.c: Fix 64-bit warnings when compiling under MSVC 2005
697	(x64).
698
699	* tools/tiffset.c: Changes to reflect the fact that TIFFFieldWithTag()
700	and TIFFFieldWithName() now return TIFFField pointers instead of
701	TIFFFieldInfo pointers.
702
703	* tools/tiffdump.c: Added ssize_t typedef on Windows since it doesn't
704	exist. This makes it compile again on Windows
705
706	* tif_aux.c, tif_getimage.c, tif_next.c, tif_predict.c, tif_win32.c,
707	tiffconf.vc.h: Various 64bit fixes from Edward Lam identified on win64.
708
709	* test/rewrite_tag.c: New test for TIFFRewriteField().
710
7112007-12-31  Frank Warmerdam  <[email protected]>
712
713	* tif_dirwrite.c: Added TIFFRewriteField().  This new function
714	rewrites one field "on disk" updating an existing directory
715	entry.  Lots of limitations still...
716
717	* tiffiop.h, tif_write.c, tif_dirread.c, tif_flush.c: Keep track of
718	TIFF_DIRTYSTRIP separately from TIFF_DIRTYDIRECT to indicate that
719	the strip offset/size values are dirty but nothing else about the
720	directory is dirty.  In flush handle "just stripmaps dirty" as a
721	special case that just rewrites these values without otherwise
722	modifying the directory on disk using TIFFRewriteField().
723
724	We also modify logic so that in update mode the directory is not
725	marked dirty on read, but only when something is changed.  This
726	means we need to keep track of updates to the stripmap stuff in
727	TIFFAppendToStrip().
728
7292007-12-10  Frank Warmerdam  <[email protected]>
730
731	* tif_jpeg.c: Improve ability to switch between encoding and decoding
732	in the jpeg code (gdal bug #2033).
733
7342007-11-23  Frank Warmerdam  <[email protected]>
735
736	* tif_dir.c, tif_dirread.c, tif_dirwrite.c, tif_read.c, tif_write.c,
737	tiffiop.h: Added TIFF_BUF4WRITE flag to indicate if contents of the
738	rawcp/rawcc buffer are for writing and thus may require flushing.
739	Necessary to distinguish whether they need to be written to disk when
740	in mixed read/write mode and doing a mixture of writing followed by
741	reading.  http://trac.osgeo.org/gdal/ticket/1758
742
7432007-11-23  Andrey Kiselev  <[email protected]>
744
745	* configure.com, libtiff/tif_vms.c: Better OpenVMS support. Patches
746	from Alexey Chupahin.
747
7482007-11-02  Frank Warmerdam  <[email protected]>
749
750	* tif_write.c: Rip out the fancy logic in TIFFAppendToStrip() for
751	establishing if an existing tile can be rewritten to the same location
752	by comparing the current size to all the other blocks in the same
753	directory.  This is dangerous in many situations and can easily
754	corrupt a file.  (observed in esoteric GDAL situation that's hard to
755	document).  This change involves leaving the stripbytecount[] values
756	unaltered till TIFFAppendToStrip().  Now we only write a block back
757	to the same location it used to be at if the new data is the same
758	size or smaller - otherwise we move it to the end of file.
759
760	* tif_dirwrite.c: Try to avoid writing out a full readbuffer of tile
761	data when writing the directory just because we have BEENWRITING at
762	some point in the past.  This was causing odd junk to be written out
763	in a tile of data when a single tile had an interleaving of reading
764	and writing with reading last.  (highlighted by gdal
765	autotest/gcore/tif_write.py test 7.
766
767	* tif_predict.c: use working buffer in PredictorEncodeTile to avoid
768	modifying callers buffer.
769	http://trac.osgeo.org/gdal/ticket/1965
770
771	* tif_predict.c/h: more fixes related to last item, keeping a
772	distinct pfunc for encode and decode cases as these were getting
773	mixed up sometimes.
774	http://trac.osgeo.org/gdal/ticket/1948
775
7762007-11-01  Frank Warmerdam  <[email protected]>
777
778	* tif_predict.c/h, tif_lzw.c, tif_zip.c: Improvements so that
779	predictor based encoding and decoding works in read-write update
780	mode properly.
781	http://trac.osgeo.org/gdal/ticket/1948
782
7832007-10-24  Joris Van Damme  <[email protected]>
784
785	* tif_dirread.c: Fixed problem with bogus file triggering
786	assert(td->td_planarconfig == PLANARCONFIG_CONTIG) in
787	ChopUpSingleUncompressedStrip
788
7892007-10-22  Joris Van Damme  <[email protected]>
790
791	* tif_jpeg.c: Resolved buffer incrementation bug that lead to faulty images
792	at best, access violation at worst, when subsampled JPEG compressed imagery
793	is decoded without the JPEG_COLORMODE feature
794
7952007-10-11  Frank Warmerdam  <[email protected]>
796
797	* html/index.html: Update "people responsible" section.
798
7992007-10-05  Frank Warmerdam  <[email protected]>
800
801	* tools/tiff2pdf.c: Fix problem with alpha setting in some cases
802	as reported on the mailing list.
803
8042007-10-01  Joris Van Damme  <[email protected]>
805
806	* changed some more incorrect %lud printf flags to %lu
807
8082007-09-29  Joris Van Damme  <[email protected]>
809
810	* tif_dirread.c: Strip chopping interfered badly with uncompressed
811	subsampled images because it tried to divide subsampled rowblocks,
812	leading to all sorts of errors throughout the library for these
813	images. Fixed by making strip chopping divide in row counts that
814	are a multiple of vertical subsampling value.
815
8162007-09-28  Joris Van Damme  <[email protected]>
817
818	* tif_dirread.c: Logical cast working around compiler warning
819
820	* tif_read.c: Correction of some error flags and parameter lists
821
8222007-09-27  Joris Van Damme  <[email protected]>
823
824	* tif_dirread.c: Made calculation of td_maxsamplevalue more robust
825	when dealing with large bitspersample values, shutting up purification
826	tools that warn about truncation, though it remains incorrect and
827	indicates a conceptual problem there.
828
829	* tif_open.c: Moved early exit in case of 'h' flag (to disable reading
830	of first IFD) to proper place because it badly interfered with memory
831	mapping, resulting in mapping flag even with dummy mapping functions
832	that returned 0 whilst at the same time the mapping tif_size wasn't
833	set, thus resulting in continuous incorrect beyond-eof errors.
834
8352007-09-24  Joris Van Damme  <[email protected]>
836
837	* tif_dirinfo.c: Fixed (MSVC) compiler reports about
838	inconsistent use of const in tiffFields and exifFields definition
839
8402007-09-20  Frank Warmerdam  <[email protected]>
841
842	* tif_dirwrite.c: Always write tile/strip offsets and sizes
843	using LONG8 type when output format is BigTIFF.  The
844	TIFFWriteDirectoryTagLongLong8Array() function was restructured
845	accordingly.
846
847	* tif_dirread.c: Improvements to error reporting text in
848	TIFFFetchDirectory().
849
8502007-09-19  Bob Friesenhahn  <[email protected]>
851
852	* test/images: Added a small collection of test images for use by
853	test programs and scripts.
854	* test/tiffinfo.sh: A trivial example test script.
855	* test/common.sh: Added small script for setting the environment
856	used by script-based tests.
857
8582007-08-24  Frank Warmerdam  <[email protected]>
859
860	* tif_dirwrite.c: Write the tif_nextdiroff value instead of a fixed
861	zero when writing directory contents to preserve the ability to
862	rewrite directories in place, even in the middle of a directory
863	chain.
864
865	* tif_dirinfo.c:  _TIFFMergeFields() now only merges in field
866	definitions that are missing.  Existing definitions are silently
867	ignored.
868
869	* tif_dirread.c: Add runtime error for fields for which no definition
870	is found (in addition to an assert for developers) in
871	TIFFFetchNormalTag().  Not sure if this is needed, but it seems
872	prudent.
873
8742007-08-10  Joris Van Damme  <[email protected]>
875
876	* libtiff/tif_getimage.c: removed SubsamplingHor and SubsamplingVer
877	from _TIFFRGBAImage structure to revert unwanted ABI change.
878
8792007-08-10  Joris Van Damme  <[email protected]>
880
881	* libtiff/tif_win32.c: use SetFilePointer instead of
882	SetFilePointerEx, as per bug
883
884	http://bugzilla.remotesensing.org/show_bug.cgi?id=1580
885
8862007-07-19  Andrey Kiselev  <[email protected]>
887
888	* libtiff/tif_stream.cxx: Put all callback functions declarations
889	inside extern "C" block.
890
891	* libtiff/{tif_lzw.c, tif_luv.c, tif_dumpmode.c, tif_print.c,
892	tif_read.c, tif_strip.c, tif_thunder.c}: Use "%I64d" printf()
893	formatter instead of "%lld" with MSVC compiler.
894
895	* libtiff/{tiffiop.h, tif_aux.c}:  Added _TIFFUInt64ToFloat() and
896	_TIFFUInt64ToDouble() functions.
897
8982007-07-18  Andrey Kiselev  <[email protected]>
899
900	* libtiff/tif_dirread.c: Handle the case of MSVC 6 when using 64-bit
901	integer constants.
902
903	* libtiff/{Makefile.am, Makefile.v}: Do not distribute tiffconf.h,
904	remove tif_config.h/tiffconf.h during cleaning. As per bug
905
906	http://bugzilla.remotesensing.org/show_bug.cgi?id=1573
907
908	* libtiff/tif_unix.c: Do not use O_LARGEFILE. As per bug
909
910	http://bugzilla.remotesensing.org/show_bug.cgi?id=1577
911
9122007-07-13  Andrey Kiselev  <[email protected]>
913
914	* libtiff 4.0.0alpha released.
915
9162007-07-12  Andrey Kiselev  <[email protected]>
917
918	* tools/tiff2pdf.c: Added missed extern optind as per bug
919
920	http://bugzilla.remotesensing.org/show_bug.cgi?id=1567
921
922	* libtiff/{tif_close.c, tif_dirinfo.c, tiffiop.c, tif_dirread.c,
923	tif_dir.h, tif_dir.c, tiffio.h}: Transition to the new-style tag
924	extending scheme completed.
925
9262007-07-11  Bob Friesenhahn  <[email protected]>
927
928	* libtiff/tif_stream.cxx: Adapt to use toff_t again.  Update to
929	use standard C++ library size types and attempt to detect overflow
930	cases.
931
9322007-07-08  Andrey Kiselev  <[email protected]>
933
934	* libtiff/{tif_jpeg.c, tif_dir.h, tif_dir.c, tif_dirinfo.c, tiffio.h,
935	tif_ojpeg.c, tif_print.c, tif_fax3.c, tif_dirread.c}: More work on new
936	tag extending scheme. Use the new scheme everywhere.
937
938	* libtiff/{tif_zip.c, tif_predict.c, tif_pixarlog.c, tif_luv.c,
939	tif_fax3.c, tif_dirread.c, tif_dirwrite.c, tif_close.c, tif_ojpeg.c,
940	tif_jpeg.c, tif_dirinfo.c, tif_dir.h, tiffio.h, tiffiop.h}:
941	TIFFFIeldInfo structure replaced with TIFFField structure.
942	TIFFFieldInfo retained for the backward compatibility.
943
9442007-07-05  Bob Friesenhahn  <[email protected]>
945
946	* tools/tiff2pdf.c: Fix a compile problem when JPEG_SUPPORT is not
947	defined.
948
9492007-07-04  Andrey Kiselev  <[email protected]>
950
951	* libtiff/{tif_dir.c, tiff.h, tiffio.h, libtiff.def}: Unused
952	TIFFReassignTagToIgnore() function and TIFFIgnoreSense enumeration
953	removed.
954
955	* libtiff/{tif_dirinfo.c, tif_fax3.c, tif_jbig.c, tif_jpeg.c}: Move
956	tags TIFFTAG_FAXRECVPARAMS, TIFFTAG_FAXSUBADDRESS,
957	TIFFTAG_FAXRECVTIME and TIFFTAG_FAXDCS to the common tag directory.
958	These tags are not codec-specific and relate to image content, so
959	process them as other normal tags.
960
961	* libtiff/{tiffio.h, tif_dir.h}: TIFFTagValue structure moved from the
962	public tiffio.h to private tif_dir.h.
963
964	* contrib/{acorn, mac-cw, mac-mpw}: Removed as unmaintained and
965	outdated.
966
9672007-07-03  Andrey Kiselev  <[email protected]>
968
969	* libtiff{tif_acorn.c, tif_apple.c, tif_atari.c, tif_msdos.c,
970	tif_win3.c}: Obsoleted portability stuff removed.
971
972	* tools/tiff2ps.c:  Added support 16-bit images as per bug
973
974	http://bugzilla.remotesensing.org/show_bug.cgi?id=1566
975
976	Patch from William Bader.
977
978	* tools/tiff2pdf.c: Fix for TIFFTAG_JPEGTABLES tag fetching and
979	significant upgrade of the whole utility as per bug
980
981	http://bugzilla.remotesensing.org/show_bug.cgi?id=1560
982
983	Now we don't need tiffiop.h in tiff2pdf anymore and will open output
984	PDF file using TIFFClientOpen() machinery as it is implemented
985	by Leon Bottou.
986
9872007-06-26  Bob Friesenhahn  <[email protected]>
988
989	* configure.ac: Fix typo when substituting value for unsigned 8 bit type.
990	Added support for a TIFF_PTRDIFF_T type to use when doing pointer arithmetic.
991	Added support for a TIFF_SSIZE_T in order to return memory sizes but still
992	allow returning -1 for errors.
993	* libtiff/tiffconf.vc.h: Add porting type defintions for WIN32.
994
9952007-06-25  Bob Friesenhahn  <[email protected]>
996
997	* port/strtoull.c: New porting function in case strtoull() is not
998	available on the target system.
999	* configure.ac: Add configure support for determining sized types
1000	in a portable way and performing necessary substitutions in
1001	tif_config.h and tiffconf.h.  Updated tiff.h to use the new
1002	definitions.
1003
10042007-04-27  Andrey Kiselev  <[email protected]>
1005
1006	* tools/tiff2pdf.c: Check the tmpfile() return status as per bug
1007
1008	http://bugzilla.remotesensing.org/show_bug.cgi?id=154
1009
10102007-04-07  Andrey Kiselev  <[email protected]>
1011
1012	* libtiff/{tif_dir.h, tif_dirread.c, tif_dirinfo.c, tif_jpeg.c,
1013	tif_fax3.c, tif_jbig.c, tif_luv.c, tif_ojpeg.c, tif_pixarlog.c,
1014	tif_predict.c, tif_zip.c}: Finally fix bug
1015
1016	http://bugzilla.remotesensing.org/show_bug.cgi?id=1274
1017
1018	by introducing _TIFFMergeFieldInfo() returning integer error status
1019	instead of void in case of problems with field merging (e.g., if the
1020	field with such a tag already registered). TIFFMergeFieldInfo() in
1021	public API remains void. Use _TIFFMergeFieldInfo() everywhere and
1022	check returned value.
1023
10242007-04-07  Frank Warmerdam  <[email protected]>
1025
1026	* contrib/addtiffo/tif_overview.c: Fix problems with odd sized output
1027	blocks in TIFF_DownSample_Subsampled() (bug 1542).
1028
10292007-04-06  Frank Warmerdam  <[email protected]>
1030
1031	* libtiff/tif_jpeg.c: Changed JPEGInitializeLibJPEG() so that it
1032	will convert from decompressor to compressor or compress to decompress
1033	if required by the force arguments.  This works around a problem in
1034	where the JPEGFixupTestSubsampling() may cause a decompressor to
1035	be setup on a directory when later a compressor is required with the
1036	force flag set.  Occurs with the addtiffo program for instance.
1037
10382007-04-06  Andrey Kiselev  <[email protected]>
1039
1040	* tools/tiffcrop.c, man/tiffcrop.1: Significant update in
1041	functionality from Richard Nolde. As per bug
1042
1043	http://bugzilla.remotesensing.org/show_bug.cgi?id=1525
1044
10452007-03-28  Frank Warmerdam  <[email protected]>
1046
1047	* libtiff/tif_fax3.c: "inline static" -> "static inline" for IRIC CC.
1048
10492007-03-17  Joris Van Damme  <[email protected]>
1050
1051	* start of BigTIFF upgrade - CVS HEAD unstable until further notice
1052
10532007-03-07  Joris Van Damme  <[email protected]>
1054
1055	* libtiff/tif_getimage.c: workaround for 'Fractional scanline' error reading
1056	OJPEG images with rowsperstrip that is not a multiple of vertical subsampling
1057	factor. This bug is mentioned in:
1058	http://bugzilla.remotesensing.org/show_bug.cgi?id=1390
1059	http://www.asmail.be/msg0054766825.html
1060
10612007-03-07  Joris Van Damme  <[email protected]>
1062
1063	* libtiff/tif_win32.c: made inclusion of windows.h unconditional
1064
1065	* libtiff/tif_win32.c: replaced preprocessor indication for consiously
1066	unused arguments by standard C indication for the same
1067
10682007-02-27  Andrey Kiselev  <[email protected]>
1069
1070	* libtiff/tif_dirread.c: Use uint32 type instead of tsize_t in byte
1071	counters in TIFFFetchData(). Should finally fix the issue
1072
1073	http://bugzilla.remotesensing.org/show_bug.cgi?id=890
1074
10752007-02-24  Andrey Kiselev  <[email protected]>
1076
1077	* tools/tiffset.c: Properly handle tags with TIFF_VARIABLE writecount.
1078	As per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1350
1079
1080	* libtiff/tif_dirread.c: Added special function to handle
1081	SubjectDistance EXIF tag as per bug
1082
1083	http://bugzilla.remotesensing.org/show_bug.cgi?id=1362
1084
1085	* tools/tiff2pdf.c: Do not assume inches when the resolution units
1086	do not specified. As per bug
1087
1088	http://bugzilla.remotesensing.org/show_bug.cgi?id=1366
1089
1090	* tools/{tiffcp.c, tiffcrop.c}: Do not change RowsPerStrip value if
1091	it was set as infinite. As per bug
1092
1093	http://bugzilla.remotesensing.org/show_bug.cgi?id=1368
1094
1095	* tools/tiffcrop.c, man/tiffcrop.1: New tiffcrop utility contributed
1096	by Richard Nolde. As per bug
1097
1098	http://bugzilla.remotesensing.org/show_bug.cgi?id=1383
1099
11002007-02-22  Andrey Kiselev  <[email protected]>
1101
1102	* libtiff/tif_dir.c: Workaround for incorrect TIFFs with
1103	ExtraSamples == 999 produced by Corel Draw. As per bug
1104
1105	http://bugzilla.remotesensing.org/show_bug.cgi?id=1490
1106
1107	* libtiff/{tif_dirread.c, tif_read.c}: Type of the byte counters
1108	changed from tsize_t to uint32 to be able to work with data arrays
1109	larger than 2GB. Fixes bug
1110
1111	http://bugzilla.remotesensing.org/show_bug.cgi?id=890
1112
1113	Idea submitted by Matt Hancher.
1114
11152007-01-31  Andrey Kiselev  <[email protected]>
1116
1117	* tools/tif2rgba.c: This utility does not work properly on big-endian
1118	architectures. It was fixed including the bug
1119
1120	http://bugzilla.remotesensing.org/show_bug.cgi?id=1149
1121
11222007-01-15  Mateusz Loskot <[email protected]>
1123
1124	* Submitted libtiff port for Windows CE platform
1125	* libtiff/tif_config.wince.h: Added configuration header for WinCE.
1126	* libtiff/tiffconf.wince.h: Ported old configuration header for WinCE.
1127	* libtiff/tif_wince.c: Added WinCE-specific implementation of some
1128	functons from tif_win32.c.
1129	* libtiff/tif_win32.c: Disabled some functions already reimplemented in tif_wince.c.
1130	* libtiff/tiffiop.h, port/lfind.c: Added conditional include of some
1131	standard header files for Windows CE build.
1132	* tools/tiffinfoce.c: Ported tiffinfo utility for Windows CE.
1133
11342006-11-19  Frank Warmerdam  <[email protected]>
1135
1136	* libtiff/tif_write.c: TIFFAppendToStrip() - clear sorted flag if
1137	we move a strip.
1138	http://bugzilla.remotesensing.org/show_bug.cgi?id=1359
1139
11402006-10-13  Andrey Kiselev  <[email protected]>
1141
1142	* libtiff/tif_dir.c: More fixes for vulnerabilities, reported
1143	in Gentoo bug ():
1144
1145	http://bugs.gentoo.org/show_bug.cgi?id=142383
1146
1147	* libtiff/contrib/dbs/xtiff/xtiff.c: Make xtiff utility compilable.
1148	Though it is still far from the state of being working and useful.
1149
11502006-10-12  Andrey Kiselev  <[email protected]>
1151
1152	* libtiff/tif_fax3.c: Save the state of printdir codec dependent
1153	method.
1154
1155	* libtiff/tif_jpeg.c: Save the state of printdir codec dependent method
1156	as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1273
1157
1158	* libtiff/tif_win32.c: Fixed problem with offset value manipulation
1159	as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1322
1160
1161	* libtiff/{tif_read.c, tif_jpeg.c, tif_dir.c}: More fixes for
1162	vulnerabilities, reported in Gentoo bug ():
1163
1164	http://bugs.gentoo.org/show_bug.cgi?id=142383
1165
11662006-09-28  Andrey Kiselev  <[email protected]>
1167
1168	* libtiff/{tif_fax3.c, tif_next.c, tif_pixarlog.c}: Fixed multiple
1169	vulnerabilities, as per	Gentoo bug ():
1170
1171	http://bugs.gentoo.org/show_bug.cgi?id=142383
1172
11732006-09-27  Frank Warmerdam  <[email protected]>
1174
1175	* libtiff/tif_lzw.c, libtiff/tif_zip.c: Fixed problems with mixing
1176	encoding and decoding on the same read-write TIFF handle.  The LZW
1177	code can now maintain encode and decode state at the same time. The
1178	ZIP code will switch back and forth as needed.
1179	http://bugzilla.remotesensing.org/show_bug.cgi?id=757
1180
11812006-09-20  Frank Warmerdam  <[email protected]>
1182
1183	* libtiff: Rename config.h.vc and tif_config.h.vc to config.vc.h and
1184	tif_config.vc.h for easier identification by folks using an IDE.
1185
11862006-07-25  Frank Warmerdam  <[email protected]>
1187
1188	* tif_msdos.c: Avoid handle leak for failed opens.  c/o Thierry Pierron
1189
11902006-07-19  Frank Warmerdam  <[email protected]>
1191
1192	* tif_dirwrite.c: take care not to flush out buffer of strip/tile
1193	data in _TIFFWriteDirectory if TIFF_BEENWRITING not set.  Relates
1194	to bug report by Peng Gao with black strip at bottom of images.
1195
11962006-07-12  Frank Warmerdam  <[email protected]>
1197
1198	* tif_dirwrite.c: make sure to use uint32 for wordcount in
1199	TIFFWriteNormanTag if writecount is VARIABLE2 for ASCII fields.
1200	It already seems to have been done for other field types.  Needed
1201	for "tiffset" on files with geotiff ascii text.
1202
12032006-07-04  Bob Friesenhahn  <[email protected]>
1204
1205	* {configure.ac, libtiff/tif_config.h.vc, libtiff/tif_jbig.c}
1206	(JBIGDecode): jbg_newlen is not available in older JBIG-KIT and
1207	its use does not appear to be required, so use it only when it is
1208	available.
1209
12102006-06-24  Andrey Kiselev  <[email protected]>
1211
1212	* libtiff/tif_dirinfo.c: Added missed EXIF tag ColorSpace (40961).
1213
1214	* libtiff/tif_dirread.c: Move IFD fetching code in the separate
1215	function TIFFFetchDirectory() avoiding code duplication in
1216	TIFFReadDirectory() and TIFFReadCustomDirectory().
1217
12182006-06-19  Frank Warmerdam  <[email protected]>
1219
1220	* tools/tiff2pdf.c: Fix handling of -q values.
1221	http://bugzilla.remotesensing.org/show_bug.cgi?id=587
1222
12232006-06-17  Frank Warmerdam  <[email protected]>
1224
1225	* tif_readdir.c: Added case in EstimateStripByteCounts() for tiled
1226	files.  Modified TIFFReadDirectory() to not invoke
1227	EstimateStripByteCounts() for case where entry 0 and 1 are unequal
1228	but one of them is zero.
1229	  http://bugzilla.remotesensing.org/show_bug.cgi?id=1204
1230
12312006-06-08  Andrey Kiselev  <[email protected]>
1232
1233	* libtiff/{tif_open.c, tif_dirread.c, tiffiop.h}: Move IFD looping
1234	checking code in the separate function TIFFCheckDirOffset().
1235
1236	* libtiff/tif_aux.c: Added _TIFFCheckRealloc() function.
1237
1238	* tools/tiffcmp.c: Fixed floating point comparison logic as per bug
1239
1240	http://bugzilla.remotesensing.org/show_bug.cgi?id=1191
1241
1242	* libtiff/tif_fax3.c: Fixed problems in fax decoder as per bug
1243
1244	http://bugzilla.remotesensing.org/show_bug.cgi?id=1194
1245
1246	* tools/tiff2pdf.c: Fixed buffer overflow condition in
1247	t2p_write_pdf_string() as per bug
1248
1249	http://bugzilla.remotesensing.org/show_bug.cgi?id=1196
1250
12512006-06-07  Andrey Kiselev  <[email protected]>
1252
1253	* {configure, configure.ac, libtiff/tif_jbig.c, tools/tiffcp.c}: Added
1254	support for JBIG compression scheme (34661 code) contributed by Lee
1255	Howard. As per bug
1256
1257	http://bugzilla.remotesensing.org/show_bug.cgi?id=896
1258
1259	* configure, configure.ac: OJPEG support enabled by default.
1260
1261	* contrib/ojpeg/: Removed. New OJPEG support does not need this patch.
1262
12632006-06-03  Bob Friesenhahn  <[email protected]>
1264
1265	* libtiff/{tif_dirinfo.c, tif_print.c} : Fix crash in
1266	TIFFPrintDirectory().  Joris Van Damme authored the fix.
1267
12682006-04-21  Andrey Kiselev  <[email protected]>
1269
1270	* tools/tiff2pdf.c: Unified line ending characters (always use '\n')
1271	as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1163
1272
1273	* README.vms, Makefile.am, configure.com, libtiff/{Makefile.am,
1274	tif_config.h-vms, tif_stream.cxx, tif_vms.c, tiffconf.h-vms}:
1275	Added support for OpenVMS by Alexey Chupahin, [email protected].
1276
12772006-04-20  Andrey Kiselev  <[email protected]>
1278
1279	* tools/{fax2ps.c, fax2tiff.c, ppm2tiff.c, ras2tiff.c, tiff2pdf.c}:
1280	Properly set the binary mode for stdin stream as per bug
1281	http://bugzilla.remotesensing.org/show_bug.cgi?id=1141
1282
1283	* man/{bmp2tiff.1, fax2ps.1, fax2tiff.1, gif2tiff.1, ras2tiff.1,
1284	raw2tiff.1, rgb2ycbcr.1, sgi2tiff.1, tiff2bw.1, tiff2pdf.1, tiff2ps.1,
1285	tiff2rgba.1, tiffcmp.1, tiffcp.1, tiffdither.1,	tiffdump.1, tiffgt.1,
1286	tiffset.1}: Improvements in page formatting as per bug
1287	http://bugzilla.remotesensing.org/show_bug.cgi?id=1140
1288
1289	* html/tools.html, html/man/Makefile.am, tools/tiff2pdf.c: Fixed
1290	typos as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1139
1291
12922006-04-18  Frank Warmerdam  <[email protected]>
1293
1294	* nmake.opt: use /EHsc for VS2005 compatibility.  Also define
1295	_CRT_SECURE_NO_DEPRECATE to avoid noise on VS2005.
1296
12972006-04-12  Joris Van Damme  <[email protected]>
1298
1299	* libtiff/tif_getimage.c: Added support for planarconfig separate
1300	non-subsampled YCbCr (i.e. separate YCbCr with subsampling [1,1])
1301
13022006-04-11  Joris Van Damme  <[email protected]>
1303
1304	* libtiff/tif_getimage.c: Revision of all RGB(A) put routines
1305	- Conversion of unassociated alpha to associated alpha now done with
1306	  more performant LUT, and calculation more correct
1307	- Conversion of 16bit data to 8bit data now done with
1308	  more performant LUT, and calculation more correct
1309	- Bugfix of handling of 16bit RGB with unassociated alpha
1310
13112006-04-11  Joris Van Damme  <[email protected]>
1312
1313	* libtiff/tif_getimage.c:
1314	- When there is no alpha, gtTileSeparate and gtStripSeparate allocated
1315	  buffer for alpha strile and filled it, only to never read it back.
1316	  Removed allocation and fill.
1317	- Minor rename of vars in gtTileSeparate and gtStripSeparate
1318	  anticipating planned functionality extension
1319
13202006-04-08  Joris Van Damme  <[email protected]>
1321
1322	* libtiff/tif_getimage.c: renamed pickTileContigCase to PickContigCase
1323	and pickTileSeparateCase to PickSeparateCase as both work on strips as
1324	well
1325
1326	* libtiff/tif_getimage.c: moved img->get selection from
1327	TIFFRGBAImageBegin into PickContigCase and PickSeparateCase to create
1328	logical hook for planned functionality extension
1329
13302006-04-08  Joris Van Damme  <[email protected]>
1331
1332	* libtiff/tif_ojpeg.c: resolved memory leak that was a consequence
1333	of inappropriate use of jpeg_abort instead of jpeg_destroy
1334
13352006-04-07  Joris Van Damme  <[email protected]>
1336
1337	* libtiff/tif_getimage.c: replaced usage of TIFFScanlineSize in
1338	gtStripContig with TIFFNewScanlineSize so as to fix buggy behaviour
1339	on subsampled images - this ought to get sorted when we feel brave
1340	enough to replace TIFFScanlineSize alltogether
1341
1342	* libtiff/tif_ojpeg.c: fixed bug in OJPEGReadSkip
1343
13442006-04-04  Joris Van Damme  <[email protected]>
1345
1346	* libtiff/tiffio.h: added new type tstrile_t
1347
1348	* libtiff/tif_dir.h: changed types of td_stripsperimage and td_nstrips
1349	to new tstrile_t, types of td_stripoffset and td_stripbytecount to
1350	toff_t*
1351
1352	* libtiff/tif_ojpeg.c: totally new implementation
1353
1354	* libtiff/tif_dirread.c: added several hacks to suit new support of
1355	OJPEG
1356
1357	* libtiff/tif_getimage.c: removed TIFFTAG_JPEGCOLORMODE handling
1358	of OJPEG images in favor of tif_getimage.c native handling of
1359	YCbCr and desubsampling
1360
13612006-03-29  Frank Warmerdam  <[email protected]>
1362
1363	* libtiff/tif_jpeg.c: JPEGVSetField() so that altering the photometric
1364	interpretation causes the "upsampled" flag to be recomputed.  Fixes
1365	peculiar bug where photometric flag had to be set before jpegcolormode
1366	flag.
1367
13682006-03-25  Joris Van Damme  <[email protected]>
1369
1370	* libtiff/tif_jpeg.c: strip size related bugfix in encode raw
1371
1372	* libtiff/tif_strip.c: temporarilly added two new versions of
1373	TIFFScanlineSize
1374	  - TIFFNewScanlineSize: proposed new version, after all related
1375	    issues and side-effects are sorted out
1376	  - TIFFOldScanlineSize: old version, from prior to 2006-03-21 change
1377	This needs further sorting out.
1378
13792006-03-25  Joris Van Damme  <[email protected]>
1380
1381	* contrib/addtiffo/tif_ovrcache.c: bugfix to correctly pass size
1382	of last truncated strip data to TIFFWriteEncodedStrip
1383
13842006-03-25  Joris Van Damme  <[email protected]>
1385
1386	* libtiff/{tif_jpeg.c, tif_strip.c}: bugfix of tif_jpeg decode raw
1387
13882006-03-25  Joris Van Damme  <[email protected]>
1389
1390	* libtiff/tif_getimage.c: bugfix/rewrite of putcontig8bitYCbCr22tile
1391
1392	* libtiff/tif_getimage.c: added putcontig8bitYCbCr12tile
1393
1394	* libtiff/tif_read.c: added support for new TIFF_NOREADRAW flag to
1395	prepare	the path for new tif_ojpeg.c
1396
13972006-03-23  Andrey Kiselev  <[email protected]>
1398
1399	* libtiff 3.8.2 released.
1400
1401	* tools/Makefile.am: Use runtime paths linker flags when rpath
1402	option enabled.
1403
14042006-03-21  Andrey Kiselev  <[email protected]>
1405
1406	* libtiff/libtiff.def: Added missed exports as per bug
1407	http://bugzilla.remotesensing.org/attachment.cgi?id=337
1408
1409	* contrib/addtiffo/Makefile.vc, libtiff/Makefile.vc, port/Makefile.vc,
1410	tools/Makefile.vc: Makefiles improvements as per bug
1411	http://bugzilla.remotesensing.org/show_bug.cgi?id=1128
1412
1413	* nmake.opt libtiff/{tif_config.h.vc, tif_unix.c, tiffio.h},
1414	tools/{fax2ps.c, fax2tiff.c, tiff2pdf.c}: Fixed win32 I/O functions
1415	usage as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1127
1416
1417	* libtiff/tif_strip.c: Take subsampling in account when calculating
1418	TIFFScanlineSize().
1419
1420	* tools/tiffcp.c: Do not set RowsPerStrip bigger than image length.
1421
14222006-03-17  Andrey Kiselev  <[email protected]>
1423
1424	* tools/fax2tiff.c: Fixed wrong TIFFerror() invocations as per bug
1425	http://bugzilla.remotesensing.org/show_bug.cgi?id=1125
1426
1427	* tools/fax2ps.c: Fixed reading the input stream from stdin as per bug
1428	http://bugzilla.remotesensing.org/show_bug.cgi?id=1124
1429
14302006-03-16  Andrey Kiselev  <[email protected]>
1431
1432	* libtiff/tiffiop.h: Added decalration for
1433	_TIFFSetDefaultCompressionState().
1434
1435	* libtiff/{tif_jpeg.c, tif_fax3.c, tif_zip.c, tif_pixarlog.c,
1436	tif_lzw.c, tif_luv.c}: Use _TIFFSetDefaultCompressionState() in all
1437	codec cleanup methods. As per bug
1438
1439	http://bugzilla.remotesensing.org/show_bug.cgi?id=1120
1440
14412006-03-15  Andrey Kiselev  <[email protected]>
1442
1443	* libtiff/tif_jpeg.c: Do not cleanup codec state in TIFFInitJPEG(). As
1444	per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1119
1445
1446	* tools/raw2tiff.c: Do not set RowsPerStrip larger than ImageLength.
1447	As per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1110
1448
1449	* libtiff/tiffiop.h: dblparam_t typedef removed; GLOBALDATA macro
1450	removed; move here the STRIP_SIZE_DEFAULT macro definition.
1451
1452	* libtiff/{tif_dirread.c, tif_strip.c}: Removed STRIP_SIZE_DEFAULT
1453	macro definition.
1454
1455	* libtiff/tif_dir.c: Use double type instead of dblparam_t.
1456
14572006-03-14  Andrey Kiselev  <[email protected]>
1458
1459	* libtiff/tif_dirread.c: Do not check the PlanarConfig tag presence
1460	in TIFFReadDirectory, because it is always set at the start of
1461	function and we allow TIFFs without that tag set.
1462
14632005-03-13  Andrey Kiselev  <[email protected]>
1464
1465	* libtiff 3.8.1 released.
1466
14672006-03-07  Andrey Kiselev  <[email protected]>
1468
1469	* libtiff/tif_dirread.c: Fixed error reporting in TIFFFetchAnyArray()
1470	function as per bug
1471	http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
1472
1473	* libtiff/tif_dirread.c: More wise check for integer overflow
1474	condition as per bug
1475	http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
1476
1477	* libtiff/{tif_jpeg.c, tif_pixarlog.c, tif_fax3.c, tif_zip.c}:
1478	Properly restore setfield/getfield methods in cleanup functions. As
1479	per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
1480
14812006-03-03  Andrey Kiselev  <[email protected]>
1482
1483	* libtiff/{tif_predict.c, tif_predict.h}: Added new function
1484	TIFFPredictorCleanup() to restore parent decode/encode/field methods.
1485
1486	* libtiff/{tif_lzw.c, tif_pixarlog.c, tif_zip.c}: Use
1487	TIFFPredictorCleanup() in codec cleanup methods. As per bug
1488
1489	http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
1490
1491	* libtiff/tif_dirread.c: Fixed integer overflow condition in
1492	TIFFFetchData() function. As per bug
1493
1494	http://bugzilla.remotesensing.org/show_bug.cgi?id=1102
1495
14962006-03-01  Andrey Kiselev  <[email protected]>
1497
1498	* libtiff/tif_ojpeg.c: Set the ReferenceBlackWhite with the
1499	TIFFSetField() method, not directly. As per bug
1500
1501	http://bugzilla.remotesensing.org/show_bug.cgi?id=1043
1502
1503	* tools/ppm2tiff.c: Added support for PBM files as per bug
1504	http://bugzilla.remotesensing.org/show_bug.cgi?id=1044
1505
15062006-02-27  Andrey Kiselev  <[email protected]>
1507
1508	* libtiff/tif_write.c: Small code rearrangement in TIFFWriteScanline()
1509	to avoid crash as per bug
1510
1511	http://bugzilla.remotesensing.org/show_bug.cgi?id=1081.
1512
15132006-02-26  Andrey Kiselev  <[email protected]>
1514
1515	* tools/tiff2pdf.c: Functions t2p_sample_rgbaa_to_rgb() and
1516	t2p_sample_rgba_to_rgb() was used in place of each other, that was
1517	resulted in problems with RGBA images with associated alpha.
1518	As per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1097
1519
15202006-02-23  Andrey Kiselev  <[email protected]>
1521
1522	* libtiff/tif_dirwrite.c: Properly write TIFFTAG_DOTRANGE tag as per
1523	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1088.
1524
1525	* libtiff/tif_print.c: Properly read TIFFTAG_PAGENUMBER,
1526	TIFFTAG_HALFTONEHINTS, TIFFTAG_YCBCRSUBSAMPLING and TIFFTAG_DOTRANGE
1527	tags as per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1088.
1528
1529	* tools/tiff2ps.c: Properly scale all the pages when converting
1530	multipage TIFF with /width/height/center options set. As per bug
1531
1532	http://bugzilla.remotesensing.org/show_bug.cgi?id=1080
1533
15342006-02-15  Andrey Kiselev  <[email protected]>
1535
1536	* tools/tiff2pdf.c: Do not create output file until all option checks
1537	will be done. As per bug
1538
1539	http://bugzilla.remotesensing.org/show_bug.cgi?id=1072
1540
1541	* tools/bmp2tiff.c: Added ability to create multipage TIFFs from the
1542	list of input files as per bug:
1543
1544	http://bugzilla.remotesensing.org/show_bug.cgi?id=1077
1545
15462006-02-09  Andrey Kiselev  <[email protected]>
1547
1548	* libtiff/tif_tile.c: Fix error reporting in TIFFCheckTile() as per
1549	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1063.
1550
1551	* tools/tiffgt.c: Avoid crashing in case of image unsupported by
1552	TIFFRGBAImage interface.
1553
1554	* libtiff/tif_color.c: Avoid overflow in case of wrong input as per
1555	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=1065.
1556
15572006-02-07  Frank Warmerdam  <[email protected]>
1558
1559	* tools/tiff2pdf.c: Fixed support for non-YCbCr encoded JPEG
1560	compressed TIFF files, per submission from Dan Cobra.
1561
15622006-02-07  Andrey Kiselev  <[email protected]>
1563
1564	* libtiff/{tif_dirread.c, tif_packbits.c, tif_win32.c}: Properly
1565	cast values to avoid warnings. As per bug
1566	http://bugzilla.remotesensing.org/show_bug.cgi?id=1033.
1567
1568	* libtiff/tif_dirinfo.c: Use TIFF_NOTYPE instead of 0 when
1569	appropriate. As per bug
1570	http://bugzilla.remotesensing.org/show_bug.cgi?id=1033.
1571
1572	* libtiff/tif_aux.c: Fixed type of temporary variable in
1573	_TIFFCheckMalloc() as per bug
1574	http://bugzilla.remotesensing.org/show_bug.cgi?id=1033.
1575
15762006-02-06  Andrey Kiselev  <[email protected]>
1577
1578	* libtiff/tif_aux.c: Return static array when fetching default
1579	YCbCrCoefficients (another problem, reported a the
1580	http://bugzilla.remotesensing.org/show_bug.cgi?id=1029 entry).
1581
15822006-02-03  Andrey Kiselev  <[email protected]>
1583
1584	* libtiff/tif_dir.c: Special handling for PageNumber, HalftoneHints,
1585	YCbCrSubsampling and DotRange tags as per bugs
1586
1587	http://bugzilla.remotesensing.org/show_bug.cgi?id=1029
1588	http://bugzilla.remotesensing.org/show_bug.cgi?id=1034
1589
1590	* libtiff/tif_dirread.c: Use _TIFFGetExifFieldInfo() instead of
1591	_TIFFGetFieldInfo() in TIFFReadEXIFDirectory() call as per bug
1592
1593	http://bugzilla.remotesensing.org/show_bug.cgi?id=1026.
1594
15952006-01-23  Andrey Kiselev  <[email protected]>
1596
1597	* libtool related stuff updated from the 2.1a branch.
1598
15992006-01-11  Frank Warmerdam  <[email protected]>
1600
1601	* tools/bmp2tiff,pal2rgb,ppm2tiff,ras2tiff,raw2tiff,sgi2tiff,
1602	tiff2bw,tiffcp: Fixed jpeg option processing so -c jpeg:r:50 works
1603	properly as per bug:
1604	http://bugzilla.remotesensing.org/show_bug.cgi?id=1025
1605
16062006-01-09  Bob Friesenhahn  <[email protected]>
1607
1608	* configure.ac: Fix with_default_strip_size comparison as reported
1609	by Norihiko Murase.
1610
16112006-01-08  Bob Friesenhahn  <[email protected]>
1612
1613	* test/Makefile.am (LIBTIFF): Due to linking against libtiff
1614	incorrectly, tests were not actually testing the uninstalled
1615	libtiff.  Now they are.
1616
16172006-01-04  Andrey Kiselev  <[email protected]>
1618
1619	* libtiff/tif_dirinfo.c: Change definitions for TIFFTAG_ICCPROFILE,
1620	TIFFTAG_PHOTOSHOP, TIFFTAG_RICHTIFFIPTC, TIFFTAG_XMLPACKET: readcount
1621	should be uint32 value.
1622
16232006-01-02  Bob Friesenhahn  <[email protected]>
1624
1625	* html/man/Makefile.am (htmldoc): Fix htmldoc rule so that it can
1626	be used if build directory is not the same as source directory.
1627	* man/{TIFFGetField.3tiff, TIFFSetField.3tiff}: Documented
1628	TIFFTAG_PHOTOSHOP, TIFFTAG_RICHTIFFIPTC, and TIFFTAG_XMLPACKET,
1629	and re-sorted tag names in alphabetical order.
1630
16312005-12-29  Andrey Kiselev  <[email protected]>
1632
1633	* libtiff 3.8.0 released.
1634
16352005-12-28  Bob Friesenhahn  <[email protected]>
1636
1637	* tools/bmp2tiff.c (main): Fixed warning regarding returning
1638	inconsistent types from a condition.
1639	* tools/tiffcmp.c (CheckLongTag): Eliminate warning due to printf
1640	format.
1641	* tools/bmp2tiff.c: Reduce compilation warnings on big-endian CPUs.
1642
16432005-12-28  Joris Van Damme  <[email protected]>
1644
1645	* html/{index.html, support.hml, libtiff.html}: Cleaned up HTML
1646
16472005-12-27  Andrey Kiselev  <[email protected]>
1648
1649	* libtiff/tiffio.h: Added VC_EXTRALEAN definition before including
1650	windows.h, to reduce the compile time.
1651
16522005-12-26  Bob Friesenhahn  <[email protected]>
1653
1654	* libtiff/tif_jpeg.c: Improve compilation under MinGW.
1655
16562005-12-26  Andrey Kiselev  <[email protected]>
1657
1658	* libtiff/{tif_dir.c, tif_dir.h, tif_dirread.c, tif_dirinfo.c}:
1659	tiffFieldInfo and exifFieldInfo arrays definitions moved back to
1660	tif_dirinfo.c; added _TIFFGetFieldInfo() and _TIFFGetExifFieldInfo()
1661	private functions to retrieve FieldInfo arrays.
1662
16632005-12-24  Bob Friesenhahn  <[email protected]>
1664
1665	* html/build.html: Added some additional instructions for when
1666	building using MSVC under Windows.  Also fixed two HTML syntax
1667	errors and used HTML Tidy to tidy up the HTML syntax and
1668	formatting.
1669
16702005-12-24  Andrey Kiselev  <[email protected]>
1671
1672	* libtiff/{tif_aux.c, tif_dir.c, tif_dir.h, tif_dirwrite.c,
1673	tif_print.c, tif_getimage.c}: Make InkSet, NumberOfInks, DotRange and
1674	StoNits tags custom.
1675
16762005-12-23  Andrey Kiselev  <[email protected]>
1677
1678	* libtiff/{tif_aux.c, tif_dir.c, tif_dir.h, tif_print.c}: Make
1679	WhitePoint tag custom.
1680
1681	* libtiff/{tif_dir.h, tiff.h}: More EXIF tags added.
1682
16832005-12-23  Joris Van Damme  <[email protected]>
1684
1685	* libtiff/tiffio.h: fixed typo that potentially resulted in
1686	redefininition of USE_WIN32_FILEIO
1687
1688	* libtiff/*: Added more 'dual-mode' error handling: Done TIFFWarning
1689	calls in core LibTiff.
1690
16912005-12-21  Andrey Kiselev  <[email protected]>
1692
1693	* libtiff/{tif_dir.c, tif_dir.h, tif_print.c}: Make RichTIFFIPTC,
1694	Photoshop and ICCProfile tags custom.
1695
16962005-12-21  Joris Van Damme  <[email protected]>
1697
1698	* libtiff/*, contrib/*: Added 'dual-mode' error handling, enabling
1699	newer code to get context indicator in error handler and still
1700	remain compatible with older code: Done TIFFError calls everywhere
1701	except in tools
1702
17032005-12-20  Andrey Kiselev  <[email protected]>
1704
1705	* tools/tiffcp.c: Added many error reporting messages; fixed integer
1706	overflow as per bug
1707
1708	http://bugzilla.remotesensing.org/show_bug.cgi?id=789
1709
17102005-12-16  Frank Warmerdam  <[email protected]>
1711
1712	* contrib/addtiffo/*: Major upgrade by Joris to support subsampled
1713	YCbCr images in jpeg compressed TIFF files.
1714
17152005-12-14  Andrey Kiselev  <[email protected]>
1716
1717	* tools/tiffcp.c: Return non-zero status when reading fails (again).
1718
17192005-12-13  Andrey Kiselev  <[email protected]>
1720
1721	* tools/tiffcp.c: Return non-zero status when reading fails.
1722
17232005-12-12  Andrey Kiselev  <[email protected]>
1724
1725	* libtiff/{tif_dir.h, tiff.h}: Added more EXIF tags.
1726
17272005-12-09  Andrey Kiselev  <[email protected]>
1728
1729	* libtiff/{tif_dir.c, tif_dir.h, tif_print.c}: Make XMLPacket tag
1730	custom.
1731
1732	* tools/tiffinfo.c: Print EXIF directory contents if exist.
1733
1734	* libtiff/tiff.h: Few EXIF tag numbers added.
1735
1736	* libtiff/{tif_dirinfo.c, tif_dirread.c, tif_dir.h, tif_dir.c,
1737	tiffio.h}: Preliminary support to read custom directories. New
1738	functions: TIFFReadCustomDirectory() and TIFFReadEXIFDirectory().
1739
17402005-12-07  Andrey Kiselev  <[email protected]>
1741
1742	* libtiff/{tif_dirinfo.c, tif_dirread.c, tif_dir.h, tif_dir.c}:
1743	More work to implement custom directory read support.
1744
1745	* libtiff/{tif_aux.c, tif_dirinfo.c, tif_dirread.c, tif_dir.h,
1746	tif_dir.c, tif_print.c}: Make YCbCrCoefficients and ReferenceBlackWhite
1747	tags custom.
1748
17492005-12-05  Andrey Kiselev  <[email protected]>
1750
1751	* libtiff/tif_dirread.c: One more workaround for broken
1752	StripByteCounts tag. Handle the case when StripByteCounts array filled
1753	with completely wrong values.
1754
17552005-11-30  Andrey Kiselev  <[email protected]>
1756
1757	* libtiff/tif_dirinfo.c: Release file descriptor in case of failure
1758	in the TIFFOpenW() function as per bug
1759
1760	http://bugzilla.remotesensing.org/show_bug.cgi?id=1003
1761
1762	* libtiff/tif_dirinfo.c: Correctly yse bsearch() and lfind()
1763	functions as per bug
1764
1765	http://bugzilla.remotesensing.org/show_bug.cgi?id=1008
1766
17672005-11-20  Frank Warmerdam  <[email protected]>
1768
1769	* tif_open.c, tiff.h, tiffdump.c: Incorporate preliminary support
1770	for MS MDI format.
1771	http://bugzilla.remotesensing.org/show_bug.cgi?id=1002
1772
1773	* .cvsignore: many files added, and a few update according
1774	to suggestion of Brad HArds on tiff mailing list.
1775
17762005-11-03  Frank Warmerdam  <[email protected]>
1777
1778	* libtiff/libtiff.def, tiffiop.h, tiffio.h: Made TIFFFreeDirectory
1779	public.
1780
17812005-10-31  Andrey Kiselev  <[email protected]>
1782
1783	* tools/fax2tiff.c: Properly calculate sizes of temporary arrays
1784	as per bug
1785
1786	http://bugzilla.remotesensing.org/show_bug.cgi?id=943
1787
1788	* tools/fax2tiff.c: Added option '-r' to set RowsPerStrip parameter
1789	as per bug
1790
1791	http://bugzilla.remotesensing.org/show_bug.cgi?id=944
1792
1793	* tools/tiffdump.c: Fixed typeshift and typemask arrays initialization
1794	problem as per bug
1795
1796	http://bugzilla.remotesensing.org/show_bug.cgi?id=946
1797
1798	* tools/bmp2tiff.c: Fixed possible integer overflow error as per bug
1799
1800	http://bugzilla.remotesensing.org/show_bug.cgi?id=965
1801
1802	* libtiff/tif_dirinfo.c: Make XResolution, YResolution and
1803	ResolutionUnit tags modifiable during write process. As per bug
1804
1805	http://bugzilla.remotesensing.org/show_bug.cgi?id=977
1806
1807	* tools/tiffsplit.c: Copy fax related fields over splitted parts
1808	as per bug
1809
1810	http://bugzilla.remotesensing.org/show_bug.cgi?id=983
1811
18122005-10-21  Frank Warmerdam  <[email protected]>
1813
1814	* tif_dirread.c: Don't try and split single strips into "0" strips
1815	in ChopUpSingleUncompressedStrip.  This happens in some degenerate
1816	cases (like 1x1 files with stripbytecounts==0 (gtsmall.jp2 embed tiff)
1817
18182005-10-20  Joris Van Damme  <[email protected]>
1819
1820	* tif_fax3.c: changed 'at scanline ...' style warning/errors
1821	with incorrect use of tif_row, to 'at line ... of
1822	strip/tile ...' style
1823
18242005-10-15  Frank Warmerdam  <[email protected]>
1825
1826	* tif_write.c: fixed setting of planarconfig as per bug report
1827	on the mailing list from Joris.
1828
18292005-10-07  Andrey Kiselev  <[email protected]>
1830
1831	* configure.ac, configure, nmake.opt, libtiff/{tif_config.h,
1832	tif_dirread.c}: Make the default strip size configurable via the
1833	--with-default-strip-size and STRIP_SIZE_DEFAULT options.
1834
18352005-09-30  Bob Friesenhahn  <[email protected]>
1836
1837	* html/support.html: Fixed link to documentation on Greg Ward's
1838	LogLuv TIFF format.
1839
18402005-09-28  Andrey Kiselev  <[email protected]>
1841
1842	* tools/tiffdump.c: Fixed crash when reading malformed tags.
1843
18442005-09-20  Andrey Kiselev  <[email protected]>
1845
1846	* tools/tiff2pdf.c: Added missed 'break' statement as per bug
1847	http://bugzilla.remotesensing.org/show_bug.cgi?id=932
1848
18492005-09-12  Andrey Kiselev  <[email protected]>
1850
1851	* libtiff 3.7.4 released.
1852
1853	* {configure, configure.ac, Makefile.am, autogen.sh}: Applied patch
1854	from Patrick Welche (all scripts moved in the 'config' and 'm4'
1855	directories).
1856
18572005-09-12  Frank Warmerdam  <[email protected]>
1858
1859	* libtiff/tif_open.c: reintroduce seek to avoid problem on solaris.
1860
18612005-09-05  Frank Warmerdam  <[email protected]>
1862
1863	* libtiff/tif_dir.c: When prefreeing tv->value in TIFFSetFieldV
1864	also set it to NULL to avoid double free when re-setting custom
1865	string fields as per:
1866
1867	http://bugzilla.remotesensing.org/show_bug.cgi?id=922
1868
18692005-08-12  Frank Warmerdam  <[email protected]>
1870
1871	* libtiff/tif_print.c: avoid signed/unsigned warning.
1872
1873	* libtiff/tif_dirread.c: removed unused variable.
1874
18752005-07-30  Frank Warmerdam  <[email protected]>
1876
1877	* libtiff/tif_dir.c: Fixed up support for swapping "double complex"
1878	values (128 bits as 2 64 bits doubles).  GDAL gcore tests now
1879	pass on bigendian (macosx) system.
1880
18812005-07-28  Andrey Kiselev  <[email protected]>
1882
1883	* libtiff/{tif_aux.c, tif_dirread.c, tif_fax3.c, tiffiop.h}: Rename
1884	CheckMalloc() function to _TIFFCheckMalloc() and make it available
1885	globally as an internal helper routine.
1886
18872005-07-27  Andrey Kiselev  <[email protected]>
1888
1889	* libtiff/tif_dir.c: More improvements in the "pass by value" part of
1890	the custom tags handling code.
1891
18922005-07-26  Andrey Kiselev  <[email protected]>
1893
1894	* libtiff/{tif_dirread.c, tif_dirinfo.c}: Do not upcast BYTEs to
1895	SHORTs in the TIFFFetchByteArray(). Remove TIFFFetchExtraSamples()
1896	function, use TIFFFetchNormalTag() instead as per bug
1897
1898	http://bugzilla.remotesensing.org/show_bug.cgi?id=831
1899
1900	Remove TIFFFetchExtraSamples() function, use TIFFFetchNormalTag()
1901	instead.
1902
1903	* libtiff/tiffconf.h.in: One more attempt to fix the AIX bug
1904
1905	http://bugzilla.remotesensing.org/show_bug.cgi?id=39
1906
19072005-07-25  Andrey Kiselev  <[email protected]>
1908
1909	* libtiff/tif_print.c: Fixed printing of the BYTE and SBYTE arrays.
1910
1911	* tools/tiffdump.c: Added support for TIFF_IFD datatype.
1912
19132005-07-21  Andrey Kiselev  <[email protected]>
1914
1915	* libtiff/tif_write.c: Do not check the PlanarConfiguration field in
1916	the TIFFWriteCheck() function in case of single band images (as per
1917	TIFF spec).
1918
19192005-07-12  Andrey Kiselev  <[email protected]>
1920
1921	* SConstruct, libtiff/SConstruct: Added the first very preliminary
1922	support for SCons software building tool (http://www.scons.org/).
1923	This is experimental infrastructure and it will exist along with the
1924	autotools mechanics.
1925
19262005-07-07  Andrey Kiselev  <[email protected]>
1927
1928	* port/{getopt.c, strcasecmp.c, strtoul.c}: Update modules from
1929	the NetBSD source tree (the old	4-clause BSD license changed to
1930	the new 3-clause one).
1931
1932	* configure.ac, port/lfind.c, libtiff/tiffiop.h: Added lfind()
1933	replacement module.
1934
1935	* port/dummy.c: Make the dummy function static.
1936
19372005-07-06  Andrey Kiselev  <[email protected]>
1938
1939	* tools/tiffcp.c: Fixed WhitePoint tag copying.
1940
1941	* libtiff/{tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_print.c}:
1942	Make FieldOfViewCotangent, MatrixWorldToScreen, MatrixWorldToCamera,
1943	ImageFullWidth, ImageFullLength and PrimaryChromaticities tags custom.
1944
19452005-07-04  Andrey Kiselev  <[email protected]>
1946
1947	* libtiff 3.7.3 released.
1948
1949	* configure, configure.ac: Do not use empty -R option when linking
1950	with --enable-rpath.
1951
19522005-07-01  Andrey Kiselev  <[email protected]>
1953
1954	* libtiff/{tiffiop.h, tif_open.c}: Added open option 'h' to avoid
1955	reading the first IFD when needed. As per bug
1956
1957	http://bugzilla.remotesensing.org/show_bug.cgi?id=875
1958
1959	* libtiff/tif_color.c: Better use of TIFFmin() macro to avoid side
1960	effects.
1961
19622005-06-23  Andrey Kiselev  <[email protected]>
1963
1964	* tools/tiff2pdf.c: Print two characters per loop in the
1965	t2p_write_pdf_trailer(). As per bug
1966
1967	http://bugzilla.remotesensing.org/show_bug.cgi?id=594
1968
1969	* tools/tiffgt.c: Use MacOS X OpenGL framework when appropriate. As
1970	per bug
1971
1972	http://bugzilla.remotesensing.org/show_bug.cgi?id=844
1973
1974	* acinclude.m4: Updated to latest OpenGL test macros versions.
1975
1976	* libtiff/tiff.h: Use correct int size on Sparc 64bit/Sun compiler
1977	platform. As per bug
1978
1979	http://bugzilla.remotesensing.org/show_bug.cgi?id=855
1980
19812005-06-14  Andrey Kiselev  <[email protected]>
1982
1983	* libtiff/tif_dirinfo.c: Added support for ClipPath, XClipPathUnits
1984	and YClipPathUnits tags.
1985
19862005-06-07  Andrey Kiselev  <[email protected]>
1987
1988	* contrib/addtiffo/tif_ovrcache.c: Properly extract tile/strip size;
1989	use pixel sized shift in contigous case.
1990
19912005-06-06  Andrey Kiselev  <[email protected]>
1992
1993	* contrib/addtiffo/{tif_overview.c, tif_ovrcache.c, tif_ovrcache.h}:
1994	Make overviews working for contiguos images.
1995
19962005-06-03  Andrey Kiselev  <[email protected]>
1997
1998	* libtiff/tif_open.c: Replace runtime endianess check with the compile
1999	time one.
2000
2001	* libtiff/tif_predict.c: Floating point predictor now works on
2002	big-endian hosts.
2003
20042005-06-01  Andrey Kiselev  <[email protected]>
2005
2006	* libtiff/tif_dir.c: Use _TIFFsetString() function when read custom
2007	ASCII values.
2008
2009	* libtiff/{tif_dirinfo.c, tif_dir.h, tif_dir.c, tif_print.c}: Make
2010	DocumentName, Artist, HostComputer, ImageDescription, Make, Model,
2011	Copyright, DateTime, PageName, TextureFormat, TextureWrapModes and
2012	TargetPrinter tags custom.
2013
2014	* libtiff/tif_jpeg.c: Cleanup the codec state depending on
2015	TIFF_CODERSETUP flag (to fix memry leaks).
2016
2017	* libtiff/tif_jpeg.c: Initialize JPEGTables array with zero after
2018	allocating.
2019
20202005-05-26  Andrey Kiselev  <[email protected]>
2021
2022	* configure.ac, libtiff/Makefile.am: Added workaround for
2023	OpenBSD/MirOS soname problem as per bug
2024
2025	http://bugzilla.remotesensing.org/show_bug.cgi?id=838
2026
2027	* libtiff/tif_dirwrite.c: Use tdir_count when calling
2028	TIFFCvtNativeToIEEEDouble() in the TIFFWriteDoubleArray() function as
2029	per bug
2030
2031	http://bugzilla.remotesensing.org/show_bug.cgi?id=845
2032
20332005-05-25  Andrey Kiselev  <[email protected]>
2034
2035	* tools/ppm2tiff.c: Fixed format string when read PPM file header with
2036	the fscanf() function. As per bug
2037
2038	http://bugzilla.remotesensing.org/show_bug.cgi?id=861
2039
2040	* libtiff/{tif_dirinfo.c, tif_print.c}: TIFFFetchByteArray() returns
2041	uint16 array when fetching the BYTE and SBYTE filds, so we should
2042	consider result as pointer to uint16 array and not as array of chars.
2043	As per bug
2044
2045	http://bugzilla.remotesensing.org/show_bug.cgi?id=831
2046
2047	* libtiff/tif_dir.c: More efficient custom tags retrieval as per bug
2048
2049	http://bugzilla.remotesensing.org/show_bug.cgi?id=830
2050
2051	* libtiff/tif_win32.c: Use FILE_SHARE_READ | FILE_SHARE_WRITE share
2052	mode in CreateFile() call as per bug
2053
2054	http://bugzilla.remotesensing.org/show_bug.cgi?id=829
2055
2056	* libtiff/Makefile.am: Fixed parallel compilation of the libtiff and
2057	libtiffxx libraries as per bug
2058
2059	http://bugzilla.remotesensing.org/show_bug.cgi?id=826
2060
2061	* contrib/addtiffo/{tif_overview.c, tif_ovrcache.h}: Sinchronized with
2062	GDAL.
2063
20642005-05-23  Frank Warmerdam  <[email protected]>
2065
2066	* libtiff/tif_jpeg.c: Substantial fix for addtiffo problems with
2067	JPEG encoded TIFF files.  Pre-allocate lots of space for jpegtables
2068	in directory.
2069
20702005-05-22  Frank Warmerdam  <[email protected]>
2071
2072	* libtiff/tif_dirread.c: Changed the code that computes
2073	stripbytecount[0] if it appears bogus to ignore if stripoffset[0] is
2074	zero. This is a common case with GDAL indicating a "null" tile/strip.
2075
20762005-05-17  Andrey Kiselev  <[email protected]>
2077
2078	* tools/tiffsplit.c: Check for JPEGTables tag presence before copying.
2079
20802005-05-06  Frank Warmerdam  <[email protected]>
2081
2082	* libtiff/tif_dirread.c: Applied similar change to
2083	TIFFFetchPerSampleLongs and TIFFFetchPerSampleAnys.
2084
2085	http://bugzilla.remotesensing.org/show_bug.cgi?id=843
2086
2087	* libtiff/tif_jpeg.c: added LIB_JPEG_MK1 support in JPEGDecodeRaw().
2088
20892005-05-06  Andrey Kiselev  <[email protected]>
2090	* tools/tiff2pdfr.c, man/tiff2pdf.1: Calculate the tile width properly;
2091	added new option '-b' to use interpolation in output PDF files (Bruno
2092	Ledoux).
2093
20942005-05-05  Frank Warmerdam  <[email protected]>
2095
2096	* libtiff/tif_dirread.c: Ensure that broken files with too many
2097	values in PerSampleShorts work ok instead of crashing.
2098
2099	http://bugzilla.remotesensing.org/show_bug.cgi?id=843
2100
21012005-04-27  Andrey Kiselev  <[email protected]>
2102
2103	* tools/tiffdither.c: Copy the PhotometricInterpretation tag from the
2104	input file.
2105
21062005-04-15  Andrey Kiselev  <[email protected]>
2107
2108	* libtiff/tif_predict.c: Added ability to encode floating point
2109	predictor, as per TIFF Technical Note 3.
2110
21112005-04-14  Andrey Kiselev  <[email protected]>
2112
2113	* libtiff/{tif_predict.h, tif_predict.c}: Added ability to decode
2114	floating point predictor, as per TIFF Technical Note 3.
2115
21162005-04-13  Andrey Kiselev  <[email protected]>
2117
2118	* libtiff/{tiffio.h, tiffiop.h, tif_dir.c, tif_read.c, tif_swab.c}:
2119	Added _TIFFSwab24BitData() and TIFFSwabArrayOfLong() functions used to
2120	swap 24-bit floating point values.
2121
2122	* libtiff/tiff.h: Added predictor constants.
2123
21242005-04-08  Andrey Kiselev  <[email protected]>
2125
2126	* libtiff/{tiffiop.h, tif_dir.c}: Use uint32 type for appropriate
2127	values in _TIFFVSetField() function. Inspired by the bug
2128
2129	http://bugzilla.remotesensing.org/show_bug.cgi?id=816
2130
2131	* man/TIFFSetField.3tiff: Fixed definition of the TIFFTAG_INKNAMES tag
2132	as per bug
2133
2134	http://bugzilla.remotesensing.org/show_bug.cgi?id=816
2135
21362005-03-30  Andrey Kiselev  <[email protected]>
2137
2138	* libtiff/tif_open.c: Do not read header in case the output file
2139	should be truncated (Ron).
2140
2141	* libtiff/{tif_dirinfo.c, tif_config.h.vc}: Use lfind() instead
2142	of bsearch() in _TIFFFindFieldInfoByName() function (Ron).
2143
2144	* libtiff/{tiff.h, tif_dirinfo.c}: Fixes in EXIF tag ordering (Ron).
2145
21462005-03-22  Andrey Kiselev  <[email protected]>
2147
2148	* configure.ac, libtiff/Makefile.am: Use libtool machinery to pass
2149	rpath option.
2150
21512005-03-21  Andrey Kiselev  <[email protected]>
2152
2153	* libtiff/{tif_dir.c, tif_print.c}: Handle all data types in custom
2154	tags.
2155
21562005-03-18  Andrey Kiselev  <[email protected]>
2157
2158	* libtiff/dirinfo.c: Added DNG tags.
2159
2160	* libtiff/{tif_dir.c, tif_print.c}: More improvements in custom tag
2161	handling code.
2162
2163	* libtiff/tiff.h: More comments; added missed DNG tag (LensInfo);
2164	added DNG 1.1.0.0 tags.
2165
2166	* tools/tif2pdf.c: Fixed problem with alpha channel handling as per
2167	bug
2168
2169	http://bugzilla.remotesensing.org/show_bug.cgi?id=794
2170
2171	* man/TIFFGetField.3tiff: Add a note about autoregistered tags.
2172
21732005-03-17  Andrey Kiselev  <[email protected]>
2174
2175	* nmake.opt: Build with Win32 CRT library by default.
2176
2177	* tools/tiff2ps.c: Fixed typo in page size handling code.
2178
2179	* libtiff/{tif_dir.c, tif_print.c}: Support for custom tags, passed
2180	by value.
2181
2182	* libtiff/{tiff.h, tif_dirinfo.c, tiffiop.h}: Added EXIF related tags.
2183
21842005-03-15  Andrey Kiselev  <[email protected]>
2185
2186	* libtiff 3.7.2 released.
2187
21882005-03-09  Andrey Kiselev  <[email protected]>
2189
2190	* tools/tiffcmp.c: Added ability to compare the 32-bit integer and
2191	floating point data; complain on unsupported bit depths.
2192
21932005-03-05  Andrey Kiselev  <[email protected]>
2194
2195	* tif_stream.cxx: Use ios namespace instead of ios_base to support
2196	GCC 2.95.
2197
2198	* libtiff/{tiff.h, tif_fax3.tif, tif_jpeg.c}: Applied correct patch from
2199	Lee Howard for HylaFax DCS tag
2200	(see http://bugzilla.remotesensing.org/show_bug.cgi?id=771)
2201
22022005-03-04  Andrey Kiselev  <[email protected]>
2203
2204	* configure, configure.ac: Use -rpath option instead of -R as per bug
2205
2206	http://bugzilla.remotesensing.org/show_bug.cgi?id=732
2207
2208	* libtiff/{tiff.h, tif_fax3.tif, tif_jpeg.c}: Applied patch from Lee
2209	Howard to support a new tag TIFFTAG_FAXDCS (34911) used in HylaFax
2210	software. As per bug
2211
2212	http://bugzilla.remotesensing.org/show_bug.cgi?id=771
2213
2214	* nmake.opt, html/build.html: Add more comments, change the config
2215	file organization a bit as per bug
2216
2217	http://bugzilla.remotesensing.org/show_bug.cgi?id=764
2218
2219	* tools/tiffcmp.c: Use properly sized buffer in short arrays comparison
2220	as per bug
2221
2222	http://bugzilla.remotesensing.org/show_bug.cgi?id=785
2223
22242005-03-03  Andrey Kiselev  <[email protected]>
2225
2226	* libtiff/tif_dirread.c: More logic to guess missed strip size as per
2227	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=705
2228
2229	* tools/fax2ps.c: Replace insecure mktemp() function with the
2230	tmpfile() as per bug
2231
2232	http://bugzilla.remotesensing.org/show_bug.cgi?id=786
2233
22342005-02-04  Andrey Kiselev  <[email protected]>
2235
2236	* libtiff/tiff.h: Changed the int8 definition to be always signed char
2237	as per bug
2238
2239	http://bugzilla.remotesensing.org/show_bug.cgi?id=727
2240
2241	* libtiff/tiffio.h: Move TIFFOpenW() function into the extern "C"{}
2242	block as per bug
2243
2244	http://bugzilla.remotesensing.org/show_bug.cgi?id=763
2245
22462005-02-03  Bob Friesenhahn  <[email protected]>
2247
2248	* tools/tiffgt.c: Fix problem on big-endian CPUs so that images
2249	display more correctly.  Images display brighter than they should
2250	on a Sun workstation.
2251
22522005-02-03  Andrey Kiselev  <[email protected]>
2253
2254	* libtiff/tif_dirread.c: Estimate strip size in case of wrong or
2255	suspicious values in the tags. As per bugs
2256
2257	http://bugzilla.remotesensing.org/show_bug.cgi?id=705
2258
2259	and
2260
2261	http://bugzilla.remotesensing.org/show_bug.cgi?id=320
2262
2263	* tools/tiff2ps.c: Fixed problem with page sizes as per bug
2264
2265	http://bugzilla.remotesensing.org/show_bug.cgi?id=742
2266
22672005-01-31  Bob Friesenhahn  <[email protected]>
2268
2269	* libtiff/tiff.h (TIFFTAG_TILEWIDTH): Corrected description.
2270	(TIFFTAG_TILELENGTH): Corrected description.
2271
22722005-01-30  Andrey Kiselev  <[email protected]>
2273
2274	* configure.ac: Fixes for --with-docdir option as per bug
2275
2276	http://bugzilla.remotesensing.org/show_bug.cgi?id=759
2277
2278	* libtiff/tif_open.c: Remove unnesessary TIFFSeekFile() call as per
2279	bug
2280
2281	http://bugzilla.remotesensing.org/show_bug.cgi?id=756
2282
2283	* libtiff/tif_stream.cxx: Fixes for C++ stream interface from
2284	Michael Rinne and Edward Lam.
2285
22862005-01-15  Andrey Kiselev  <[email protected]>
2287
2288	* configure.ac: Make the documentation directory location configurable
2289	via the --with-docdir option (as suggested by Jeremy C. Reed).
2290
2291	* libtiff/tif_color.c: Use double as the second argument of pow()
2292	function in TIFFCIELabToRGBInit(). As per bug
2293
2294	http://bugzilla.remotesensing.org/show_bug.cgi?id=741
2295
2296	* libtiff/tif_pixarlog.c: Avoid warnings when converting float to
2297	integer as per bug
2298
2299	http://bugzilla.remotesensing.org/show_bug.cgi?id=740
2300
2301	* libtiff/tif_getimage.c: Always fill the error message buffer in
2302	TIFFRGBAImageBegin() as per bug
2303
2304	http://bugzilla.remotesensing.org/show_bug.cgi?id=739
2305
23062005-01-12  Andrey Kiselev  <[email protected]>
2307
2308	* libtiff/tif_jpeg.c: Added ability to read/write the fax specific
2309	TIFFTAG_FAXRECVPARAMS, TIFFTAG_FAXSUBADDRESS and TIFFTAG_FAXRECVTIME
2310	tags as per bug
2311
2312	http://bugzilla.remotesensing.org/show_bug.cgi?id=736
2313
2314	* libtiff/tif_win32.c: Fixed message formatting in functions
2315	Win32WarningHandler() and Win32ErrorHandler() as per bug
2316
2317	http://bugzilla.remotesensing.org/show_bug.cgi?id=735
2318
2319	* tools/tiff2ps.c: Interpret the -w and -h options independently. As
2320	per bug
2321
2322	http://bugzilla.remotesensing.org/show_bug.cgi?id=689
2323
23242005-01-11  Andrey Kiselev  <[email protected]>
2325
2326	* libtiff/tiffio.h: Move the color conversion routines in the 'extern
2327	"C"' section as per bug
2328
2329	http://bugzilla.remotesensing.org/show_bug.cgi?id=727
2330
2331	* libtiff/tiff.h: Restore back the workaround for AIX Visual Age C
2332	compiler to avoid double definition of BSD types as per bug
2333
2334	http://bugzilla.remotesensing.org/show_bug.cgi?id=39
2335
2336	* libtiff/Makefile.am: Place the C++ stream API in the separate
2337	library called libtiffxx to avoid unneeded dependencies. Probably
2338	there will be more C++ API in the future. As per bugs
2339
2340	http://bugzilla.remotesensing.org/show_bug.cgi?id=733
2341
2342	and
2343
2344	http://bugzilla.remotesensing.org/show_bug.cgi?id=730
2345
23462005-01-05  Andrey Kiselev  <[email protected]>
2347
2348	* tools/tiffdump.c: Fixed problem when read broken TIFFs with the
2349	wrong tag counts (Dmitry V. Levin, Martin Pitt).
2350
2351	* configure.ac: Replace --disable-c++ with the --disable-cxx option as
2352	per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=730
2353
23542004-12-25  Andrey Kiselev  <[email protected]>
2355
2356	* libtiff/tif_getimage.c: More fixes for multiple-alpha-channelled
2357	RGB-images as per bug
2358
2359	http://bugzilla.remotesensing.org/show_bug.cgi?id=713
2360
2361
2362	* tools/tiffset.c: Convert character option to integer value as per
2363	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=725
2364
23652004-12-20  Andrey Kiselev  <[email protected]>
2366
2367	* libtiff 3.7.1 released.
2368
2369	* html/tiffset.1.html: Add missed manual page as per bug
2370
2371	http://bugzilla.remotesensing.org/show_bug.cgi?id=678
2372
2373	* libtiff/tiff.h: Revert back libtiff data type definitions as per
2374	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=687
2375
23762004-12-19  Andrey Kiselev  <[email protected]>
2377
2378	* libtiff/tif_dirread.c: Do not forget about TIFF_VARIABLE2 when
2379	checking for tag count in TIFFReadDirectory() function. As per bug
2380
2381	http://bugzilla.remotesensing.org/show_bug.cgi?id=713
2382
2383	* libtiff/{tif_dirread.c, tif_fax3.c}: More argument checking in
2384	CheckMallock() function.
2385
2386	* libtiff/tif_getimage.c: Support for multiple-alpha-channelled
2387	RGB-images as per bug
2388
2389	http://bugzilla.remotesensing.org/show_bug.cgi?id=718
2390
23912004-12-15  Frank Warmerdam  <[email protected]>
2392
2393	* libtiff/tif_getimage.c: #define A1 bracketing for clean build on
2394	SunPro compiler.
2395
23962004-12-11  Bob Friesenhahn  <[email protected]>
2397
2398	* autogen.sh: aclocal and autoheader should be executed after
2399	libtoolize.  Also add '-I .' to aclocal invocation to check
2400	current directory for macros.
2401
24022004-12-10  Andrey Kiselev  <[email protected]>
2403
2404	* libtiff/tif_dirwrite.c: Always write TIFFTAG_SUBIFD using LONG type
2405	as per bugs
2406
2407	http://bugzilla.remotesensing.org/show_bug.cgi?id=703
2408
2409	and
2410
2411	http://bugzilla.remotesensing.org/show_bug.cgi?id=704
2412
24132004-12-04  Andrey Kiselev  <[email protected]>
2414
2415	* nmake.opt: Link with the user32.lib in windowed mode. As per bug
2416
2417	http://bugzilla.remotesensing.org/show_bug.cgi?id=697
2418
2419	* libtiff/tif_win32.c: Use char* strings instead of TCHAR in windowed
2420	mode as per bug
2421
2422	http://bugzilla.remotesensing.org/show_bug.cgi?id=697
2423
2424	* libtiff/tif_config.in.vc: Removed unneded definitions for
2425	read/open/close/lseek functions to fix the
2426
2427	http://bugzilla.remotesensing.org/show_bug.cgi?id=680
2428
24292004-12-03  Andrey Kiselev  <[email protected]>
2430
2431	* libtiff/{tif_dir.c, tif_dirread.c}: Remove TIFFReassignTagToIgnore()
2432	call from the TIFFReadDirectory() function. TIFFReassignTagToIgnore
2433	must be removed in the future, as it was never used properly. As per
2434	bug
2435
2436	http://bugzilla.remotesensing.org/show_bug.cgi?id=692
2437
24382004-11-30  Bob Friesenhahn  <[email protected]>
2439
2440	* libtiff/tif_jpeg.c: Added a work-around in order to allow
2441	compilation with the heavily modified version of libjpeg delivered
2442	with Cygwin.
2443
24442004-11-29  Andrey Kiselev  <[email protected]>
2445
2446	* libtiff/tif_dir.c: Properly handle tags, which have the uint32
2447	counts. As per bug
2448
2449	http://bugzilla.remotesensing.org/show_bug.cgi?id=693
2450
2451	* tools/fax2ps.c: Be able to extract the first page (#0). As per bug
2452
2453	http://bugzilla.remotesensing.org/show_bug.cgi?id=690
2454
24552004-11-28  Andrey Kiselev  <[email protected]>
2456
2457	* libtiff/tif_unix.c: Make UNIX module compilable (and usable)
2458	on Windows.
2459
2460	* nmake.opt: Add missed DLLNAME variable.
2461
24622004-11-26  Frank Warmerdam  <[email protected]>
2463
2464	* libtiff/makefile.vc: make it easier to rename the libtiff DLL.
2465
24662004-11-24  Andrey Kiselev  <[email protected]>
2467
2468	* man/libtiff.3tiff: Improvements in the "LIST OF ROUTINES" table as
2469	per bug
2470
2471	http://bugzilla.remotesensing.org/show_bug.cgi?id=545
2472
2473	* man/tiffset.1: Added manual page for tiffset tool written by Jay
2474	Berkenbilt. As per bug
2475
2476	http://bugzilla.remotesensing.org/show_bug.cgi?id=678
2477
24782004-11-23  Frank Warmerdam  <[email protected]>
2479
2480	* libtiff/tif_error.c: fixed TIFFerror call to be TIFFError.
2481
24822004-11-21  Frank Warmerdam  <[email protected]>
2483
2484	* html/document.html: Updated Adobe web links as per email from Joris.
2485
24862004-11-21  Andrey Kiselev  <[email protected]>
2487
2488	* libtiff/{tiffio.hxx, tiffio.h}: C++ stream interface moved to new
2489	file tiffio.hxx. We don't have any C++ in tiffio.h, those who want to
2490	use C++ streams should #include <tiffio.hxx>.
2491
24922004-11-13  Andrey Kiselev  <[email protected]>
2493
2494	* libtiff/tiff.h: Added Adobe DNG tags.
2495
2496	* libtiff/tif_win32.c: Typo fixed.
2497
2498	* libtiff/{tif_stream.cxx, tiffio.h}: C++ stream interface updated to
2499	be compliant with the latest standard. Appropriate additions in
2500	makefiles now completed.
2501
25022004-11-11  Andrey Kiselev  <[email protected]>
2503
2504	* tools/tiffset.c, libtiff/tif_dirinfo.c: Properly handle the
2505	different tag types. As per bug
2506
2507	http://bugzilla.remotesensing.org/show_bug.cgi?id=600
2508
25092004-11-10  Andrey Kiselev  <[email protected]>
2510
2511	* libtiff/tif_aux.c: Set the appropriate ReferenceBlackWhite array for
2512	YCbCr image which lacks that tag (noted by Hans Petter Selasky).
2513
25142004-11-09  Andrey Kiselev  <[email protected]>
2515
2516	* libtiff/tif_color.c: Division by zero fixed (Hans Petter Selasky).
2517
25182004-11-07  Andrey Kiselev  <[email protected]>
2519
2520	* libtiff/{tif_stream.cxx, tiffio.h}: Added C++ stream interface
2521	contributed by Edward Lam (see
2522	http://bugzilla.remotesensing.org/show_bug.cgi?id=654 for details).
2523	Though no changes in any makefiles yet.
2524
25252004-11-05  Frank Warmerdam  <[email protected]>
2526
2527	* libtiff/tif_open.c: Removed close() in TIFFClientOpen() if file
2528	is bad. This is the callers responsibility.
2529	http://bugzilla.remotesensing.org/show_bug.cgi?id=651
2530
25312004-11-05  Andrey Kiselev  <[email protected]>
2532
2533	* libtiff/{tiffio.h, tif_win32.c, libtiff.def}: Added TIFFOpenW()
2534	function to work with the double byte strings (used to represent
2535	filenames in some locales). As per bug
2536
2537	http://bugzilla.remotesensing.org/show_bug.cgi?id=625
2538
2539	* libtiff/tif_dirread.c: Fixed problem when fetching BitsPerSample and
2540	Compression tags of type LONG from broken TIFFS as per bug
2541
2542	http://bugzilla.remotesensing.org/show_bug.cgi?id=662
2543
2544	* libtiff/tif_dirinfo.c: Fixed definition for TIFFTAG_RICHTIFFIPTC,
2545	the writecount should have uint32 type. As per bug
2546
2547	http://bugzilla.remotesensing.org/show_bug.cgi?id=662
2548
2549	* libtiff/tif_write.c: Fixed wrong if() statement in
2550	TIFFAppendToStrip() function as per bug
2551
2552	http://bugzilla.remotesensing.org/show_bug.cgi?id=660
2553
25542004-11-04  Andrey Kiselev  <[email protected]>
2555
2556	* libtiff/tif_dirinfo.c: Change definition for TIFFTAG_EXTRASAMPLES
2557	field. The caller should supply a count when setting this field. As
2558	per bug
2559
2560	 http://bugzilla.remotesensing.org/show_bug.cgi?id=648
2561
2562	* libtiff/{tif_jpeg.c, tif_ojpeg.c}: TIFFTAG_JPEGTABLES should have
2563	uint32 count. Use this type everywhere.
2564
25652004-11-03  Frank Warmerdam  <[email protected]>
2566
2567	* libtiff/tif_next.c: avoid use of u_long and u_char types.  Bug 653.
2568
25692004-11-02  Frank Warmerdam  <[email protected]>
2570
2571	* tools/tiff2rgba.c: removed extra newlines in usage message.
2572
25732004-10-30  Andrey Kiselev  <[email protected]>
2574
2575	* libtiff/tif_dirwrite.c: Improvements in tag writing code.
2576
2577	* tools/tiff2ps.c: Fixed wrong variable data type when read Position
2578	tags (Tristan Hill).
2579
25802004-10-30  Frank Warmerdam  <[email protected]>
2581
2582	* libtiff/tiffiop.h: added fallback definition of assert() if we
2583	don't have assert.h.
2584
25852004-10-29  Andrey Kiselev  <[email protected]>
2586
2587	* libtiff/tif_fax3.c: Fixed case with the wrong decode routines
2588	choosing when the incorrect Group4Options tag set. As per bug
2589
2590	http://bugzilla.remotesensing.org/show_bug.cgi?id=323
2591
2592	* libtiff/tif_dirwrite.c: Fixed problem with passing count variable of
2593	wrong type when writing the TIFF_BYTE/TIFF_SBYTE tags in
2594	TIFFWriteNormalTag().
2595
25962004-10-28  Andrey Kiselev  <[email protected]>
2597
2598	* tools/tiff2ps.c: Fixed wrong variable data type when read Resolution
2599	tags (Peter Fales).
2600
2601	* tools/{bmp2tiff.c, raw2tiff.c}: Get rid of stream I/O functions.
2602
26032004-10-28  Frank Warmerdam  <[email protected]>
2604
2605	* tools/tiff2pdf.c: added casts to avoid warnings.
2606
2607	* libtiff/libtiff.def: Added several more entry points required
2608	to link fax2tiff.c against the DLL on windows.
2609
26102004-10-27  Andrey Kiselev  <[email protected]>
2611
2612	* configure, configure.ac: Added --enable-rpath option to embed linker
2613	paths into library binary.
2614
26152004-10-26  Andrey Kiselev  <[email protected]>
2616
2617	* tools/tiffset.c: Check the malloc return value (Dmitry V. Levin).
2618
2619	* libtiff/{tif_strip.c, tif_tile.c}: Zero division problem fixed
2620	(Vladimir Nadvornik, Dmitry V. Levin).
2621
26222004-10-16  Andrey Kiselev  <[email protected]>
2623
2624	* libtiff 3.7.0 released.
2625
26262004-10-15  Bob Friesenhahn  <[email protected]>
2627
2628	* libtiff/tif_jpeg.c: There seems to be no need to include stdio.h
2629	in this file so its inclusion is removed.  Including stdio.h
2630	sometimes incurs an INT32 typedef conflict between MinGW's
2631	basetsd.h and libjpeg's jmorecfg.h.
2632
26332004-10-15  Andrey Kiselev  <[email protected]>
2634
2635	* man/bmp2tiff.1: Added manual page for bmp2tiff utility.
2636
26372004-10-13  Bob Friesenhahn  <[email protected]>
2638
2639	* tools/tiffcmp.c (leof): Renamed from 'eof' in order to avoid
2640	conflict noticed under MinGW.
2641	* ltmain.sh: Fix for MinGW compilation.
2642
26432004-10-13  Frank Warmerdam  <[email protected]>
2644
2645	* man/tiffsplit.1: Fixed to indicate using aaa-zzz, not aa-zz.
2646	http://bugzilla.remotesensing.org/show_bug.cgi?id=635
2647
26482004-10-12  Andrey Kiselev  <[email protected]>
2649
2650	* libtiff/{tif_dirread.c, tif_jpeg.c, tif_luv.c, tif_ojpeg.c,
2651	tif_pixarlog.c, tif_write.c}: Handle the zero strip/tile sizes
2652	properly (Dmitry V. Levin, Marcus Meissner).
2653
26542004-10-11  Andrey Kiselev  <[email protected]>
2655
2656	* libtiff/tif_dirinfo.c: Type of the TIFFTAG_SUBIFD field changed
2657	to TIFF_IFD.
2658
26592004-10-10  Andrey Kiselev  <[email protected]>
2660
2661	* tools/bmp2tif.c: Check the space allocation results.
2662
26632004-10-09  Andrey Kiselev  <[email protected]>
2664
2665	* libtiff/tif_dir.c: Initialize td_tilewidth and td_tilelength fields
2666	of the TIFFDirectory structure with the 0 instead of -1 to avoid
2667	confusing integer overflows in TIFFTileRowSize() for striped images.
2668
2669	* tools/tiff2pdf.c: Fixed TransferFunction tag handling reported
2670	by Ross A. Finlayson.
2671
2672	* libtiff/tif_dir.c: Fixed custom tags handling as per bug
2673
2674	http://bugzilla.remotesensing.org/show_bug.cgi?id=629
2675
26762004-10-08  Frank Warmerdam  <[email protected]>
2677
2678	* libtiff/tif_dirinfo.c: Fix bug with tif_foundfield and reallocation
2679	of tif_fieldinfo.
2680
2681	http://bugzilla.remotesensing.org/show_bug.cgi?id=630
2682
26832004-10-04  Bob Friesenhahn  <[email protected]>
2684
2685	* contrib/iptcutil/README: Added the missing README which goes
2686	along with iptcutil.
2687
26882004-10-03  Andrey Kiselev  <[email protected]>
2689
2690	* libtiff/tif_compress.c: Improved error reporting in
2691	TIFFGetConfiguredCODECs() (Dmitry V. Levin).
2692
26932004-10-02  Andrey Kiselev  <[email protected]>
2694
2695	* libtiff 3.7.0beta2 released.
2696
2697	* libtiff/{tif_aux.c, tif_compress.c, tif_dirinfo.c, tif_dirwrite.c,
2698	tif_extension.c, tif_fax3.c, tif_luv.c, tif_packbits.c,
2699	tif_pixarlog.c, tif_write.c}: Added checks for failed memory
2700	allocations and	integer overflows (Dmitry V. Levin).
2701
2702	* libtiff/tiff.h: Missed TIFF_BIGTIFF_VERSION constant added.
2703
27042004-10-01  Frank Warmerdam  <[email protected]>
2705
2706	* libtiff/tif_open.c: added a more informative message if a BigTIFF
2707	file is opened.
2708
27092004-09-30  Frank Warmerdam  <[email protected]>
2710
2711	* libtiff/tif_dirinfo.c: changed type of XMLPacket (tag 700) to
2712	TIFFTAG_BYTE instead of TIFFTAG_UNDEFINED to comply with the info
2713	in the Adobe XMP Specification.
2714
27152004-09-29  Andrey Kiselev  <[email protected]>
2716
2717	* libtiff/{tif_jpeg.c, tif_pixarlog.c}: Use _TIFFmemset() instead of
2718	memset().
2719
2720	* libtiff/{tif_dirread.c, tif_strip.c, tif_tile.c}: Applied patches
2721	from Dmitry V. Levin to fix possible integer overflow problems.
2722
27232004-09-28  Andrey Kiselev  <[email protected]>
2724
2725	* libtiff/tif_getimage.c: Check for allocated buffers before clearing
2726	(Dmitry V. Levin).
2727
27282004-09-26  Andrey Kiselev  <[email protected]>
2729
2730	* libtiff/{tif_dir.h, tif_dir.c, tif_dirread.c, tif_write.c}:
2731	Optimize checking for the strip bounds.
2732
2733	* libtiff/{tif_dirread.c, tif_strip.c}: TIFFScanlineSize() and
2734	TIFFRasterScanlineSize() functions report zero in the case of integer
2735	overflow now. Properly handle this case in TIFFReadDirectory()
2736	(patches from Dmitry V. Levin).
2737
27382004-09-25  Andrey Kiselev  <[email protected]>
2739
2740	* libtiff/{tif_dirinfo.c, tif_strip.c, tif_tile.c}: Use TIFFhowmany8()
2741	macro where appropriate.
2742
2743	* tools/tiff2bw.c: Write ImageWidth/Height tags to output file, as
2744	noted by Gennady Khokhorin.
2745
2746	* libtiff/tif_dirread.c: Always check the return values, returned
2747	by the _TIFFmalloc() (Dmitry V. Levin).
2748
2749	* libtiff/tif_dir.c: Fixed possible integer overflow _TIFFset*Array()
2750	functions (Dmitry V. Levin).
2751
2752	* libtiff/{tif_dirread.c, tif_dir.c, tif_write.c}:
2753	Potential memory leak fixed in TIFFReadDirectory(), _TIFFVSetField(),
2754	TIFFGrowStrips() (found by Dmitry V. Levin).
2755
27562004-09-24  Andrey Kiselev  <[email protected]>
2757
2758	* libtiff/{tiffio.h, tif_compress.c}: Added TIFFGetConfiguredCODECs()
2759	to get the list of configured codecs.
2760
2761	* libtiff/{tiffiop.h, tif_dirread.c}: More overflow fixes from
2762	Dmitry V. Levin.
2763
27642004-09-23  Andrey Kiselev  <[email protected]>
2765
2766	* libtiff/tif_dirread.c: Applied patch from Dmitry V. Levin to fix
2767	possible integer overflow in CheckMalloc() function.
2768
27692004-09-22  Andrey Kiselev  <[email protected]>
2770
2771	* libtiff/{tiffiop.h, tif_strip.c}: Use TIFFhowmany8() macro instead
2772	of plain TIFFhowmany() where appropriate.
2773
27742004-09-21  Andrey Kiselev  <[email protected]>
2775
2776	* libtiff/tif_getimage.c: Initialize arrays after space allocation.
2777
27782004-09-19  Andrey Kiselev  <[email protected]>
2779
2780	* libtiff 3.7.0beta released.
2781
2782	* libtiff/{tif_luv.c, tif_next.c, tif_thunder.c}: Several buffer
2783	overruns fixed, as noted by Chris Evans.
2784
27852004-09-14  Bob Friesenhahn  <[email protected]>
2786
2787	* commit: Added a script to make it more convenient to commit
2788	updates.  The CVS commit message is extracted from this ChangeLog
2789	file.
2790
27912004-09-14  Andrey Kiselev  <[email protected]>
2792
2793	* configure.ac, configure, aclocal.m4, libtiff/{mkspans.c, tif_fax3.c,
2794	tif_getimage.c, tif_luv.c, tif_lzw.c, tif_ojpeg.c, tif_packbits.c,
2795	tif_predict.c, tif_read.c, tif_swab.c, tif_thunder.c, tif_write.c,
2796	tif_dir.c, tif_dirread.c, tif_dirwrite.c, tif_jpeg.c, tif_dirinfo.c,
2797	tif_vms.c, tif_print.c, tif_strip.c, tif_tile.c, tif_dir.h,
2798	tif_config.h.in, tiffiop.h}:
2799	Get rid of BSD data types (u_char, u_short, u_int, u_long).
2800
28012004-09-13  Bob Friesenhahn  <[email protected]>
2802
2803	* libtiff/tiff.h: Fix column tagging. Reference current Adobe XMP
2804	specification. Reference libtiff bug tracking system to submit
2805	private tag additions.
2806
28072004-09-12  Bob Friesenhahn  <[email protected]>
2808
2809	* tools/tiffgt.c: Include "tif_config.h".
2810
2811	* configure.ac: Use AM_PROG_CC_C_O since it is now needed to build
2812	tiffgt.  This results in the 'compile' script being added to the
2813	project.
2814
2815	* tools/Makefile.am (tiffgt_CFLAGS): Add extra build options
2816	required to find OpenGL headers necessary to build tiffgt.  Also
2817	ensure that the libtiff that we built is used rather than some other
2818	libtiff installed on the system.
2819
28202004-09-12  Andrey Kiselev  <[email protected]>
2821
2822	* configure.ac, acinclude.m4, aclocal.m4: New macros to detect GLUT
2823	libraries.
2824
28252004-09-11  Bob Friesenhahn  <[email protected]>
2826
2827	* configure.ac: Pass library configuration defines via
2828	tif_config.h rather than extending CPPFLAGS. Configure a
2829	libtiff/tiffconf.h in order to satisfy application requirements
2830	(not used by library build). Do not define _POSIX_C_SOURCE=2 since
2831	this causes failure to build on systems which properly respect
2832	this request.
2833
2834	* libtiff/tiffconf.h.in: New file to act as the template for the
2835	configured tiffconf.h
2836
2837	* libtiff/files.lst (HDRS): Install the configured tiffconf.h.
2838
28392004-09-10  Frank Warmerdam  <[email protected]>
2840
2841	* html/internals.html: Split off a discussion of adding new tags
2842	into addingtags.html.
2843
28442004-09-10  Andrey Kiselev  <[email protected]>
2845
2846	* test/{ascii_tag.c, long_tag.c}: Preliminary test suite added.
2847
2848	* tools/tiff2pdf.c: Fixed reading TransferFunction tag as per bug
2849
2850	http://bugzilla.remotesensing.org/show_bug.cgi?id=590
2851
2852	* libtiff/tif_print.c: Fixes in InkNames and NumberOfInks reporting.
2853
2854	* libtiff/tif_dirread.c: Don't reject to read tags of the
2855	SamplesPerPixel size when the tag count is greater than number of
2856	samples as per bug
2857
2858	http://bugzilla.remotesensing.org/show_bug.cgi?id=576
2859
2860	* libtiff/tiff.h: Use _TIFF_DATA_TYPEDEFS_ guardian to switch off
2861	defining int8/uint8/... etc. types. As per bug
2862
2863	http://bugzilla.remotesensing.org/show_bug.cgi?id=607
2864
28652004-09-09  Frank Warmerdam  <[email protected]>
2866
2867	* tools/tiff2ps.c, tools/tiffmedian.c: fiddle with include files
2868	to avoid compile warnings about getopt() and a few other things.
2869
28702004-09-02  Andrey Kiselev  <[email protected]>
2871
2872	* libtiff/tif_dirread.c: Use memcpy() function instead of pointer
2873	assigning magic in TIFFFetchFloat().
2874
28752004-09-01  Andrey Kiselev  <[email protected]>
2876
2877	* libtiff/{tiffio.h, tif_open.c}: Applied patches from Joris Van Damme
2878	to avoid requirement for tiffiop.h inclusion in some applications. See
2879	here
2880
2881	http://www.asmail.be/msg0054799560.html
2882
2883	for details.
2884
2885	* tools/fax2tiff.c: Use the new functions in the code.
2886
28872004-08-25  Andrey Kiselev  <[email protected]>
2888
2889	* tools/tiff2pdf.c: Initialize arrays properly.
2890
2891	* tools/tiff2ps.c: Avoid zero division in setupPageState() function;
2892	properly initialize array in PSDataBW().
2893
28942004-08-24  Andrey Kiselev  <[email protected]>
2895
2896	* tools/tiff2pdf.c: More fixes for bug
2897
2898	http://bugzilla.remotesensing.org/show_bug.cgi?id=590
2899
2900	from Ross Finlayson.
2901
29022004-08-23  Andrey Kiselev  <[email protected]>
2903
2904	* tools/tiff2ps.c: Fixed problem with uninitialized values.
2905
2906	* libtiff/tif_dir.c: Initialize tif_foundfield data member in the
2907	TIFFDefaultDirectory() (in addition to 2004-08-19 fix).
2908
2909	* tools/tiff2pdf.c: Fixed a bunch of problems as per bug
2910
2911	http://bugzilla.remotesensing.org/show_bug.cgi?id=590
2912
29132004-08-20  Andrey Kiselev  <[email protected]>
2914
2915	* tools/tiff2pdf.c: Applied patch from Ross Finlayson that checks
2916	that the input file has compression, photometric interpretation,
2917	etcetra, tags or if not than a more descriptive error is returned.
2918
2919	* libtiff/tif_dirread.c: Fixed problem in TIFFReadDirectory() in the
2920	code, responsible for tag data type checking.
2921
29222004-08-19  Andrey Kiselev  <[email protected]>
2923
2924	* libtiff/{tiffiop.h, tif_dirinfo.c}: Fixed problem with the static
2925	variable as per bug
2926
2927	http://bugzilla.remotesensing.org/show_bug.cgi?id=593
2928
29292004-08-16  Andrey Kiselev  <[email protected]>
2930
2931	* tools/ras2tiff.c: Fixed issue with missed big-endian checks as per
2932	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=586
2933
29342004-08-01  Andrey Kiselev  <[email protected]>
2935
2936	* libtiff/{tif_config.h.in, tif_config.h.vc}: config.h.in and
2937	config.h.vc files renamed in the tif_config.h.in and tif_config.h.vc.
2938
29392004-07-24  Andrey Kiselev  <[email protected]>
2940
2941	* libtiff/tif_lzw.c: LZW compression code is merged back from the
2942	separate package. All libtiff tools are updated to not advertise an
2943	abcence of LZW support.
2944
29452004-07-12  Andrey Kiselev  <[email protected]>
2946
2947	* libtiff/tiffio.h: Revert thandle_t back to void* type.
2948
29492004-07-11  Andrey Kiselev  <[email protected]>
2950
2951	* libtiff/{tif_read.c, tif_tile.c, tif_strip.c}: Fixes in error
2952	messages, as suggested by Bernd Herd.
2953
29542004-07-03  Andrey Kiselev  <[email protected]>
2955
2956	* libtiff/tif_dir.c: Call TIFFError() instead of producing warnings
2957	when setting custom tags by value. Reported by Eric Fieleke.
2958
29592004-06-14  Andrey Kiselev  <[email protected]>
2960
2961	* tools/bmp2tiff.c: Add missed RawsPerStrip setting.
2962
29632004-06-08  Andrey Kiselev  <[email protected]>
2964
2965	* tools/bmp2tiff.c: Added new utility to convert Windows BMP files
2966	into TIFFs.
2967
29682004-06-07  Andrey Kiselev  <[email protected]>
2969
2970	* libtiff 3.7.0alpha released.
2971
29722004-06-06  Andrey Kiselev  <[email protected]>
2973
2974	* libtiff/{tiff.h, tif_dirwrite.c, tif_fax3.c, tif_packbits.c,}: Get rid
2975	of ugly 64-bit hacks, replace them with the clever (autoconf based )
2976	ones :-).
2977
2978	* libtiff/tiffio.h: Define thandle_t as int, not void* (may cause
2979	problems in 64-bit environment).
2980
29812004-06-05  Andrey Kiselev  <[email protected]>
2982
2983	* tools/tiffset.c: tiffset now can set any libtiff supported tags.
2984	Tags can be supplied by the mnemonic name or number.
2985
2986	* libtiff/{tiffio.h, tif_dir.h, tif_dirinfo.c,}: Added two new
2987	functions TIFFFindFieldInfoByName() and TIFFFieldWithName().
2988
29892004-05-27  Andrey Kiselev  <[email protected]>
2990
2991	* libtiff/tif_ojpeg.c: Fixed problem with duplicated SOI and SOF
2992	markers as per bug
2993
2994	http://bugzilla.remotesensing.org/show_bug.cgi?id=581
2995
29962004-05-24  Andrey Kiselev  <[email protected]>
2997
2998	* tools/tiffsplit.c: Don't forget to copy Photometric
2999	Interpretation tag.
3000
30012004-05-20  Andrey Kiselev  <[email protected]>
3002
3003	* libtiff/{tif_open.c, tiffio.h}: New function added:
3004	TIFFIsBigEndian(). Function returns nonzero if given was file written
3005	in big-endian order.
3006
3007	* tools/tiffsplit.c: Fixed problem with unproperly written multibyte
3008	files. Now output files will be written using the same byte order
3009	flag as	in the input image. See
3010
3011	http://bugzilla.remotesensing.org/show_bug.cgi?id=574
3012
3013	for details.
3014
30152004-05-19  Frank Warmerdam  <[email protected]>
3016
3017	* libtiff/tif_print.c: added (untested) support for printing
3018	SSHORT, SLONG and SRATIONAL fields.
3019
3020	* tools/tiffcp.c: close output file on normal exit.
3021
30222004-05-17  Andrey Kiselev  <[email protected]>
3023
3024	* libtiff/tif_fax3.c: Avoid reading CCITT compression options
3025	if compression type mismatches. See
3026
3027	http://bugzilla.remotesensing.org/show_bug.cgi?id=565
3028
30292004-04-30  Andrey Kiselev  <[email protected]>
3030
3031	* libtiff/tif_strip.c: Never return 0 from the
3032	TIFFNumberOfStrips().
3033
30342004-04-29  Andrey Kiselev  <[email protected]>
3035
3036	* libtiff/tif_dirread.c: Workaround for broken TIFF writers which
3037	store single SampleFormat value for multisampled images. See
3038
3039	http://bugzilla.remotesensing.org/show_bug.cgi?id=562
3040
30412004-04-25  Andrey Kiselev  <[email protected]>
3042
3043	* configure.ac, libtiff/{tiff.h, config.h.in}: Added tests for int8,
3044	int16 and int32 types to avoid complains on some compilers. Details at
3045
3046	http://bugzilla.remotesensing.org/show_bug.cgi?id=39
3047
30482004-04-20  Andrey Kiselev  <[email protected]>
3049
3050	* tools/tiff2pdf.c: Fixed problem with unaligned access as per bug
3051
3052	http://bugzilla.remotesensing.org/show_bug.cgi?id=555
3053
30542004-04-14  Andrey Kiselev  <[email protected]>
3055
3056	* libtiff/tif_write.c: Allow in-place updating of the compressed
3057	images (don't work properly with all codecs). For details see GDAL bug
3058
3059	http://bugzilla.remotesensing.org/show_bug.cgi?id=534
3060
30612004-04-06  Andrey Kiselev  <[email protected]>
3062
3063	* libtiff/tif_jpeg.c: Workaround for wrong sampling factors used
3064	in the Intergarph JPEG compressed TIFF images as per bug:
3065
3066	http://bugzilla.remotesensing.org/show_bug.cgi?id=532
3067
30682004-04-04  Frank Warmerdam  <[email protected]>
3069
3070	* libtiff/tif_open.c: close clientdata if TIFFClientOpen() fails
3071	via bad2.
3072
30732004-03-26  Andrey Kiselev  <[email protected]>
3074
3075	* tools/tiffcp.c: Properly set Photometric Interpretation in case of
3076	JPEG compression of grayscale images.
3077
3078	* tools/tiffcp.c: Don't emit warnings when Orientation tag does not
3079	present in the input image.
3080
30812004-03-19  Andrey Kiselev  <[email protected]>
3082
3083	* {many}: The first attempt to switch to autotools.
3084
30852004-03-03  Andrey Kiselev  <[email protected]>
3086
3087	* libtiff/tif_open.c: Use dummy mmap/munmap functions in
3088	TIFFClientOpen() when the appropriate client functions was not
3089	supplied by user.
3090
30912004-03-02  Frank Warmerdam  <[email protected]>
3092
3093	* tools/ycbcr.c: fixed main() declaration as per:
3094	http://bugzilla.remotesensing.org/show_bug.cgi?id=513
3095
30962004-02-26  Andrey Kiselev  <[email protected]>
3097
3098	* tools/tiffsplit.c: Copy JPEGTables tag contents for JPEG compressed
3099	images. Reported by Artem Mirolubov.
3100
3101	* libtiff/tif_dirread.c: Fixed problem with handling TIFF_UNDEFINED
3102	tag type in TIFFFetchNormalTag() as per bug
3103
3104	http://bugzilla.remotesensing.org/show_bug.cgi?id=508
3105
31062004-02-17  Frank Warmerdam  <[email protected]>
3107
3108	* libtiff/tif_codec.c: Fixed typo in TIFFInitPackBits name as per:
3109	http://bugzilla.remotesensing.org/show_bug.cgi?id=494
3110
31112004-02-05  Andrey Kiselev  <[email protected]>
3112
3113	* libtiff/tif_fax3.c: Fixed problem with CCITT encoding modes as per
3114	bug
3115
3116	http://bugzilla.remotesensing.org/show_bug.cgi?id=483
3117
3118	But we need more work on fax codec to support update mode.
3119
31202004-01-30  Frank Warmerdam  <[email protected]>
3121
3122	* libtiff/libtiff.def: Added TIFFCurrentDirOffset, TIFFWriteCheck,
3123	TIFFRGBAImageOK, and TIFFNumberOfDirectories as suggested by
3124	Scott Reynolds.
3125
31262004-01-29  Andrey Kiselev  <[email protected]>
3127
3128	* libtiff/tiff.h: Fixed tag definitions for TIFFTAG_YCLIPPATHUNITS
3129	and TIFFTAG_INDEXED as per bug
3130
3131	http://bugzilla.remotesensing.org/show_bug.cgi?id=475
3132
3133	* libtiff/{tif_win32.c, tif_unix.c}: Check whether the pointer is
3134	NULL before proceeding further as per bug
3135
3136	http://bugzilla.remotesensing.org/show_bug.cgi?id=474
3137
3138	Check results, returned by the TIFFFdOpen() before returning and close
3139	file if TIFFFdOpen() failed as per bug
3140
3141	http://bugzilla.remotesensing.org/show_bug.cgi?id=468
3142
3143	* libtiff/tif_open.c: More fixes for
3144
3145	http://bugzilla.remotesensing.org/show_bug.cgi?id=468
3146
31472004-01-28  Andrey Kiselev  <[email protected]>
3148
3149	* libtiff/{libtiff.def, tif_close.c, tiffio.h, tif_open.c}: Separate
3150	TIFFCleanup() from the TIFFClose() in order to fix the bug
3151
3152	http://bugzilla.remotesensing.org/show_bug.cgi?id=468
3153
3154	* tools/tiffcp.c: Fixed problem with wrong interpretation of the
3155	InkNames tag as per bug
3156
3157	http://bugzilla.remotesensing.org/show_bug.cgi?id=466
3158
3159	Memory leak fixed.
3160
31612004-01-21  Frank Warmerdam  <[email protected]>
3162
3163	* libtiff/tif_dirwrite.c: Fixed handling of writable ASCII tags that
3164	are field_passcount=TRUE properly.  Arguably anonymous custom tags
3165	should be declared as passcount=FALSE, but I don't want to change
3166	that without a careful review.
3167
31682004-01-20  Andrey Kiselev  <[email protected]>
3169
3170	* libtiff/tif_write.c: Fixed reporting size of the buffer in case of
3171	stripped image in TIFFWriteBufferSetup(). As per bug
3172
3173	http://bugzilla.remotesensing.org/show_bug.cgi?id=460
3174
31752004-01-11  Andrey Kiselev  <[email protected]>
3176
3177	* libtiff/tif_dir.c: Incomplete cleanup in TIFFFreeDirectory(),
3178	patch from Gerben Koopmans.
3179
3180	* libtiff/tif_dirread.c: Check field_passcount value before setting
3181	the value of undefined type, patch from Gerben Koopmans.
3182
31832004-01-02  Andrey Kiselev  <[email protected]>
3184
3185	* tools/tiffcp.c: Fixed problem with wrong Photometric setting for
3186	non-RGB images.
3187
31882003-12-31  Andrey Kiselev  <[email protected]>
3189
3190	* libtiff/tif_win32.c: Fixed problem with _TIFFrealloc() when the NULL
3191	pointer passed. Patch supplied by Larry Grill.
3192
3193	* libtiff/{tiff.h, tif_fax3.c}:Fixes for AMD 64 platform as
3194	suggested by Jeremy C. Reed.
3195
31962003-12-26  Andrey Kiselev  <[email protected]>
3197
3198	* libtiff 3.6.1 released.
3199
32002003-12-24  Andrey Kiselev  <[email protected]>
3201
3202	* config.guess, config.sub: Updated from the recent upstream.
3203
32042003-12-22  Andrey Kiselev  <[email protected]>
3205
3206	* libtiff/{tif_color, tif_getimage.c, tiffio.h}, man/TIFFcolor.3t:
3207	More cleanups in color conversion interface, added appropriate manual
3208	page.
3209
32102003-12-19  Andrey Kiselev  <[email protected]>
3211
3212	* libtiff/{tif_extension.c, tif_dirinfo.c, tiff.h}: Warnings fixed as
3213	per bug
3214
3215	http://bugzilla.remotesensing.org/show_bug.cgi?id=357
3216
3217	* tools/tiff2ps.c: Added support for alpha channel. Fixes
3218
3219	http://bugzilla.remotesensing.org/show_bug.cgi?id=428
3220
3221	* libtiff/{libtiff.def, tif_color.c, tif_getimage.c, tiffio.h}:
3222	Interface for Lab->RGB color conversion is finally cleaned up.
3223	Added support for ReferenceBlackWhite tag handling when converted from
3224	YCbCr color space. The latter closes
3225
3226	http://bugzilla.remotesensing.org/show_bug.cgi?id=120
3227
32282003-12-07  Andrey Kiselev  <[email protected]>
3229
3230	* libtiff/{tif_getimage.c, tiffio.h}: Avoid warnings.
3231
3232	* libtiff/makefile.vc, tools/makefile.vc: Support for IJG JPEG
3233	library.
3234
32352003-12-06  Andrey Kiselev  <[email protected]>
3236
3237	* libtiff/{tif_getimage.c, tif_aux.c}: Read WhitePoint tag from the
3238	file and properly use it for CIE Lab->RGB transform.
3239
32402003-12-04  Andrey Kiselev  <[email protected]>
3241
3242	* libtiff/{tif_getimage.c, tif_color.c, tiffio.h}: YCbCr->RGB
3243	conversion routines now in the tif_color.c module. New function
3244	TIFFYCbCrtoRGB() available in TIFF API.
3245
3246	* libtiff/tif_dirwrite.c: Handle TIFF_IFD tag type correctly.
3247
32482003-12-03  Andrey Kiselev  <[email protected]>
3249
3250	* libtiff/{tif_getimage.c, tif_color.c, tiffio.h}: Improvements in
3251	CIE Lab conversion code. Start moving YCbCr stuff to the tif_color.c
3252	module.
3253
3254	* libtiff/{tif_getimage.c, tiffio.h}, man{TIFFReadRGBAImage.3t,
3255	TIFFReadRGBAStrip.3t, TIFFReadRGBATile.3t, TIFFRGBAImage.3t}:
3256	Finally resolved problems with orientation handling. TIFFRGBAImage
3257	interface now properly supports all possible orientations, i.e. images
3258	will be flipped both in horizontal and vertical directions if
3259	required. 'Known bugs' section now removed from the appropriate manual
3260	pages. Closed bug entry:
3261
3262	http://bugzilla.remotesensing.org/show_bug.cgi?id=322
3263
32642003-12-02  Andrey Kiselev  <[email protected]>
3265
3266	* libtiff/tif_dir.c: Fixed order of the parameters in TIFFError()
3267	function calls as per bug
3268
3269	http://bugzilla.remotesensing.org/show_bug.cgi?id=440
3270
32712003-11-28 Ross Finlayson  <[email protected]>
3272
3273	* tools/tiff2pdf.c:  Some bugs fixed.
3274
32752003-11-27  Andrey Kiselev  <[email protected]>
3276
3277	* libtiff/tif_luv.c: Fixed bug in 48-bit to 24-bit conversion routine,
3278	reported by Antonio Scuri.
3279
3280	* man/tiff2pdf.1: Few improvements in page layout.
3281
3282	* Makefile.in, /man/Makefile.in, /html/man/tiff2pdf.1.html:
3283	 Added support fpr tiff2pdf manual page.
3284
32852003-11-26 Ross Finlayson  <[email protected]>
3286
3287	* /man/tiff2pdf.1:  File added to repository.
3288
32892003-11-26  Andrey Kiselev  <[email protected]>
3290
3291	* Makefile.in, /tools/{Makefile.in, makefile.vc}:
3292	 Added support fpr tiff2pdf utility.
3293
32942003-11-25  Ross Finlayson  <[email protected]>
3295
3296	* /tools/tiff2pdf.c:  File added to repository.
3297
32982003-11-22  Andrey Kiselev  <[email protected]>
3299
3300	* /tools/raw2tiff.c: sqrtf() replaced with sqrt().
3301
33022003-11-21  Andrey Kiselev  <[email protected]>
3303
3304	* /tools/raw2tiff.c: #include <getopt.h> removed.
3305
3306	* tools/{Makefile.in, tiffgt.c}: Unmaintained and platform dependent
3307	sgigt utility removed and replaced with the completely rewritten
3308	portable tiffgt tool (depend on OpenGL and GLUT). Initial revision,
3309	there is a lot of things to improve.
3310
3311	* libtiff/tif_ojpeg.c: TIFFVGetField() function now can properly
3312	extract the fields from the OJPEG files. Patch supplied by Ross
3313	Finlayson.
3314
3315	* libtiff/{tiffio.h, tif_codec.c}, man/{libtiff.3t, TIFFcodec.3t}:
3316	Added new function TIFFIsCODECConfigured(), suggested by Ross
3317	Finlayson.
3318
33192003-11-18  Andrey Kiselev  <[email protected]>
3320
3321	* libtiff/tif_dirinfo.c: Implemented binary search in
3322	_TIFFMergeFieldInfo(). Patch supplied by Ross Finlayson.
3323
3324	* libtiff/tif_dir.h: _TIFFFindOrRegisterdInfo declaration replaced
3325	with _TIFFFindOrRegisterFieldInfo as reported by Ross Finlayson.
3326
33272003-11-17  Frank Warmerdam  <[email protected]>
3328
3329	* tif_dirread.c: do not mark all anonymously defined tags to be
3330	IGNOREd.
3331
33322003-11-17  Andrey Kiselev  <[email protected]>
3333
3334	* contrib/pds/{tif_pdsdirread.c, tif_pdsdirwrite.c}: Use
3335	TIFFDataWidth() function insted of tiffDataWidth array.
3336
33372003-11-16  Andrey Kiselev  <[email protected]>
3338
3339	* libtiff/{tiff.h, tif_dirinfo.c}: Added support for IFD (13)
3340	datatype, intruduced in "Adobe PageMaker TIFF Tech. Notes".
3341
33422003-11-15  Frank Warmerdam  <[email protected]>
3343
3344	* Makefile.in: fixed missing backslash for tif_color.c in list.
3345
33462003-11-13  Andrey Kiselev  <[email protected]>
3347
3348	* libtiff/{tif_color.c, tif_getimage.c, tiffio.h, Makefile.in}:
3349	New color space conversion code: CIE L*a*b* 1976 images now supported
3350	by the TIFFRGBAImage interface. All introduced routines go to new
3351	module tif_color.c. Eventually all color conversion functions should
3352	be moved there.
3353
33542003-11-12  Andrey Kiselev  <[email protected]>
3355
3356	* tools/{ras2tiff.c, rasterfile.h}: Properly determine SUN Rasterfiles
3357	with the reverse byte order (it is reported by the magic header
3358	field). Problem reported by Andreas Wiesmann.
3359
3360	* tools/raw2tiff.c, man/raw2tiff.1: Few improvements in correlation
3361	calculation function. Guessing mechanics now documented in manual page.
3362
33632003-11-11  Andrey Kiselev  <[email protected]>
3364
3365	* tools/raw2tiff.c: Implemented image size guessing using
3366	correlation coefficient calculation between two neighbour lines.
3367
33682003-11-09  Frank Warmerdam  <[email protected]>
3369
3370	* libtiff/tif_tile.c: remove spurious use of "s" (sample) in the
3371	planarconfig_contig case in TIFFComputeTile().
3372
3373	http://bugzilla.remotesensing.org/show_bug.cgi?id=387
3374
33752003-11-09  Andrey Kiselev  <[email protected]>
3376
3377	* libtiff/tiffiop.h: New macros: TIFFmax, TIFFmin and TIFFrint.
3378
33792003-11-07  Andrey Kiselev  <[email protected]>
3380
3381	* libtiff/{tiffio.h, tif_strip.c}, man/{TIFFstrip.3t, libtiff.3t}:
3382	Added TIFFRawStripSize() function as suggested by Chris Hanson.
3383
33842003-11-03  Andrey Kiselev  <[email protected]>
3385
3386	* libtiff/{tif_lzw.c, tif_fax3.c}: Proper support for update mode as
3387	per bug
3388
3389	http://bugzilla.remotesensing.org/show_bug.cgi?id=424
3390
33912003-10-29  Andrey Kiselev  <[email protected]>
3392
3393	* libtiff/libtiff.def: Added TIFFReadRGBAImageOriented.
3394
3395	* html/build.html: Added note about GNU make requirement.
3396
33972003-10-25  Andrey Kiselev  <[email protected]>
3398
3399	* Makefile.in: Fixes in using MAKEFLAGS as per bug
3400
3401	http://bugzilla.remotesensing.org/show_bug.cgi?id=418
3402
3403	* port/install.sh.in: Option -p added to the mkdir command to create
3404	all directory tree structure before installing.
3405
34062003-10-18  Andrey Kiselev  <[email protected]>
3407
3408	* /tools/tiff2ps.c: #include <strings.h> replaced with the
3409	#include <string.h>.
3410
34112003-10-16  Andrey Kiselev  <[email protected]>
3412
3413	* Makefile.in: Add an absolute path to the test_pics.sh call.
3414
34152003-10-12  Andrey Kiselev  <[email protected]>
3416
3417	* libtiff/tiffcomp.h: #define _BSDTYPES_DEFINED when defining BSD
3418	typedefs.
3419
34202003-10-09  Andrey Kiselev  <[email protected]>
3421
3422	* configure, libtiff/{Makefile.in, mkversion.c}:
3423	Relative buildings fixed.
3424
3425	* tools/Makefile.in: Added "-I../libtiff" to the tiffset building
3426	rule.
3427
34282003-10-07  Andrey Kiselev  <[email protected]>
3429
3430	* Makefile.in: Added missed v3.6.0.html.
3431
3432	* libtiff/tiffio.h: Typo fixed: ORIENTATION_BOTTOMLEFT replaced with
3433	ORIENTATION_BOTLEFT.
3434
34352003-10-04  Andrey Kiselev  <[email protected]>
3436
3437	* 3.6.0 final release.
3438
34392003-10-03  Andrey Kiselev  <[email protected]>
3440
3441	* libtiff/{tif_getimage.c, tiffio.h}, man/TIFFReadRGBAImage.3t: New
3442	function TIFFReadRGBAImageOriented() implemented to retrieve raster
3443	array with user-specified origin position as suggested by Jason Frank.
3444	See
3445
3446	http://bugzilla.remotesensing.org/show_bug.cgi?id=322
3447
3448	for details.
3449
3450	* tools/tiff2rgba.c: Switched to use TIFFReadRGBAImageOriented()
3451	instead of TIFFReadRGBAImage().
3452
3453	* tools/tiff2ps.c: Fixed possible endless loop as per bug
3454
3455	http://bugzilla.remotesensing.org/show_bug.cgi?id=404
3456
34572003-09-30  Andrey Kiselev  <[email protected]>
3458
3459	* libtiff/tif_dirread.c: Check field counter against number of fields
3460	in order to fix
3461
3462	http://bugzilla.remotesensing.org/show_bug.cgi?id=366
3463
3464	* libtiff/tif_fax3.c: Fix wrong line numbering as per bug
3465
3466	http://bugzilla.remotesensing.org/show_bug.cgi?id=342
3467
34682003-09-25  Andrey Kiselev  <[email protected]>
3469
3470	* libtiff/{tiffiop.h, tif_dirread.c, tif_dir.c, tif_open.c,
3471	tif_close.c}: Store a list of opened IFD to prevent looping as per bug
3472
3473	http://bugzilla.remotesensing.org/show_bug.cgi?id=383
3474
34752003-09-23  Andrey Kiselev  <[email protected]>
3476
3477	* libtiff/tif_dirread.c: More fixes for	EstimateStripByteCounts(). See
3478
3479	http://bugzilla.remotesensing.org/show_bug.cgi?id=358
3480
34812003-08-21  Andrey Kiselev  <[email protected]>
3482
3483	* tools/tiffmedian.c: int declaration replaced with the uint32 to
3484	support large images as per bug
3485
3486	http://bugzilla.remotesensing.org/show_bug.cgi?id=382
3487
34882003-08-12  Andrey Kiselev  <[email protected]>
3489
3490 	* libtiff/Makefile.in: Fixed problem with building in different
3491	directory.
3492
3493	* tools/tiff2ps.c: Added missing #include <strings.h>.
3494
3495	* libtiff/tif_dirwrite.c: More fixes for custom tags code
3496	from Ashley Dreier.
3497
34982003-08-07  Andrey Kiselev  <[email protected]>
3499
3500	* tools/tiff2ps.c: Added page size setting when creating PS Level 2.
3501	Patch submitted by Balatoni Denes (with corrections from Tom
3502	Kacvinsky).
3503
3504	* tools/tiff2ps.c: Fixed PS comment emitted when FlateDecode is
3505	being used. Reported by Tom Kacvinsky.
3506
3507	* libtiff/tif_dirwrite.c: Fixed problem with custom tags writing,
3508	reported by Ashley Dreier.
3509
3510	* libtiff/tif_print.c: Fixed problem with float tags reading, support
3511	for printing RATIONAL and BYTE tags added.
3512
35132003-08-05  Andrey Kiselev  <[email protected]>
3514
3515	* libtiff/tif_lzw.c: Move LZW codec state block allocation back to
3516	TIFFInitLZW(), because its initialization in LZWSetupDecode() cause
3517	problems with predictor initialization. Remove O_RDONLY check during
3518	state block allocation to be able open LZW compressed files in update
3519	mode.
3520
3521	Problem exist for libtiff version of the tif_lzw.c module. One from
3522	lzw-compression-kit hasn't such troubles.
3523
35242003-08-04  Frank Warmerdam  <[email protected]>
3525
3526	* libtiff/tif_write.c: modified tif_write.c so that the various
3527	encoded write functions use tif_postdecode() to apply byte order
3528	swapping (swab) to the application passed data buffer if the same
3529	would be done when reading.  This allows us to write pixel data with
3530	more than 8 bits per sample to existing files of a non-native byte
3531	order.  One side effect of this change is the applications buffer
3532	itself is altered in this case by the act of writing.
3533
3534	http://bugzilla.remotesensing.org/show_bug.cgi?id=171
3535
35362003-07-25  Frank Warmerdam  <[email protected]>
3537
3538	* libtiff/tif_open.c: avoid signed/unsigned casting warning
3539	initializing typemask as per patch from J.A. Strother.
3540
3541	* tools/tiffcp.c: fixed signed/unsigned casting warning.
3542
3543	* libtiff/tif_print.c: dos2unix conversion.
3544
3545	* tools/tiffsplit.c: increased the maximum number of pages that
3546	can be split.  Patch provided by Andrew J. Montalenti.
3547
35482003-07-11  Andrey Kiselev  <[email protected]>
3549
3550	* tools/raw2tiff.c: Added option `-p' to explicitly select color
3551	space of input image data. Closes
3552
3553	http://bugzilla.remotesensing.org/show_bug.cgi?id=364
3554
35552003-07-08  Frank Warmerdam  <[email protected]>
3556
3557	* tif_aux.c, tif_codec.c, tif_dir.c, tif_dirread.c, tif_extension.c,
3558	tif_fax3.c, tif_getimage.c, tif_luv.c, tif_lzw.c, tif_next.c,
3559	tif_packbits.c, tif_predict.c, tif_print.c, tif_swab.c, tif_thunder.c:
3560	avoid casting warning at /W4.
3561
35622003-07-03  Andrey Kiselev  <[email protected]>
3563
3564	* tools/thumbnail.c: Memory leak fixed as reported by Robert S. Kissel.
3565
35662003-06-30  Andrey Kiselev  <[email protected]>
3567
3568	* libtiff/tif_pixarlog.c: Unused variables removed.
3569
3570	* libtiff/{tif_dirread.c, tif_dir.c}: Fixed problem with
3571	EstimateStripByteCounts() as per bug
3572
3573	http://bugzilla.remotesensing.org/show_bug.cgi?id=358
3574
3575	* libtiff/{tif_dirwrite.c, tif_packbits.c}: Fixed compilation on
3576	64-bit architectures as per bug
3577
3578	http://bugzilla.remotesensing.org/show_bug.cgi?id=357
3579
3580	* libtiff/tif_dirinfo.c: TIFFDataWidth() returns 0 in case of
3581	unknown data type.
3582
35832003-06-19  Frank Warmerdam  <[email protected]>
3584
3585	* libtiff/tif_print.c: fixed some serious bugs when printing
3586	custom tags ... almost certain to crash.
3587
3588	* libtiff/tif_dirread.c: Don't ignore custom fields that are
3589	autodefined.  Not sure how this got to be like this.
3590
35912003-06-18  Andrey Kiselev  <[email protected]>
3592
3593	* 3.6.0 Beta2 released.
3594
3595	* tools/tiffcmp.c, man/tiffcmp.1: Fixed problem with unused data
3596	comparing as per bug
3597
3598	http://bugzilla.remotesensing.org/show_bug.cgi?id=349
3599
3600	`-z' option now can be used to set the number of reported different
3601	bytes.
3602
36032003-06-09  Andrey Kiselev  <[email protected]>
3604
3605	* tools/tiffcp.c, man/tiffcp.1: Added possibility to specify value -1
3606	to -r option to get the entire image as one strip. See
3607
3608	http://bugzilla.remotesensing.org/show_bug.cgi?id=343
3609
3610	for details.
3611
36122003-06-04  Andrey Kiselev  <[email protected]>
3613
3614	* tools/tiffcp.c: Set the correct RowsPerStrip and PageNumber
3615	values as per bug
3616
3617	http://bugzilla.remotesensing.org/show_bug.cgi?id=343
3618
36192003-05-27  Frank Warmerdam  <[email protected]>
3620
3621	* libtiff/tif_jpeg.c: modified segment_height calculation to always
3622	be a full height tile for tiled images.  Also changed error to just
3623	be a warning.
3624
36252003-05-25  Andrey Kiselev  <[email protected]>
3626
3627	* tools/fax2tiff.c: Page numbering fixed, as per bug
3628
3629	http://bugzilla.remotesensing.org/show_bug.cgi?id=341
3630
36312003-05-20  Andrey Kiselev  <[email protected]>
3632
3633	* contrib/ojpeg/{Makefile.in, jdhuff.h, jinclude.h, ojpeg.c, README},
3634	configure, Makefile.in:	Switched back to the old behaviour. Likely
3635	better solution should be found for OJPEG support.
3636
36372003-05-11  Andrey Kiselev  <[email protected]>
3638
3639	* libtiff/mkversion.c: Fixed problem with wrong string size when
3640	reading RELEASE-DATE file.
3641
36422003-05-07  Andrey Kiselev  <[email protected]>
3643
3644	* tools/tiff2ps.c: Fixed bug in Ascii85EncodeBlock() function: array
3645	index was out of range.
3646
36472003-05-06  Andrey Kiselev  <[email protected]>
3648
3649	* contrib/ojpeg/{Makefile.in, jdhuff.h, jinclude.h, ojpeg.c, README},
3650	configure, Makefile.in:	Improved libtiff compilation with OJPEG
3651	support. Now no need for patching IJG JPEG library, hack requred by
3652	libtiff will be compiled and used in-place. Implemented with
3653	suggestion and help from Bill Allombert, Debian's libjpeg maintainer.
3654
3655	* libtiff/tif_aux.c: Properly handle TIFFTAG_PREDICTOR in
3656	TIFFVGetFieldDefaulted() function.
3657
36582003-05-05  Andrey Kiselev  <[email protected]>
3659
3660	* tools/ppm2tiff.c: PPM header parser improved: now able to skip
3661	comments.
3662
3663	* tools/tiffdither.c: Fixed problem with bit fill order tag setting:
3664	was not copied from source image.
3665
3666	* libtiff/getimage.c: Workaround for some images without correct
3667	info about alpha channel as per bug
3668
3669	http://bugzilla.remotesensing.org/show_bug.cgi?id=331
3670
36712003-04-29  Andrey Kiselev  <[email protected]>
3672
3673	* tools/tiff2ps.c, man/tiff2ps.1: Add ability to generate PS Level 3.
3674	It basically allows one to use the /flateDecode filter for ZIP
3675	compressed TIFF images. Patch supplied by Tom Kacvinsky. Fixes
3676
3677	http://bugzilla.remotesensing.org/show_bug.cgi?id=328
3678
3679	* tools/tiff2ps.c: Force deadzone printing when EPS output specified
3680	as per bug
3681
3682	http://bugzilla.remotesensing.org/show_bug.cgi?id=325
3683
36842003-04-17  Andrey Kiselev  <[email protected]>
3685
3686	* libtiff/tif_dirread.c: Removed additional check for StripByteCounts
3687	due to problems with multidirectory images. Quality of error messages
3688	improved.
3689
36902003-04-16  Andrey Kiselev  <[email protected]>
3691
3692	* tools/tiffcp.c: Fixed problem with colorspace conversion for JPEG
3693	encoded images. See bug entries
3694
3695	http://bugzilla.remotesensing.org/show_bug.cgi?id=275
3696
3697	and
3698
3699	http://bugzilla.remotesensing.org/show_bug.cgi?id=23
3700
3701	* libtiff/tif_dirread.c: Additional check for StripByteCounts
3702	correctness. Fixes
3703
3704	http://bugzilla.remotesensing.org/show_bug.cgi?id=320
3705
37062003-03-12  Andrey Kiselev  <[email protected]>
3707
3708	* tools/{fax2ps.c, fax2tiff.c, gif2tiff.c, pal2rgb.c, ppm2tiff.c,
3709	ras2tiff.c, raw2tiff.c, rgb2ycbcr.c, thumbnail.c, tiff2bw.c,
3710	tiff2ps.c, tiff2rgba.c, tiffcp.c, tiffdither.c, tiffinfo.c,
3711	tiffmedian.c}: Added library version reporting facility to all tools.
3712
37132003-03-06  Frank Warmerdam  <[email protected]>
3714
3715	* port/install.sh.in: Fixed problems with install producing paths
3716	like ///usr/local/lib on cygwin.
3717
37182003-02-27  Andrey Kiselev  <[email protected]>
3719
3720	* tools/fax2tiff.c, man/fax2tiff.1: New switch (-X) to set width of
3721	raw input page. Patch supplied by Julien Gaulmin. See
3722
3723	http://bugzilla.remotesensing.org/show_bug.cgi?id=293
3724
3725	for details.
3726
37272003-02-26  Frank Warmerdam  <[email protected]>
3728
3729	* libtiff/tif_dir.c: fixed up the tif_postdecode settings
3730	responsible for byte swapping complex image data.
3731
3732	* libtiff/tif_lzw.c: fixed so that decoder state isn't allocated till
3733	LZWSetupDecode().  Needed to read LZW files in "r+" mode.
3734
37352003-02-07  Andrey Kiselev  <[email protected]>
3736
3737	* tools/ppm2tiff.c: Fixed problem with too many arguments.
3738
37392003-02-04  Andrey Kiselev  <[email protected]>
3740
3741	* tools/raw2tiff.c: Memory leak fixed.
3742
37432003-02-03  Andrey Kiselev  <[email protected]>
3744
3745	* tools/fax2tiff.c, man/fax2tiff.1: Applied patch from Julien Gaulmin
3746	(thanks, Julien!). More switches for fax2tiff tool for better control
3747	of input and output. Details at
3748
3749	http://bugzilla.remotesensing.org/show_bug.cgi?id=272
3750
37512003-02-03  Frank Warmerdam  <[email protected]>
3752
3753	* libtiff/tif_jpeg.c: Modified to defer initialization of jpeg
3754	library so that we can check if there is already any tile/strip data
3755	before deciding between creating a compressor or a decompressor.
3756
37572003-01-31  Frank Warmerdam  <[email protected]>
3758
3759	* libtiff/tif_write.c: TIFFWriteCheck() now fails if the image is
3760	a pre-existing compressed image.  That is, image writing to
3761	pre-existing compressed images is not allowed.
3762
3763	* libtiff/tif_open.c: Removed error if opening a compressed file
3764	in update mode.
3765
3766	http://bugzilla.remotesensing.org/show_bug.cgi?id=198
3767
37682003-01-31  Andrey Kiselev  <[email protected]>
3769
3770	* config.guess, config.sub: Updated to recent upstream versions.
3771
37722003-01-15  Frank Warmerdam  <[email protected]>
3773
3774	* cut 3.6.0 Beta release.
3775
37762002-12-20  Andrey Kiselev  <[email protected]>
3777
3778	* tools/fax2ps.c, man/fax2ps.1: Page size was determined
3779	in wrong way as per bug
3780
3781	http://bugzilla.remotesensing.org/show_bug.cgi?id=239
3782
37832002-12-17  Frank Warmerdam  <[email protected]>
3784
3785	* libtiff/tif_dirread.c: Allow wrong sized arrays in
3786	TIFFFetchStripThing().
3787
3788	http://bugzilla.remotesensing.org/show_bug.cgi?id=49
3789
37902002-12-02  Frank Warmerdam  <[email protected]>
3791
3792	* libtiff/tif_dir.c: fix problem with test on td_customValueCount.
3793	Was using realloc even first time.  Fix by Igor Venevtsev.
3794
37952002-11-30  Frank Warmerdam  <[email protected]>
3796
3797	* libtiff/tif_dir.c: fixed bug with resetting an existing custom
3798	field value.
3799
3800	* libtiff/tif_dir.c: Fixed potential problem with ascii "custom"
3801	tags in TIFFVGetField() ... added missing break.
3802
38032002-10-14  Frank Warmerdam  <[email protected]>
3804
3805	* tools/tiff2ps.c: fixes a problem where "tiff2ps -1e" did not make
3806	the scanline buffer long enough when writing rgb triplets.
3807	The scanline needs to be 3 X the number of dots or else it will
3808	contain	an incomplete triplet and programs that try to separate
3809	the eps by redefining the colorimage operator will get messed up.
3810	Patch supplied by William Bader.
3811
3812	* Makefile.in: added tif_extension.c to file list as per
3813	http://bugzilla.remotesensing.org/show_bug.cgi?id=218.
3814
38152002-10-11  Andrey Kiselev  <[email protected]>
3816
3817	* configure, config.site, libtiff/{tif_unix.c, Makefile.in}: Fix for
3818	large files (>2GiB) supporting. New option in the config.site:
3819	LARGEFILE="yes". Should be enough for I/O of the large files.
3820
38212002-10-10  Frank Warmerdam  <[email protected]>
3822
3823	* libtiff/html/v3.6.0.html: new release notes.
3824
3825	* libtiff/index.html: removed faq, cvs snapshot cruft.  Added email
3826	link for Andrey.  Pointer to v3.6.0.html.
3827
3828	* libtiff/Makefile.in: added direct rule for tiffvers.h for release.
3829
38302002-10-07  Andrey Kiselev  <[email protected]>
3831	* tools/tiff2ps.c, man/tiff2ps.1: Applied patch form Sebastian Eken
3832	(thanks, Sebastian!). New switches:
3833	-b # for a bottom margin of # inches
3834	-c   center image
3835	-l # for a left margin of # inches
3836	-r   rotate the image by 180 degrees
3837	New features merged with code for shrinking/overlapping.
3838	Previously added -c and -n switches (for overriding PS units) renamed
3839	in -x and -y respectively.
3840
3841	http://bugzilla.remotesensing.org/show_bug.cgi?id=200
3842
3843	* html/man/*.html: Updated from actual manual pages.
3844
38452002-10-06  Frank Warmerdam  <[email protected]>
3846
3847	* libtiff/tif_jpeg.c: fixed problem with boolean defined with wrong
3848	size on windows.  Use #define boolean hack.
3849
3850	http://bugzilla.remotesensing.org/show_bug.cgi?id=188
3851
3852	* libtiff/tiff.h: Don't do special type handling in tiff.h unless
3853	USING_VISUALAGE is defined.
3854
3855	http://bugzilla.remotesensing.org/show_bug.cgi?id=39
3856
38572002-10-03  Frank Warmerdam  <[email protected]>
3858
3859	* libtiff/tiff.h: added COMPRESSION_JP2000.
3860
38612002-10-02  Andrey Kiselev  <[email protected]>
3862
3863	* libtiff/tif_dirread.c: Another fix for the fetching SBYTE arrays
3864	by the TIFFFetchByteArray() function. Should finally resolve
3865
3866	http://bugzilla.remotesensing.org/show_bug.cgi?id=52
3867
3868	* configure: Set -DPIXARLOG_SUPPORT option along with -DZIP_SUPPORT
3869
3870	* html/Makefile.in: New targets added: html and groffhtml for
3871	producing HTML representations of the manual pages automatically.
3872	html target uses man2html tool, groffhtml uses groff tool.
3873
38742002-09-29  Frank Warmerdam  <[email protected]>
3875
3876	* configure, libtiff/Makefile.in: Added SCO OpenServer 5.0.6 support
3877	from John H. DuBois III.
3878
38792002-09-15  Andrey Kiselev  <[email protected]>
3880
3881	* Makefile.in, /man/{raw2tiff.1, Makefile.in, libtiff.3}: Added
3882	manual page for raw2tiff(1) tool.
3883
38842002-09-12  Andrey Kiselev  <[email protected]>
3885
3886	* /libtiff/{tiffio.h, tif_dir.h}: TIFFDataWidth() declaration moved to
3887	the tiffio.h header file.
3888
3889	* Makefile.in, /man/{TIFFDataWidth.3t, Makefile.in, libtiff.3}: Added
3890	manual page for TIFFDataWidth() function
3891
38922002-09-08  Frank Warmerdam  <[email protected]>
3893
3894	* libtiff/tif_dirread.c: Expand v[2] to v[4] in TIFFFetchShortPair()
3895	as per http://bugzilla.remotesensing.org/show_bug.cgi?id=196.
3896
3897	* tools/tiff2ps.c: Don't emit BeginData/EndData DSC comments
3898	since we are unable to properly include the amount to skip.
3899
3900	http://bugzilla.remotesensing.org/show_bug.cgi?id=80
3901
39022002-09-02  Andrey Kiselev  <[email protected]>
3903
3904	* /libtiff/tif_dirread.c: Fixed problem with SBYTE type data fetching
3905	in TIFFFetchByteArray(). Problem described at
3906	http://bugzilla.remotesensing.org/show_bug.cgi?id=52
3907
39082002-08-22  Andrey Kiselev  <[email protected]>
3909
3910	* /libtiff/tif_dirinfo.c: Further additions to free custom fields
3911	in _TIFFSetupFieldInfo() function.
3912	See http://bugzilla.remotesensing.org/show_bug.cgi?id=169 for details.
3913
3914	* /libtiff/tif_lzw.c: Additional consistency checking added in
3915	LZWDecode() and LZWDecodeCompat().
3916	Fixes http://bugzilla.remotesensing.org/show_bug.cgi?id=190
3917	and http://bugzilla.remotesensing.org/show_bug.cgi?id=100
3918
3919	* /libtiff/tif_lzw.c:
3920	Added check for valid code lengths in LZWDecode() and
3921	LZWDecodeCompat(). Fixes
3922	http://bugzilla.remotesensing.org/show_bug.cgi?id=115
3923
39242002-08-16  Andrey Kiselev  <[email protected]>
3925
3926	* /libtiff/{Makefile.vc, libtiff.def}:
3927	Missed declarations added.
3928
39292002-08-15  Frank Warmerdam  <[email protected]>
3930
3931	* tif_getimage.c: Ensure that TIFFRGBAImageBegin() returns the
3932	return code from the underlying pick function.
3933
3934	http://bugzilla.remotesensing.org/show_bug.cgi?id=177
3935
3936	* tif_dir.h: changed FIELD_CODEC to 66 from 64 to avoid overlap
3937	with FIELD_CUSTOM as mentioned in bug 169.
3938
3939	* tif_close.c: added logic to free dynamically created anonymous
3940	field definitions to correct a small memory leak.
3941
3942	http://bugzilla.remotesensing.org/show_bug.cgi?id=169
3943
39442002-08-10  Andrey Kiselev  <[email protected]>
3945
3946	* /tools/{raw2tiff.c, Makefile.in, Makefile.lcc, Makefile.vc}:
3947	New tool: raw2tiff --- raw images to TIFF converter. No manual page yet.
3948
39492002-07-31  Frank Warmerdam  <[email protected]>
3950
3951	* libtiff/tif_jpeg.c: Fixed problem with setting of nrows in
3952	JPEGDecode() as per bugzilla bug (issue 1):
3953
3954	http://bugzilla.remotesensing.org/show_bug.cgi?id=129
3955
3956	* libtiff/{tif_jpeg.c,tif_strip.c,tif_print.c}: Hacked tif_jpeg.c to
3957	fetch TIFFTAG_YCBCRSUBSAMPLING from the jpeg data stream if it isn't
3958	present in the tiff tags.
3959
3960	http://bugzilla.remotesensing.org/show_bug.cgi?id=168
3961
3962	* libtiff/tif_read.c, libtiff/tif_write.c: TIFFReadScanline() and
3963	TIFFWriteScanline() now set tif_row explicitly in case the codec has
3964	fooled with the value.
3965
3966	http://bugzilla.remotesensing.org/show_bug.cgi?id=129
3967
39682002-06-22  Andrey Kiselev  <[email protected]>
3969
3970	* /tools/tiff2ps.c: Added workaround for some software that may crash
3971	when last strip of image contains fewer number of scanlines than
3972	specified by the `/Height' variable. See
3973	http://bugzilla.remotesensing.org/show_bug.cgi?id=164
3974	for explanation.
3975
39762002-06-21  Andrey Kiselev  <[email protected]>
3977
3978	* tools/tiff2ps, man/tiff2ps.1: New functionality for tiff2ps utility:
3979	splitting long images in several pages. See
3980	http://bugzilla.remotesensing.org/show_bug.cgi?id=142 for explanation.
3981	Patch granted by John Williams <[email protected]>.
3982
39832002-06-11  Frank Warmerdam  <[email protected]>
3984
3985	* libtiff/contrib/win95: renamed to contrib/win_dib.  Added new
3986	Tiffile.cpp example of converting TIFF files into a DIB on Win32.
3987	This one is described in:
3988
3989	http://bugzilla.remotesensing.org/show_bug.cgi?id=143
3990
3991	* libtiff/tif_ojpeg.c: Major upgrade from Scott.  See details at:
3992
3993	http://bugzilla.remotesensing.org/show_bug.cgi?id=156
3994
39952002-05-10  Andrey Kiselev  <[email protected]>
3996
3997	* tools/tiff2ps: New commandline switches to override resolution
3998	units obtained from the input file. Closes
3999	http://bugzilla.remotesensing.org/show_bug.cgi?id=131
4000
40012002-04-26  Andrey Kiselev  <[email protected]>
4002
4003	* libtiff/libtiff.def: Added missed declaration.
4004
40052002-04-22  Andrey Kiselev  <[email protected]>
4006
4007	* tools/fax2tiff.c: Updated to reflect latest changes in libtiff.
4008	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=125
4009
40102002-04-20  Andrey Kiselev  <[email protected]>
4011
4012	* libtiff/tif_open.c: Pointers to custom procedures
4013	in TIFFClientOpen() are checked to be not NULL-pointers.
4014
40152002-04-18  Andrey Kiselev  <[email protected]>
4016
4017	* libtiff/libtiff.def: Added missed declarations.
4018
4019	* libtiff/tif_pixarlog.c: Updated for using tif_tagmethods structure.
4020
40212002-04-16  Andrey Kiselev  <[email protected]>
4022
4023	* libtiff/tif_lzw.c: Additional checks for data integrity introduced.
4024	Should finally close
4025	http://bugzilla.remotesensing.org/show_bug.cgi?id=100
4026
40272002-04-10  Andrey Kiselev  <[email protected]>
4028
4029	* tools/tiff2ps: Division by zero fixed.
4030	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=88
4031
40322002-04-09  Andrey Kiselev  <[email protected]>
4033
4034	* libtiff/: tif_dirwrite.c, tif_write.c, tiffio.h:
4035	TIFFCheckpointDirectory() routine added.
4036	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=124
4037
4038	* man/: TIFFWriteDirectory.3t,  Makefile.in: Added description
4039	for the new function.
4040
40412002-04-08  Andrey Kiselev  <[email protected]>
4042
4043	* libtiff/: tif_codec.c, tif_compress.c, tiffiop.h: Introduced
4044	additional members tif->tif_decodestatus and tif->tif_encodestatus
4045	for correct handling of unconfigured codecs (we should not try to read
4046	data or to define data size without correct codecs).
4047
4048	* libtiff/tif_getimage.c: The way of codecs checking in TIFFRGBAImageOK
4049	changed. Now it has used tif->tif_decodestatus and
4050	tif->tif_encodestatus.
4051	Should fix http://bugzilla.remotesensing.org/show_bug.cgi?id=119 (in
4052	case of __cvs_8.tif test image).
4053
4054	* libtiff/: tif_dirinfo.c, tif_dirread.c: Somebody makes a bug in
4055	tif_dirread.c when TIFFCreateAnonFieldInfo was introduced.
4056	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=119 in case
4057	of _cvs_00000-00.tif, _cvs_00000-01.tif and _cvs_00000-02.tif.
4058
40592002-04-04  Andrey Kiselev  <[email protected]>
4060
4061	* libtiff/: tif_lzw.c: Assertions in LZWDecode and LZWDecodeCompat
4062	replaced by warnings. Now libtiff should read corrupted LZW-compressed
4063	files by skipping bad strips.
4064	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=100
4065
40662002-04-03  Frank Warmerdam  <[email protected]>
4067
4068	* libtiff/tif_dirwrite.c: Removed some dead code.
4069
4070	* libtiff/*: Cleanup some warnings.
4071
4072	* libtiff/tif_dir.c: Fixed bug with count returned by TIFFGetField()
4073	for variable length FIELD_CUSTOM values.  Was int * but should be
4074	u_short *.
4075
40762002-04-01  Andrey Kiselev  <[email protected]>
4077
4078	* tools/: tifcp.c: Added support for 'Orientation' tag in tiffcp
4079	utility (at cpStripToTile routine).
4080
40812002-03-27  Frank Warmerdam  <[email protected]>
4082
4083	* tif_dirread.c: avoid div-by-zero if rowbytes is zero in chop func.
4084
4085	http://bugzilla.remotesensing.org/show_bug.cgi?id=111
4086
4087	* tif_print.c: Fixed so that ASCII FIELD_CUSTOM values with
4088	passcount set FALSE can be printed (such as TIFFTAG_SOFTWARE).
4089
4090	* libtiff/tif_dir.c,tif_dirinfo.c,tif_dir.h,tif_ojpeg.c: modified so
4091	that TIFFTAG_SOFTWARE uses FIELD_CUSTOM as an example.
4092
40932002-03-26  Dwight Kelly  <[email protected]>
4094
4095	* libtiff/: tiff.h, tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_dirread.c,
4096	tif_dirwrite.c: Added get/put code for new tag XMLPACKET as defined
4097	in Adobe XMP Technote. Added missing INKSET tag value from TIFF 6.0 spec
4098	INKSET_MULTIINK (=2). Added missing tags from Adobe TIFF technotes:
4099	CLIPPATH, XCLIPPATHUNITS, YCLIPPATHUNITS, OPIIMAGEID, OPIPROXY and
4100	INDEXED. Added PHOTOMETRIC tag value from TIFF technote 4 ICCLAB (=9).
4101
41022002-03-26  Andrey Kiselev  <[email protected]>
4103
4104	* libtiff/: tif_getimage.c: TIFFReadRGBAStrip and TIFFReadRGBATile
4105	now also uses TIFFRGBAImageOK before reading. This is additional fix
4106	for http://bugzilla.remotesensing.org/show_bug.cgi?id=110
4107
41082002-03-25  Andrey Kiselev  <[email protected]>
4109
4110	* libtiff/: tif_getimage.c: Additional check for supported
4111	codecs added in TIFFRGBAImageOK and TIFFReadRGBAImage now uses
4112	TIFFRGBAImageOK before reading.
4113	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=110
4114
41152002-03-15  Andrey Kiselev  <[email protected]>
4116
4117	* libtiff/: tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_dirread.c,
4118	tif_dirwrite.c: Added routine TIFFDataWidth for detrmining
4119	TIFFDataType sizes instead of working with tiffDataWidth array
4120	directly. Should prevent out-of-borders bugs in case of unknown or
4121	broken data types.  EstimateStripByteCounts routine modified, so it
4122	won't work when tags with uknown sizes founded.
4123	Closes http://bugzilla.remotesensing.org/show_bug.cgi?id=109
4124
41252002-03-13  Andrey Kiselev  <[email protected]>
4126
4127	* libtiff/tif_getimage.c: Added support for correct handling
4128	`Orientation' tag in gtTileContig. Should be added in other gt*
4129	functions as well, but I have not images for testing yet. Partially
4130	resolves http://bugzilla.remotesensing.org/show_bug.cgi?id=23
4131
41322002-03-10  Andrey Kiselev  <[email protected]>
4133
4134	* libtiff/: tif_dirinfo.c, tif_dirwrite.c: Added possibility to
4135	read broken TIFFs with LONG type used for TIFFTAG_COMPRESSION,
4136	TIFFTAG_BITSPERSAMPLE, TIFFTAG_PHOTOMETRIC.  Closes
4137	http://bugzilla.remotesensing.org/show_bug.cgi?id=99
4138
41392002-03-08  Andrey Kiselev  <[email protected]>
4140
4141	* libtiff/Makefile.in, tools/Makefile.in: Shared library will not
4142	be stripped when installing, utility binaries will do.	Closes
4143	http://bugzilla.remotesensing.org/show_bug.cgi?id=93
4144
41452002-02-28  Frank Warmerdam  <[email protected]>
4146
4147	* man/TIFFGetField: fixed type of TIFFTAG_COPYRIGHT.
4148
4149	* man/libtiff.3t: added copyright tag info.
4150
41512002-02-11  Frank Warmerdam  <[email protected]>
4152
4153	* libtiff/{tiff.h,tif_fax3.c}: Add support for __arch64__.
4154
4155	http://bugzilla.remotesensing.org/show_bug.cgi?id=94
4156
4157	* man/Makefile.in: Patch DESTDIR handling
4158
4159	http://bugzilla.remotesensing.org/show_bug.cgi?id=95
4160
4161	* configure: OpenBSD changes for Sparc64 and DSO version.
4162
4163	http://bugzilla.remotesensing.org/show_bug.cgi?id=96
4164
41652002-02-05  Frank Warmerdam  <[email protected]>
4166
4167	* config.site/configure: added support for OJPEG=yes option to enable
4168	OJPEG support from config.site.
4169
41702002-01-27  Frank Warmerdam  <[email protected]>
4171
4172	* html/document.html: fixed links for TIFf 6 docs.
4173
41742002-01-18  Frank Warmerdam  <[email protected]>
4175
4176	* config.guess, config.sub: Updated from ftp.gnu.org/pub/config.
4177
4178	* libtiff/tif_read.c: Fixed TIFFReadEncodedStrip() to fail if the
4179	decodestrip function returns anything not greater than zero as per
4180	http://bugzilla.remotesensing.org/show_bug.cgi?id=97
4181
4182	* configure: Modify CheckForBigEndian so it can work in a cross
4183	compiled situation.
4184
41852002-01-16  Frank Warmerdam  <[email protected]>
4186
4187	* tools/tiffdump.c: include TIFFTAG_JPEGTABLES in tag list.
4188
4189	* tools/tiffset.c: fix bug in error reporting.
4190
4191	* tools/tiffcp.c: fix several warnings that show up with -Wall.
4192
41932002-01-04  Frank Warmerdam  <[email protected]>
4194
4195	* libtiff/tif_jpeg.c: fixed computation of segment_width for
4196	tiles files to avoid error about it not matching the
4197	cinfo.d.image_width values ("JPEGPreDecode: Improper JPEG strip/tile
4198	size.") for ITIFF files.  Apparently the problem was incorporated since
4199	3.5.5, presumably during the OJPEG/JPEG work recently.
4200
42012001-12-15  Frank Warmerdam  <[email protected]>
4202
4203	* configure, libtiff/Makefile.in: Changes for building on MacOS 10.1.
4204
4205	http://bugzilla.remotesensing.org/show_bug.cgi?id=94
4206
4207	* libtiff/tif_getimage.c: If DEFAULT_EXTRASAMPLE_AS_ALPHA is 1
4208	(defined in tiffconf.h - 1 by default) then the RGBA interface
4209	will assume that a fourth extra sample is ASSOCALPHA if the
4210	EXTRASAMPLE value isn't set for it.  This changes the behaviour of
4211	the library, but makes it work better with RGBA files produced by
4212	lots of applications that don't mark the alpha values properly.
4213
4214	http://bugzilla.remotesensing.org/show_bug.cgi?id=93
4215	http://bugzilla.remotesensing.org/show_bug.cgi?id=65
4216
42172001-12-12  Frank Warmerdam  <[email protected]>
4218
4219	* libtiff/tif_jpeg.c: allow jpeg data stream sampling values to
4220	override those from tiff directory.  This makes this work with
4221	ImageGear generated files.
4222
42232001-12-07  Frank Warmerdam  <[email protected]>
4224
4225	* html/Makefile.in: added missing images per bug 92.
4226
4227	* port/Makefile.in: fixed clean target per bug 92.
4228
42292001-11-28  Frank Warmerdam  <[email protected]>
4230
4231	* Reissue 3.5.7 release.
4232
4233	* libtiff/mkversion.c: Fix output of TIFF_VERSION to be
4234	YYYYMMDD so that it is increasing over time.
4235
4236	* Makefile.in: Ensure that tiffvers.h is regenerated in the
4237	make release target.
4238
4239	* Makefile.in: added libtiff/tiffvers.h to the release file list.
4240
42412001-11-23  Frank Warmerdam  <[email protected]>
4242
4243	* added html/v3.5.7.html, updated html/index.html.
4244
4245	* Makefile.in: added contrib/addtiffo/tif_ovrcache.{c,h}.
4246
42472001-11-15  Frank Warmerdam  <[email protected]>
4248
4249	* configure: fixed test for -lm.
4250
42512001-11-02  Frank Warmerdam  <[email protected]>
4252
4253	* Added PHOTOMETRIC_ITULAB as per bug 90.
4254
4255	http://bugzilla.remotesensing.org/show_bug.cgi?id=90
4256
42572001-10-10  Frank Warmerdam  <[email protected]>
4258
4259	* libtiff/tiff.h: I have created COMPRESSION_CCITT_T4,
4260	COMPRESSION_CCITT_T6, TIFFTAG_T4OPTIONS and TIFFTAG_T6OPTIONS aliases
4261	in keeping with TIFF 6.0 standard in tiff.h
4262
4263	http://bugzilla.remotesensing.org/show_bug.cgi?id=83
4264
42652001-09-26  Frank Warmerdam  <[email protected]>
4266
4267	* libtiff/tif_dirwrite.c: added TIFFRewriteDirectory() function.
4268	Updated TIFFWriteDirectory man page to include TIFFRewriteDirectory.
4269
42702001-09-24  Frank Warmerdam  <[email protected]>
4271
4272	* libtiff/tif_lzw.c: Avoid MS VC++ 5.0 optimization bug.
4273
4274	http://bugzilla.remotesensing.org/show_bug.cgi?id=78
4275
4276	* libtiff/tif_lzw.c: added dummy LZWSetupEncode() to report an
4277	error about LZW not being available.
4278
4279	* libtiff/tif_dir.c: propagate failure to initialize compression
4280	back from TIFFSetField() as an error status, so applications can
4281	detect failure.
4282
4283	* libtiff/tif_dir.c: removed the auto replacement of
4284	COMPRESSION_LZW with COMPRESSION_NONE in _TIFFVSetField().
4285
4286	* Removed Makefile, tools/Makefile, port/install.sh, man/Makefile
4287	from CVS as they are all supposed to be auto-generated by configure.
4288
42892001-09-22  Frank Warmerdam  <[email protected]>
4290
4291	* libtiff/tif_ojpeg.c: new update from Scott.
4292
42932001-09-09  Frank Warmerdam  <[email protected]>
4294
4295	* libtif/tif_fax3.c: Removed #ifdef PURIFY logic, and modified to
4296	always use the "safe" version, even if there is a very slight
4297	cost in performance.
4298
4299	http://bugzilla.remotesensing.org/show_bug.cgi?id=54
4300
4301	* libtiff/Makefile.in: Fixed @DSOSUB_VERSION to be @DSOSUF_VERSION@
4302	in two places.
4303
4304	* libtiff/tif_getimage.c: Fixed problem with reading strips or
4305	tiles that don't start on a tile boundary.  Fix contributed by
4306	Josep Vallverdu (from HP), and further described in bug 47.
4307
4308	http://bugzilla.remotesensing.org/show_bug.cgi?id=47
4309
4310	* tools/tiff2ps.c: added OJPEG YCbCr to RGB support.
4311
4312	* libtiff/tif_ojpeg.c: Applied substantial patch from Scott.
4313
43142001-09-06  Frank Warmerdam  <[email protected]>
4315
4316	* libtiff/tif_packbits.c: fixed memory overrun error.
4317
4318	http://bugzilla.remotesensing.org/show_bug.cgi?id=77
4319
43202001-08-31  Frank Warmerdam  <[email protected]>
4321
4322	* libtiff/tif_getimage.c: relax handling of contig case where
4323	there are extra samples that are supposed to be ignored.  This
4324	should now work for 8bit greyscale or palletted images.
4325
4326	http://bugzilla.remotesensing.org/show_bug.cgi?id=75
4327
43282001-08-28  Frank Warmerdam  <[email protected]>
4329
4330	* libtiff/tif_getimage.c: Don't complain for CMYK (separated)
4331	images with more than four samples per pixel.  See:
4332
4333	http://bugzilla.remotesensing.org/show_bug.cgi?id=73
4334
43352001-08-10  Frank Warmerdam  <[email protected]>
4336
4337	* libtiff/tif_getimage.c: Use memmove() instead of TIFFmemcpy()
4338	in TIFFReadRGBATile() to avoid issues in cases of overlapping
4339	buffers.  See Bug 69 in Bugzilla.
4340
4341	http://bugzilla.remotesensing.org/show_bug.cgi?id=69
4342
4343	* tools/tiff2rgba.c: fixed getopt() call so that -b works again.
4344
43452001-08-09  Frank Warmerdam  <[email protected]>
4346
4347	* libtiff/tiff.h, libtiff/tif_fax3.c: added check for __LP64__
4348	when checking for 64 bit architectures as per bugzilla bug 67.
4349
43502001-07-27  Frank Warmerdam  <[email protected]>
4351
4352	* man/Makefile.in: add TIFFClientOpen link as per debian submitted
4353	bug 66.
4354
43552001-07-20  Frank Warmerdam  <[email protected]>
4356
4357	* libtiff/tif_jpeg.c: Define HAVE_BOOLEAN on windows if RPCNDR.H
4358	has been included.
4359
43602001-07-19  Frank Warmerdam  <[email protected]>
4361
4362	* libtiff/tif_open.c: Seek back to zero after failed read,
4363	before writing header.
4364
43652001-07-18  Frank Warmerdam  <[email protected]>
4366
4367	* libtiff/tif_ojpeg.c: updates from Scott.  Handles colors
4368	much better.  Now depends on having patched libjpeg as per
4369	patch in contrib/ojpeg/*.
4370
43712001-07-17  Frank Warmerdam  <[email protected]>
4372
4373	* */Makefile.in: added DESTDIR support.
4374
4375	http://bugzilla.remotesensing.org/show_bug.cgi?id=60
4376
43772001-07-16  Frank Warmerdam  <[email protected]>
4378
4379	* configure, libtiff/Makefile.in: applied OpenBSD patches
4380	as per:
4381
4382	http://bugzilla.remotesensing.org/show_bug.cgi?id=61
4383
43842001-06-28  Frank Warmerdam  <[email protected]>
4385
4386	* libtiff/tif_getimage.c: Fixed so that failure is properly
4387	reported by gtTileContig, gtStripContig, gtTileSeparate and
4388	gtStripSeparate.
4389
4390	See http://bugzilla.remotesensing.org/show_bug.cgi?id=51
4391
4392	* tiffcmp.c: Fixed multi samples per pixel support for ContigCompare.
4393	Updated bug section of tiffcmp.1 to note tiled file issues.
4394
4395	See http://bugzilla.remotesensing.org/show_bug.cgi?id=53
4396
43972001-06-22  Frank Warmerdam  <[email protected]>
4398
4399	* configure: Changes for DSO generation on AIX provided by
4400	John Marquart <[email protected]>.
4401
4402	* configure, libtiff/Makeifle.in: Modified to build DSOs properly
4403	on Darwin thanks to Robert Krajewski ([email protected]) and
4404	Keisuke Fujii ([email protected]).
4405
44062001-06-13  Frank Warmerdam  <[email protected]>
4407
4408	* tools/tiff2rgba.c: added -n flag to avoid emitting alpha component.
4409
4410	* man/tiff2rgba.1: new
4411
44122001-05-22  Frank Warmerdam  <[email protected]>
4413
4414	* Added tiffset and tif_ojpeg to the dist lists in Makefile.in.
4415
44162001-05-13  Frank Warmerdam  <[email protected]>
4417
4418	* libtiff/tools/thumbnail.c: changed default output compression
4419	to packbits from LZW since LZW isn't generally available.
4420
44212001-05-12  Frank Warmerdam  <[email protected]>
4422
4423	* libtiff/tif_ojpeg.c: New.
4424	libtiff/tif_jpeg.c, tiffconf.h, tif_getimage.c: changes related
4425	to OJPEG support.
4426
4427	Scott Marovich <[email protected]> supplied OJPEG support.
4428
44292001-05-11  Frank Warmerdam  <[email protected]>
4430
4431	* tiff.h: removed, it duplicates libtiff/tiff.h.
4432
44332001-05-08  Frank Warmerdam  <[email protected]>
4434
4435	* libtiff/tif_dirinfo.c: moved pixar and copyright flags to
4436	ensure everything is in order.
4437
4438	* libtiff/libtiff.def: added TIFFCreateDirectory and
4439	TIFFDefaultStripSize as per:
4440
4441	  http://bugzilla.remotesensing.org/show_bug.cgi?id=46
4442
44432001-05-02  Frank Warmerdam  <[email protected]>
4444
4445	* libtiff/tif_dirinfo.c: Modified the TIFF_BYTE definition for
4446	TIFFTAG_PHOTOSHOP to use a writecount of TIFF_VARIABLE2 (-3) to
4447	force use of uint32 counts instead of short counts.
4448
4449	* libtiff/tif_dirwrite.c: Added support for TIFF_VARIABLE2 in the
4450	case of writing TIFF_BYTE/TIFF_SBYTE fields.
4451
4452	http://bugzilla.remotesensing.org/show_bug.cgi?id=43
4453
44542001-05-01  Frank Warmerdam  <[email protected]>
4455
4456	* libtiff/tif_dirinfo.c: removed duplicate TIFFTAG_PHOTOSHOP as per
4457	bug report http://bugzilla.remotesensing.org/show_bug.cgi?id=44
4458
44592001-04-05  Frank Warmerdam  <[email protected]>
4460
4461	* tiffio.h: removed C++ style comment.
4462
4463	* configure: fixed up SCRIPT_SH/SHELL handling.
4464
4465	* Makefile.in: Fixed SCRIPT_SH/SHELL handling.
4466
4467	* config.guess: documented more variables as per bug 40.
4468
44692001-04-03  Frank Warmerdam  <[email protected]>
4470
4471	* configure, *Makefile.in: Various changes to improve configuration
4472	for HP/UX specifically, and also in general.  They include:
4473	 - Try to handle /usr/bin/sh instead of /bin/sh where necessary.
4474	 - Upgrade to HP/UX 10.x+ compiler, linker and dso options.
4475	 - Fixed mmap() test to avoid MMAP_FIXED ... it isn't available on HP
4476	 - Use -${MAKEFLAGS} in sub makes from makefiles.
4477
4478	http://bugzilla.remotesensing.org/show_bug.cgi?id=40
4479
44802001-04-02  Frank Warmerdam  <[email protected]>
4481
4482	* libtiff/tiff.h: Applied hac to try and resolve the problem
4483	with the inttypes.h include file on AIX.
4484
4485	See http://bugzilla.remotesensing.org/show_bug.cgi?id=39
4486
4487	* VERSION: update to 3.5.7 beta in preparation for release.
4488
4489	* configure/config.site: modified to check if -lm is needed for
4490	MACHDEPLIBS if not supplied by config.site.  Needed for Darwin.
4491
4492	* config.guess: updated wholesale to an FSF version apparently
4493	from 1998 (as opposed to 1994).  This is mainly inspired by
4494	providing for MacOS X support.
4495
44962001-03-29  Frank Warmerdam  <[email protected]>
4497
4498	* configure, Makefile.in, etc: added support for OPTIMIZER being
4499	set from config.site.
4500
45012001-03-28  Frank Warmerdam  <[email protected]>
4502
4503	* fax2ps.c: Helge (libtiff at oldach.net) submitted fix:
4504
4505	Here's a fix for fax2ps that corrects behaviour for non-Letter paper
4506	sizes. It fixes two problems:
4507
4508	Without	scaling (-S) the fax is now centered on the page size specified
4509	with -H	and/or -W. Before, fax2ps was using an obscure and practially
4510	useless algorithm to allocate the image relative to Letter sized paper
4511	which sometime sled to useless whitespace on the paper, while at the
4512	same time cutting of the faxes printable area at the opposite border.
4513
4514	Second, scaling now preserves aspect ratio, which makes unusual faxes
4515	(in particular short ones) print properly.
4516
4517	See http://bugzilla.remotesensing.org/show_bug.cgi?id=35
4518
4519	* tiff2ps.c/tiff2ps.1: Substantial changes to tiff2ps by
4520	Bruce A. Mallett.  See check message for detailed information
4521	on all the changes, including a faster encoder, fixes for level
4522	2 PostScript, and support for the imagemask operator.
4523
45242001-03-27  Frank Warmerdam  <[email protected]>
4525
4526	* libtiff/tiffio.h: Changed "#if LOGLUV_PUBLIC" to
4527	"#ifdef LOGLUV_PUBLIC" so it will work with VisualAge on AIX.
4528
4529	http://bugzilla.remotesensing.org/show_bug.cgi?id=39
4530
45312001-03-16  Frank Warmerdam  <[email protected]>
4532
4533	* tif_dirinfo.c: moved definition of copyright tag in field list.
4534	Apparently they have to be in sorted order by tag id.
4535
45362001-03-13  Frank Warmerdam  <[email protected]>
4537
4538	* tif_getimage.c: Added support for 16bit minisblack/miniswhite
4539	images in RGBA interface.
4540
45412001-03-02  Frank Warmerdam  <[email protected]>
4542
4543	* Added TIFFTAG_COPYRIGHT support.
4544
45452001-02-19  Frank Warmerdam  <[email protected]>
4546
4547	* Brent Roman contributed updated tiffcp utility (and tiffcp.1)
4548	with support for extracting subimages with the ,n syntax, and also
4549	adding the -b bias removal flag.
4550
45512001-02-16  Frank Warmerdam  <[email protected]>
4552
4553	* libtiff/libtiff.def: Brent Roman submitted new version adding
4554	serveral missing entry points.
4555
4556	* libtiff/tif_dirinfo.c: don't declare tiffFieldInfo static on VMS.
4557	Some sort of weird VMS thing.
4558
4559	http://bugzilla.remotesensing.org/show_bug.cgi?id=31
4560
4561	* tif_luv.c/tiff.h/tiffio.h:
4562	New version of TIFF LogLuv (SGILOG) modules contributed by Greg Ward
4563	([email protected]).  He writes:
4564
4565	1) I improved the gamut-mapping function in tif_luv.c for imaginary
4566	colors, because some images were being super-saturated on the input
4567	side and this resulted in some strange color shifts in the output.
4568
4569	2) I added a psuedotag in tiff.h to control random dithering during
4570	LogLuv encoding.  This is turned off by default for 32-bit LogLuv and
4571	on for 24-bit LogLuv output.  Dithering improves the average color
4572	accuracy over the image.
4573
4574	3) I added a #define for LOG_LUV_PUBLIC, which is enabled by default in
4575	tiffio.h, to expose internal routines for converting between LogLuv and
4576	XYZ coordinates.  This is helpful for writing more efficient,
4577	specialized conversion routines, especially for reading LogLuv files.
4578
4579	Changes applied with minor edits.
4580
45812001-01-23  Frank Warmerdam  <[email protected]>
4582
4583	* tif_fax3.c: keep rw_mode flag internal to fax3 state to remember
4584	whether we are encoding or decoding.  This is to ensure graceful
4585	recovery if TIFFClientOpen() discovers an attempt to open a compressed
4586	file for "r+" access, and subsequently close it, as it resets the
4587	tif_mode flag to O_RDONLY in this case to avoid writes, confusing the
4588	compressor's concept of whether it is in encode or decode mode.
4589
45902001-01-08  Mike Welles <[email protected]>
4591
4592	* Makefile.in:  Now cleaning up after itself after creating the .tar.gz and .zip
4593
45942001-01-07  Frank Warmerdam  <[email protected]>
4595
4596	* html/libtiff.html: Fixed arguments in example for TIFFRGBAImageGet()
4597	as per bug report by Patrick Connor.
4598
45992000-12-28  Frank Warmerdam  <[email protected]>
4600
4601	* Added RELEASE-DATE file to release file list.
4602
4603	* Fixed libtiff/makefile.vc to make tiffvers.h not version.h.
4604
46052000-12-22  Mike Welles <[email protected]>
4606        * added link to CVS mirror from index.html
4607
4608	* updated html/internals.html to note that LZW compression is
4609	  not supported by default.
4610
46112000-12-22  Frank Warmerdam  <[email protected]>
4612
4613	* updated html/libtiff.html to not point at Niles' old JPL web site
4614	for the man pages, point at www.libtiff.org.
4615
46162000-12-21  Frank Warmerdam  <[email protected]>
4617
4618	* libtiff/tif_apple.c: Applied "Carbon" support patches supplied by
4619	Leonard Rosenthol <[email protected]>.  May interfere
4620	with correct building on older systems.  If so, please let me know.
4621
46222000-12-19 Mike Welles <[email protected]>
4623
4624	* Took out LZW Encoding from tif_lzw.c
4625
4626	* Created HOWTO-RELEASE
4627
4628	* Created html/v3.5.6.html
4629
4630	* updated index.html
4631
46322000-12-01  Frank Warmerdam  <[email protected]>
4633
4634	* Added patches for EOFB support in tif_fax3.c and tif_fax3.h.
4635	Patches supplied by Frank Cringle <[email protected]>
4636	Example file at: ftp://ftp.remotesensing.org/pub/libtiff/eofb_396.tif
4637
46382000-11-24  Frank Warmerdam  <[email protected]>
4639
4640	* libtiff/Makefile.in: Added an installPrivateHdrs and install-private
4641	target so that the private headers required by libgeotiff can be
4642	installed with the others.  They are not installed by default.
4643
4644	* libtiff/Makefile.in: Added @MACHLIBDEPS@ to LINUXdso and GNULDdso
4645	targets so libtiff.so will be built with an explicit dependency
4646	on libm.so.
4647
4648	* libtiff/Makefile.in: Use softlinks to link libtiff.so.3 to
4649	libtiff.so.3.5.5.
4650
4651	* libtiff/Makefile.in & configure: Remove all references to the ALPHA
4652	file, or ALPHA version logic.  Added stuff about DIST_POINT in
4653	place of DIST_TYPE and the alpha release number stuff.
4654
46552000-11-22  Frank Warmerdam  <[email protected]>
4656
4657	* I have applied a patch from Steffen Moeller <[email protected]> to
4658	the configure script so that it now accepts the --prefix, and
4659	--exec-prefix directives.
4660
46612000-11-13  Frank Warmerdam  <warmerda@cs46980-c>
4662
4663	* I have made a variety of modifications in an effort to ensure the
4664	TIFFLIB_VERSION macro is automatically generated from the RELEASE-DATE
4665	file which seems to be updated regularly.
4666
4667	 o mkversion.c now reads RELEASE-DATE and emits TIFFLIB_VERSION in
4668	   version include file.
4669	 o renamed version.h to tiffvers.h because we now have to install it
4670	   with the public libtiff include files.
4671	 o include tiffvers.h in tiffio.h.
4672	 o updated tif_version.c to use tiffvers.h.
4673	 o Updated Makefile.in accordingly.
4674
4675	* As per http://bugzilla.remotesensing.org/show_bug.cgi?id=25
4676	I have updated the win32 detection rules in tiffcomp.h.
4677
46782000-10-20  Frank Warmerdam  <warmerda@cs46980-c>
4679
4680	* tif_getimage.c: Fixed RGBA translation for YCbCr images for which
4681	the strip/tile width and height aren't multiples of the sampling size.
4682	See http://bugzilla.remotesensing.org/show_bug.cgi?id=20
4683	Some patches from Rick LaMont of Dot C Software.
4684
4685	* Modified tif_packbits.c encoder to avoid compressing more
4686	data than provided if rowsize doesn't factor into provided data
4687	(such as occurs for YCbCr).
4688
46892000-10-19  Frank Warmerdam  <warmerda@cs46980-c>
4690
4691	* tools/rgb2ycbcr.c: fixed output strip size to account for vertical
4692	roundup if rows_per_strip not a multiple of vertical sample size.
4693
46942000-10-16  Frank Warmerdam  <warmerda@cs46980-c>
4695
4696	* tif_dir.c: Clear TIFF_ISTILED flag in TIFFDefaultDirectory
4697	as per http://bugzilla.remotesensing.org/show_bug.cgi?id=18
4698	from [email protected].
4699
4700	* Modified tif_packbits.c decoding to avoid overrunning the
4701	output buffer, and to issue a warning if data needs to be
4702	discarded.  See http://bugzilla.remotesensing.org/show_bug.cgi?id=18
4703
47042000-10-12  Frank Warmerdam  <warmerda@cs46980-c>
4705
4706	* Modified tiff2bw to ensure portions add to 100%, and that
4707	white is properly recovered.
4708
4709	See bug http://bugzilla.remotesensing.org/show_bug.cgi?id=15
4710	Patch c/o Stanislav Brabec <[email protected]>
4711
47122000-09-30  Frank Warmerdam  <warmerda@cs46980-c>
4713
4714	* Modified TIFFClientOpen() to emit an error on an attempt to
4715	open a comperessed file for update (O_RDWR/r+) access.  This is
4716	because the compressor/decompressor code gets very confused when
4717	the mode is O_RDWR, assuming this means writing only.  See
4718	bug http://bugzilla.remotesensing.org/show_bug.cgi?id=13
4719
47202000-09-27  Frank Warmerdam  <warmerda@cs46980-c>
4721
4722	* Added GNULDdso target an`d switched linux and freebsd to use it.
4723
47242000-09-26  Frank Warmerdam  <warmerda@cs46980-c>
4725
4726	* Applied patch for 0x0000 sequences in tif_fax3.h's definition
4727	of EXPAND1D() as per bug 11 (from Roman).
4728
47292000-09-25  Frank Warmerdam  <warmerda@cs46980-c>
4730	* Fixed tiffcomp.h to avoid win32 stuff if unix #defined, to improve
4731	cygwin compatibility.
4732
4733	* Applied patch from Roman Shpount to tif_fax3.c.  This seems to
4734	be a proper fix to the buffer sizing problem.  See
4735	http://bugzilla.remotesensing.org/show_bug.cgi?id=11
4736
4737	* Fixed tif_getimage.c to fix overrun bug with YCbCr images without
4738	downsampling.  http://bugzilla.remotesensing.org/show_bug.cgi?id=10
4739	Thanks to Nick Lamb <[email protected]> for reporting the
4740	bug and proving the patch.
4741
47422000-09-18  Frank Warmerdam  <warmerda@cs46980-c>
4743
4744	* Fixed tif_jpeg.c so avoid destroying the decompressor before
4745	we are done access data thanks to bug report from:
4746	Michael Eckstein <[email protected]>.
4747
4748	* Reverted tif_flush change.
4749
47502000-09-14  Frank Warmerdam  <warmerda@cs46980-c>
4751
4752	* tif_flush.c: Changed so that TIFFFlushData() doesn't return an
4753	error when TIFF_BEENWRITING is not set.  This ensures that the
4754	directory contents can still be flushed by TIFFFlush().
4755
47562000-08-14  Frank Warmerdam  <[email protected]>
4757
4758	* tif_open.c: Don't set MMAP for O_RDWR files.
4759
4760	* tif_open.c: Set STRIPCHOP_DEFAULT for O_RDWR as well as O_RDONLY
4761	so that files opened for update can be strip chopped too.
4762
4763	* tif_read.c: fixed up bug with files missing rowsperstrip and
4764	the strips per separation fix done a few weeks ago.
4765
47662000-07-17  Frank Warmerdam  <warmerda@cs46980-c>
4767
4768	* Tentatively added support for SAMPLEFORMAT_COMPLEXIEEEFP, and
4769	SAMPLEFORMAT_COMPLEXINT.
4770
47712000-07-13  Mike Welles <[email protected]>
4772
4773	* index.html, bugs.html: added bugzilla info.
4774
47752000-07-12  Frank Warmerdam  <[email protected]>
4776
4777	* tif_read.c: fix subtle bug with determining the number of
4778	rows for strips that are the last strip in a separation but
4779	not the last strip of all in TIFFReadEncodedStrip().
4780
4781	* Applied 16/32 bit fix to tif_fax3.c.  Fix supplied by
4782	Peter Skarpetis <[email protected]>
4783
47842000-06-15  Frank Warmerdam  <[email protected]>
4785
4786	* Modified tiffio.h logic with regard to including windows.h.  It
4787	won't include it when building with __CYGWIN__.
4788
47892000-05-11  Frank Warmerdam  <warmerda@cs46980-c>
4790
4791	* README: update to mention www.libtiff.org, don't list Sam's old
4792	email address.
4793
4794	* configure: Fixed DSO test for Linux as per patch from
4795	  Jan Van Buggenhout <[email protected]>.
4796
47972000-04-21  Frank Warmerdam  <[email protected]>
4798
4799	* libtiff/tif_dirread.c: Don't use estimate strip byte count for
4800	one tile/strip images with an offset, and byte count of zero. These
4801	could be "unpopulated" images.
4802
48032000-04-18  Frank Warmerdam  <[email protected]>
4804
4805	* contrib/addtiffo: Added "averaging" resampling option.
4806
4807	* tools/tiffsplit.c: Copy TIFFTAG_SAMPLEFORMAT.
4808
4809Tue Apr 18 16:18:08 2000  Frank Warmerdam  <[email protected]>
4810
4811	* tools/Makefile.in: Modified to install properly on SGI.
4812
48132000-04-12  Mike Welles	     <[email protected]>
4814	* configure:  Fixed stupid mistake in libc6 test on Linux
4815
48162000-04-04  Mike Welles	     <[email protected]>
4817	* tif_win32.c:  Applied patch to fix overreads and ovverwrites
4818	  caught by BoundsChecker.  From Arvan Pritchard
4819	  <[email protected]>  (untested).
4820
4821	* tif_getimage.c:  Applied patch to silence VC6 warnings.  From
4822	  Arvan Pritchard <[email protected]>
4823
4824	* tif_lzw.c:  Applied patch to silence VC6 warnings.  From
4825	  Arvan Pritchard <[email protected]>
4826
48272000-03-28  Frank Warmerdam  <warmerda@cs46980-c>
4828
4829	* Added contrib/stream (stream io) code submitted by Avi Bleiweiss.
4830
48312000-03-28  Frank Warmerdam  <warmerda@cs46980-c>    *** 3.5.5 release ***
4832
4833	* fax2ps: Fixed mixup of width and height in bounding box statement
4834	as per submission by Nalin Dahyabhai <[email protected]>.
4835
48362000-03-27  Mike Welles	     <[email protected]>
4837
4838	* fax2ps:  Modified printruns to take uint32 instead of uint16.
4839	Patch courtesy of Bernt Herd <[email protected]>
4840
48412000-03-20  Mike Welles	     <[email protected]>
4842
4843	* configure: added test for libc6 for linux targets.  Bug reported by
4844        Stanislav Brabec <[email protected]>
4845
4846	* Added 3.5 docs to html/Makefile.in.
4847	Thanks to  Stanislav Brabec <[email protected]>
4848
4849	* configure: fixed bugs in sed scripts
4850	(applied sed script s:/@:s;@:;s:/s;;:;: to configure).
4851	fix submitted to Stanislav Brabec <[email protected]>
4852
4853	* tools/iptcutil was not in files list, and wasn't being
4854	added to tar archive.  Updated Makefile.in.
4855
48562000-03-17  Frank Warmerdam  <warmerda@cs46980-c>
4857
4858	* tif_fax3.c: Fixed serious bug introduced during the uint16->uint32
4859	conversion for the run arrays.
4860
48612000-03-03  Frank Warmerdam  <[email protected]>
4862
4863	* Set td_sampleformat default to SAMPLEFORMAT_UINT instead of
4864	SAMPLEFORMAT_VOID in TIFFDefaultDirectory() in tif_dir.c.
4865
48662000-03-02  Frank Warmerdam  <[email protected]>
4867
4868	* Added "GetDefaulted" support for TIFFTAG_SAMPLEFORMAT in tif_aux.c.
4869
4870	* Patched tif_fax3.c so that dsp->runs is allocated a bit bigger
4871	to avoid overruns encountered with frle_bug.tif.
4872
4873Tue Feb 15 22:01:05 2000  Frank Warmerdam  <[email protected]>
4874
4875	* Fixed tools/tiffcmp so that stopondiff testing works.
4876	  Patch care of Joseph Orost <[email protected]>.
4877
48782000-01-28    <warmerda@CS46980-B>
4879
4880	* Modified tif_unix.c to support 2-4GB seeks if USE_64BIT_API is
4881	  set to 1, and added default (off) setting in tiffconf.h.  This
4882	  should eventually be set by the configure script somehow.
4883
4884	  The original work on all these 2-4GB changes was done by
4885	  Peter Smith ([email protected]).
4886
4887	* Modified tif_win32.c to support 2-4GB seeks.
4888
4889	* tentatively changed toff_t to be unsigned instead of signed to
4890	  facilitate support for 2-4GB files.
4891
4892	* Updated a variety of files to use toff_t.  Fixed some mixups
4893	  between toff_t and tsize_t.
4894
4895Fri Jan 28 10:13:49 2000  Frank Warmerdam  <[email protected]>
4896
4897	* Largely reimplemented contrib/addtiffo to avoid temp files,
4898	updating the TIFF file in place.  Fixed a few other bugs to.
4899
4900	* Set tif_rawdatasize to zero when freeing raw data buffer in
4901	TIFFWriteDirectory().
4902
4903	* Enabled "REWRITE_HACK" in tif_write.c by default.
4904
4905	* Fix bug in tif_write.c when switching between reading one directory
4906	and writing to another.
4907
4908	* Made TIFFWriteCheck() public, and added TIFFCreateDirectory()
4909
4910Wed Jan  5 12:37:48 2000  Frank Warmerdam  <[email protected]>
4911
4912	* Added TIFFmemory(3t) functions to libtiff.def.
4913
4914Tue Jan  4 13:39:00 2000  Frank Warmerdam  <[email protected]>
4915
4916	* Added libtiff/libtiff.def to TIFFILES distribution list.
4917
4918Mon Dec 27 12:13:39 EST 1999  Mike Welles <[email protected]>
4919
4920	* Created lzw compression kit, as a new module (libtiff-lzw-compression-kit).
4921
4922	* Altered descriptions in tools to reflect "by default" lzw not supported
4923
4924	* Updated index.html to note lzw compression kit.
4925
4926Tue Dec 21 14:01:51 1999  Frank Warmerdam  <[email protected]>
4927
4928	* Added fax3sm_winnt.c to distribution list in Makefile.in.
4929
4930Tue Dec 21 11:04:45 EST 1999  Mike Welles <[email protected]> *** 3.5.4 release ***
4931
4932	* Aadded Pixar tag support.  Contributed by Phil Beffery <[email protected]>
4933
4934	* Made one more change to tif_dir.c for removal of LZW compression. Also added notice
4935	  when LZW compression invoked.
4936
4937	* Changed default compression in tools to TIFF_PACKBITS, and changed usage descriptions
4938	  in tools to reflect removal of LZW compression
4939
4940Mon Dec 20 18:39:02 EST 1999  Mike Welles  <[email protected]>
4941
4942        * Fixed bug that caused LZW (non) compression to segfault. Added
4943	  warning about LZW compression removed being removed, and why.
4944
4945	* Added nostrip to install in tools/Makefile.in so that debugging
4946	  symbols are kept.
4947
4948Tue Dec  7 12:04:47 EST 1999  Mike Welles  <[email protected]>
4949
4950	* Added patch from Ivo Penzar <[email protected]>,
4951	  supporting Adobe ZIP deflate.  Untested.
4952
4953Sat Dec  4 15:47:11 1999  Frank Warmerdam  <[email protected]>
4954
4955	* Made Packbits the default compression in tools/tiff2rgba.c instead
4956	of LZW.
4957
4958Tue Nov 30 14:41:43 1999  Frank Warmerdam  <[email protected]>    *** 3.5.3. release ***
4959
4960	* Added tif_luv to contrib/djgpp/Makefile.lib.
4961
4962Tue Nov 30 14:15:32 EST 1999   Mike Welles <[email protected]>
4963
4964        * Added zip creation to relase makefile target
4965
4966	* Added html for TIFFWriteTile.3t man page.
4967
4968Tue Nov 30 09:20:16 1999  Frank Warmerdam  <[email protected]>
4969
4970	* Added some changes to tif_write.c to support rewriting existing
4971	fixed sized tiles and strips.  Code mods disabled by default, only
4972	enabled if REWRITE_HACK is defined for now.
4973
4974Mon Nov 29 11:43:42 1999  Frank Warmerdam  <[email protected]>
4975
4976	* Added TIFFWriteTile.3t man page.
4977
4978Sun Nov 28 20:36:18 1999  Frank Warmerdam  <[email protected]>
4979
4980	* Added notes on use of makefile.vc in build.html, and fixed
4981	email subscription address.
4982
4983199-11-28  Mike Welles <[email protected]>
4984
4985	*  Fixed apocalypse-inducing y2k bug in contrib/ras/ras2tiff.c
4986
4987	*  Did some casts cleaning up to reduce compiler warnings in tif_fax3.c,
4988	   from Bruce Carmeron <[email protected]> -- modifications of
4989	   changes made by Frank (sun cc still complained on cast).
4990
4991	*  Added tiffconf.h to install target per request from Bill
4992	   Radcliffe <[email protected]>: "We need a way for ImageMagick to
4993 	   know features have been compiled into the TIFF library in order to
4994	   handle things properly".
4995
4996Sat Nov 27 16:49:21 1999  Frank Warmerdam  <[email protected]>
4997
4998	* fixed various VC++ warnings as suggested by Gilles Vollant
4999	<[email protected]>.
5000
5001Wed Nov 24 12:08:16 1999  Frank Warmerdam  <[email protected]>
5002
5003	* Modified TIFFquery.3t man pages info on TIFFIsByteSwapped() to
5004	not imply applications are responsible for image data swapping.
5005
50061999-11-22  Mike Welles <[email protected]>
5007	*  HTML-ized the man pages, added to html/man
5008
5009	*  Removed LZW Compression to comply with Unisys patent extortion.
5010
50111999-09-29  Mike Welles		<[email protected]>
5012	*  Corrected one remaining 16 -> 32 bit value in tif_fax3.c,
5013	   From Ivo Penzar <[email protected].
5014
5015	*  Added patch from Ivo Penzar to have TiffAdvanceDirectory handle
5016	   memory mapped files. <[email protected]>
5017
50181999-09-26  Mike Welles 	<[email protected]>  *** 3.5.2 release ***
5019	* Corrected alpha versioning.
5020
5021	* Removed distinction between  alpha and release targets in Makefile.in.
5022
5023	* added release.stamp target, which tags cvs tree, and updates
5024	  "RELEASE-DATE"
5025
5026	* added releasediff target, which diffs tree with source as of
5027	  date in "RELEASE-DATE"
5028
5029	* Ticked up version to 3.5.2 (alpha 01 -- but I think we'll moving
5030	  away from alpha/non-alpha distinctions).
5031
5032	* updated html to reflect release
5033
50341999-09-23    <warmerda@CS46980-B>
5035
5036	* Set O_BINARY for tif_unix.c open() ... used on cygwin for instance.
5037
5038	* Added CYGWIN case in configure.
5039
5040Fri Sep 17 00:13:51 CEST 1999  Mike Welles <[email protected]>
5041
5042	* Applied Francois Dagand's patch to handle fax decompression bug.
5043	  (sizes >= 65536 were failing)
5044
5045Tue Sep 14 21:31:43 1999  Frank Warmerdam  <[email protected]>
5046
5047	* Applied "a" mode fix to tif_win32.c/TIFFOpen() as suggested
5048	  by Christopher Lawton <[email protected]>
5049
5050Wed Sep  8 08:19:18 1999  Frank Warmerdam  <[email protected]>
5051
5052	* Added IRIX/gcc, and OSF/1 4.x support on behalf of
5053	  Albert Chin-A-Young <[email protected]>
5054
5055	* Added TIFFReassignTagToIgnore() API on behalf of
5056	  Bruce Cameron <[email protected]>.  Man page still pending.
5057
5058Wed Aug 25 11:39:07 1999  Frank Warmerdam  <[email protected]>
5059
5060	* Added test target in Makefile, test_pics.sh script and pics/*.rpt
5061	files to provide for a rudimentary testsuite.
5062
5063	* Added contrib/tags back from old distribution ... fixed up a bit.
5064
50651999-08-16    <warmerda@CS46980-B>
5066
5067	* Added simple makefile.vc makefiles for building with MS VC++
5068	on Windows NT/98/95 in console mode.  Stuff in contrib/win* make give
5069	better solutions for some users.
5070
5071Mon Aug 16 21:52:11 1999  Frank Warmerdam  <[email protected]>
5072
5073	* Added addtiffo (add overviews to a TIFF file) in contrib.  Didn't
5074	put it in tools since part of it is in C++.
5075
50761999-08-16  Michael L. Welles  <[email protected]>
5077
5078	* Updated html/index.html with anon CVS instructions.
5079
5080Mon Aug 16 13:18:41 1999  Frank Warmerdam  <[email protected]>
5081
5082	* pre-remove so link before softlink in LINUXdso action in
5083	libtiff/Makefile.in to avoid failure on LINUXdso builds other than
5084	the first.
5085
5086	* Fixed problem with cvtcmap() in tif_getimage.c modifying the
5087	colormaps owned by the TIFF handle itself when trying to fixup wrong
5088	(eight bit) colormaps.  Corrected by maintaining a private copy of
5089	the colormap.
5090
5091	* Added TIFFReadRGBATile()/TIFFReadRGBAStrip() support in
5092	tif_getimage.c.
5093
5094	* CVS Repository placed at remotesensing.org.  ChangeLog added.
5095