-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11990 lines (7578 loc) · 406 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2021-04-16 Even Rouault <[email protected]>
libtiff v4.3.0 released
2021-04-15 Even Rouault <[email protected]>
Merge branch 'libjpeg12_cmake' into 'master'
libtiff/tif_config.h.cmake.in: surround LIBJPEG_12_PATH by double quotes
See merge request libtiff/libtiff!237
2021-04-15 Even Rouault <[email protected]>
libtiff/tif_config.h.cmake.in: surround LIBJPEG_12_PATH by double quotes
2021-04-14 Even Rouault <[email protected]>
Merge branch 'lerc_api_change' into 'master'
tif_lerc.c: cope with API breakage in liblerc master
See merge request libtiff/libtiff!236
2021-04-14 Even Rouault <[email protected]>
tif_lerc.c: cope with API breakage in liblerc master.
2021-04-08 Even Rouault <[email protected]>
libtiff: remove remaining #ifdef WIN32 and use PRI formatting.
2021-03-10 Even Rouault <[email protected]>
Merge branch 'kmilos-master-patch-73187' into 'master'
tiffcp: Remove LZW help text, preset not supported
See merge request libtiff/libtiff!229
2021-03-10 Miloš Komarčević <[email protected]>
tiffcp: Remove LZW help text, preset not supported.
2021-03-10 Even Rouault <[email protected]>
Merge branch 'feature/lerc' into 'master'
Add LERC Compression Plugin (closes: #213)
Closes #213
See merge request libtiff/libtiff!228
2021-03-10 Even Rouault <[email protected]>
Merge branch 'cmake-fixes' into 'master'
CMake fixes
Closes #246 et #245
See merge request libtiff/libtiff!232
2021-03-09 Roger Leigh <[email protected]>
cmake: Correct FindCMath.
cmake: Correct ZSTD_USABLE typo.
2021-03-07 Roger Leigh <[email protected]>
Merge branch 'cmake-find-lib-prefixes' into 'master'
cmake: Correct find lib prefixes for Deflate and JBIG
See merge request libtiff/libtiff!231
2021-03-07 Roger Leigh <[email protected]>
cmake: FindJBIG uses lib prefix on Windows.
cmake: FindDeflate uses lib prefix on Windows.
2021-03-07 Even Rouault <[email protected]>
TWebPDecode(): avoid potential overflow on multiplication (CID 1472928)
TIFFReadDirEntryArrayWithLimit(): avoid false positive from Coverity Scan regarding out-of-bounds access (CID 1472927)
tif_dirwrite.c: avoid setting a variable that is not read afterwards.
2021-03-07 Even Rouault <[email protected]>
Merge branch 'coverity-fixes' into 'master'
Coverity fixes (high impact)
See merge request libtiff/libtiff!227
2021-03-07 Roger Leigh <[email protected]>
Fix high-impact Coverity issues (resource leaks).
The issues are in the tests and tiffcrop, not the core library. Real issues, but not high risk.
Use to test if Coverity integration is performing properly on merge.
2021-03-07 Even Rouault <[email protected]>
Merge branch 'fix_tif_fax3_encoder_regression' into 'master'
tif_fax3.c: fix master regression in encoder
See merge request libtiff/libtiff!230
2021-03-07 Even Rouault <[email protected]>
tif_fax3.c: fix master regression in encoder.
Fix issue introduced in 39a74eede0455ec8ee334dcddf71f5354d508d8b
Spotted by gdal's tiff_write_76 test
2021-03-07 Antonio Valentino <[email protected]>
Add LERC support in CMake.
2021-03-07 Antonio Valentino <[email protected]>
Add LERC support in configure.ac and Makefile.am.
2021-03-07 Antonio Valentino <[email protected]>
Add LERC support to tiffcp.
2021-03-07 Antonio Valentino <[email protected]>
Add LERC plugin.
The lerc plugin code has been copyed form GDAL.
2021-03-06 Roger Leigh <[email protected]>
Merge branch 'display_tool_purpose' into 'master'
TIFF tools: insert a line of text summarizing each tool's purpose
See merge request libtiff/libtiff!214
2021-03-06 Even Rouault <[email protected]>
Merge branch 'cmake-update' into 'master'
CMake updates
See merge request libtiff/libtiff!224
2021-03-06 Even Rouault <[email protected]>
tiff.h: typo fix in comment.
2021-02-15 Roger Leigh <[email protected]>
Merge branch 'remove-travis' into 'master'
ci: Remove unused Travis-CI support
See merge request libtiff/libtiff!226
2021-02-14 Roger Leigh <[email protected]>
ci: Remove unused Travis-CI support.
2021-02-14 Roger Leigh <[email protected]>
Merge branch 'ci-coverity' into 'master'
Enable Coverity static analysis with CI pipeline
See merge request libtiff/libtiff!225
2021-02-14 Roger Leigh <[email protected]>
ci: Add Coverity static analysis job.
ci: Use custom libtiff CI image.
2021-02-13 Roger Leigh <[email protected]>
cmake: Add release target.
cmake: Remove empty contrib files.
cmake: Tidy toplevel.
cmake: Move pkg-config support to PkgConfig.cmake.
cmake: Move library feature options to CXXLibraryFeatures.cmake.
cmake: Move C++ support to CXXLibrary.cmake.
cmake: Add FindCMath to handle libm linking portably.
cmake: Tidy unused includes.
cmake: Rename release date to build date.
cmake: Compute timestamp portably.
cmake: Remove remaining uses of report_values()
cmake: Move JPEG12 checks to JPEGCodec.cmake.
cmake: Move OpenGL checks to OpenGLChecks.cmake.
cmake: Move OpenGL checks to OpenGLChecks.cmake.
cmake: Move WebP codec support to WebPCodec.cmake.
cmake: Use imported targets for WebP.
cmake: Add FindWebP.
cmake: Move ZSTD codec support to ZSTDCodec.cmake.
cmake: Use imported targets for ZSTD.
cmake: Add FindZSTD.
cmake: Move LZMA codec support to LZMACodec.cmake.
cmake: Use imported targets for LibLZMA.
cmake: Move JBIG codec support to JBIGCodec.cmake.
cmake: Use imported targets for JBIG.
cmake: Add FindJBIG.
cmake: Move PixarLog codec support to PixarLogCodec.cmake.
cmake: Report system name in configuration report.
cmake: Move JPEG codec support to JPEGCodec.cmake.
cmake: Use imported targets for JPEG.
cmake: Move Deflate codec support to DeflateCodec.cmake.
cmake: Use imported targets for ZLIB and Deflate.
cmake: Add FindDeflate.
cmake: Move symbol checks to SymbolChecks.cmake.
cmake: Move include checks to IncludeChecks.cmake.
cmake: Move all autotools logic to separate files.
cmake: Move internal codec options to InternalCodecs.cmake.
cmake: Move LFS check to LargeFileSupport.cmake.
cmake: Move Win32 IO feature to WindowsIOFeature.cmake.
cmake: Move processor capability checks to ProcessorChecks.cmake.
cmake: Move type size checks to TypeSizeChecks.cmake.
cmake: Move linker checks to LinkerChecks.cmake.
cmake: Move warning options to CompilerChecks.
cmake: Move version introspection to AutotoolsVersion.cmake.
cmake: Move compiler checks to CompilerChecks.cmake.
cmake: Split into helper scripts.
2021-02-08 Roger Leigh <[email protected]>
cmake: Use target_sources.
libport: Adjust header and library to only define and link if required.
* Make libport an OBJECT library when in use, otherwise a dummy
INTERFACE library
* libport.h will work if getopt is present or not present. If
present, will fall back to <unistd.h>, else will define
symbols
* Add generated libport_config.h to define HAVE_GETOPT and HAVE_UNISTD_H
* dummy.c no longer needed with CMake
* libtiff/libtiffxx no longer link with libport
cmake: Remove unnecessary extra_dist usage.
Only makes sense in the context of Automake. Was carried over
for reference while porting, but is not needed.
cmake: Update minimum version and policy version to 3.9.
2021-02-08 Roger Leigh <[email protected]>
Merge branch 'remove-nmake' into 'master'
Remove NMake build support
See merge request libtiff/libtiff!223
2021-02-08 Roger Leigh <[email protected]>
Remove NMake build support.
The functionality provided by the NMake build is now completely
superseded by the CMake build.
2021-02-08 Even Rouault <[email protected]>
Merge branch 'warning-fixes' into 'master'
Warning fixes
See merge request libtiff/libtiff!222
2021-02-07 Miguel Medalha <[email protected]>
Update tiffsplit.c.
Reinsert summary line lost after conflicting merge.
Merge branch 'master' into 'display_tool_purpose'
# Conflicts:
# tools/tiffsplit.c
2021-02-06 Roger Leigh <[email protected]>
ci: Enable fatal warnings with -Werror for AppVeyor/GCC.
ci: Enable fatal warnings with -Werror for GitLab CI.
tif_zstd.c: Remove unused variable warning.
custom_dir_EXIF_231: Remove case statement fallthrough.
custom_dir_EXIF_231: Correct use of strncpy.
Correct include order.
Eliminate implict fallthrough usage.
Use simple loops in place of manual loop unrolling. Rely on
the compiler optimiser to unroll loops when appropriate.
Suppress potential unused variable warning.
Suppress warnings or avoid case statement fallthrough.
2021-02-05 Roger Leigh <[email protected]>
Merge branch 'c99-ssize_t-fixes' into 'master'
C99 ssize_t fixes
Closes #239
See merge request libtiff/libtiff!219
2021-02-05 Even Rouault <[email protected]>
Merge branch 'tiffsplit-too-many-args' into 'master'
tiffsplit.c: exit with EXIT_FAILURE if there are extra args on the command line
See merge request libtiff/libtiff!209
2021-02-05 Roger Leigh <[email protected]>
Add additional TIFF_SSIZE_FORMAT uses.
2021-02-04 Roger Leigh <[email protected]>
NMake fixes for size type formatting.
Add TIFF_SIZE_FORMAT for portable use of %z.
MinGW64 does support %z, but it issues a compiler warning.
Align Autoconf tif_config.h and CMake tif_config.cmake.in.
Use TIFF_SSIZE_FORMAT for formatting tmsize_t.
2021-02-04 Even Rouault <[email protected]>
Merge branch 'remove-lcc' into 'master'
Remove Makefile.lcc
See merge request libtiff/libtiff!221
2021-02-04 Even Rouault <[email protected]>
Merge branch 'remove-scons' into 'master'
Remove SCons build
See merge request libtiff/libtiff!220
2021-02-03 Even Rouault <[email protected]>
Merge branch 'c99-snprintf' into 'master'
Use C99 snprintf
See merge request libtiff/libtiff!217
2021-02-03 Roger Leigh <[email protected]>
Merge branch 'tiff2ps-const' into 'master'
tiff2ps.c: string literals must be const char *, not char *
See merge request libtiff/libtiff!202
2021-02-03 Roger Leigh <[email protected]>
Remove SCons build.
Unmaintained for 16 years.
2021-02-03 Roger Leigh <[email protected]>
Merge branch 'codec_summary' into 'master'
Modify 'CMakeLists.txt' to produce a meaningful summary of external codecs
See merge request libtiff/libtiff!192
2021-02-03 Roger Leigh <[email protected]>
Remove Makefile.lcc.
Unmaintained for 22 years.
2021-02-02 Roger Leigh <[email protected]>
Merge branch 'ci-32-bit' into 'master'
ci: Build 32- and 64-bit MSVC variants
See merge request libtiff/libtiff!218
2021-02-01 Roger Leigh <[email protected]>
ci: Build 32- and 64-bit MSVC variants.
Use C99 snprintf.
2021-02-01 Even Rouault <[email protected]>
Merge branch 'c99-strtol' into 'master'
Use C99 strtol, strtoul, strtoll and strtoull
See merge request libtiff/libtiff!216
2021-01-31 Even Rouault <[email protected]>
Merge branch 'c99-inline' into 'master'
Use C99 inline
See merge request libtiff/libtiff!215
2021-01-31 Roger Leigh <[email protected]>
Use C99 strtol, strtoul, strtoll and strtoull.
tif_fax3: Use C99 inline.
Remove inline feature tests and defines.
Available as a standard feature with C99.
2021-01-30 Miguel Medalha <[email protected]>
Update raw2tiff.c (remove duplicate description of tool)
2021-01-30 Roger Leigh <[email protected]>
Merge branch 'c99-format-strings' into 'master'
C99 format strings
See merge request libtiff/libtiff!211
2021-01-29 Miguel Medalha <[email protected]>
Update tiffdither.c (2 tabs caused slight misalignment of lines in usage info output)
2021-01-28 Miguel Medalha <[email protected]>
Update ppm2tiff.c (slight misalignment of lines in usage info output)
Update tiffset.c (small misalignment of lines in usage info output)
2021-01-28 Medalha <[email protected]>
Display tool purpose.
2021-01-28 Thomas Bernard <[email protected]>
tiff2ps.c: string literals must be const char *, not char *
2021-01-28 Roger Leigh <[email protected]>
libtiff: Use PRI format flags and remove unnecessary casts.
2021-01-27 Roger Leigh <[email protected]>
ascii_tag: Use PRI format flags and remove unnecessary casts.
check_tag: Use PRI format flags and remove unnecessary casts.
custom_dir_EXIF_231: Use PRI format flags and remove unnecessary casts.
short_tag: Use PRI format flags and remove unnecessary casts.
strip_rw: Use PRI format flags and remove unnecessary casts.
fax2tiff: Use PRI format flags and remove unnecessary casts.
ppm2tiff: Correct format strings.
raw2tiff: Use PRI format flags and remove unnecessary casts.
rgb2ycbcr: Use PRI format flags and remove unnecessary casts.
tiff2pdf: Use PRI format flags and remove unnecessary casts.
tiff2ps: Use PRI format flags and remove unnecessary casts.
tiff2rgba: Use PRI format flags and remove unnecessary casts.
tiffcmp: Use PRI format flags and remove unnecessary casts.
tiffcp: Use PRI format flags and remove unnecessary casts.
tiffcrop: Use PRI format flags and remove unnecessary casts.
tiffinfo: Use PRI format flags and remove unnecessary casts.
tiffdump: Use PRI format flags and remove unnecessary casts.
2021-01-27 Even Rouault <[email protected]>
Merge branch 'c99-require-stdtypes' into 'master'
Use standard C99 integer types
See merge request libtiff/libtiff!205
2021-01-26 Even Rouault <[email protected]>
Merge branch 'reserve_COMPRESSION_JXL' into 'master'
tiff.h: reserve COMPRESSION_JXL=50002 for JPEGXL
See merge request libtiff/libtiff!210
2021-01-22 Even Rouault <[email protected]>
tiff.h: reserve COMPRESSION_JXL=50002 for JPEGXL.
2021-01-22 Kurt Schwehr <[email protected]>
tiffsplit.c: exit with EXIT_FAILURE if there are extra args on the command line
e.g. tiffsplit in.tif a_prefix_ junk
2021-01-22 Roger Leigh <[email protected]>
Add and enable TIFF_DISABLE_DEPRECATED for internal use.
Add typedef deprecations for GCC/Clang and MSVC.
Use standard C99 integer types.
2021-01-20 Even Rouault <[email protected]>
Merge branch 'ubuntu-zstd-wepb' into 'master'
gitlab-ci : use libzstd-dev and libwebp-dev ubuntu packages
See merge request libtiff/libtiff!208
2021-01-20 Thomas Bernard <[email protected]>
gitlab-ci : use libzstd-dev and libwebp-dev ubuntu packages.
should replace !206
2021-01-20 Even Rouault <[email protected]>
Merge branch 'issue-232' into 'master'
tiff2ps: exit the loop in case of error
Closes #232
See merge request libtiff/libtiff!201
2021-01-20 Even Rouault <[email protected]>
Merge branch 'tiffsplit-exit-status' into 'master'
tiffsplit: Exit with EXIT_FAILURE if unable to open the input file.
See merge request libtiff/libtiff!207
2021-01-20 Even Rouault <[email protected]>
Merge branch 'config-cleanup' into 'master'
Remove HAVE_INTTYPES_H, HAVE_LFIND & lfind, HAVE_SEARCH_H & include <search.h>
See merge request libtiff/libtiff!203
2021-01-19 Kurt Schwehr <[email protected]>
tiffsplit: Exit with EXIT_FAILURE if unable to open the input file.
2021-01-18 Even Rouault <[email protected]>
Merge branch 'tiffcmp' into 'master'
tiffcmp: fix comparaison with pixels that are fractional number of bytes
Closes #53
See merge request libtiff/libtiff!141
2021-01-15 Kurt Schwehr <[email protected]>
CMakeLists.txt: Remove search for lfind.
Remove HAVE_INTTYPES_H, HAVE_LFIND & lfind, HAVE_SEARCH_H & include <search.h>
- HAVE_INTTYPES_H is replaced with TIFF_HAVE_INTTYPES_H
- tif_dirinfo.c has a static td_lfind
2021-01-15 Thomas Bernard <[email protected]>
tiffcmp: fix comparaison with pixels that are fractional number of bytes
For exemple : 4bits per sample + 3 samples per pixel => 1.5 bytes per pixel
tiff2ps: exit the loop in case of error.
fixes #232
2021-01-15 Even Rouault <[email protected]>
Merge branch 'rm-strcasecmp' into 'master'
Remove port/strcasecmp.c as strcasecmp is not currently used in libtiff.
Closes #235
See merge request libtiff/libtiff!199
2021-01-15 Even Rouault <[email protected]>
Merge branch 'std-int-types' into 'master'
Use standard C99 integer types
See merge request libtiff/libtiff!185
2021-01-13 Kurt Schwehr <[email protected]>
Remove port/strcasecmp.c as strcasecmp is not currently used in libtiff.
Fixes #235
2021-01-10 Miguel Medalha <[email protected]>
Update CMakeLists.txt. Delete unnecessary line from libdeflate codec support section
2021-01-10 Roger Leigh <[email protected]>
Merge branch 'include_libport' into 'master'
tiff tools and libtiff/mkg3states: include 'libport.h', remove local definition of 'getopt()'
See merge request libtiff/libtiff!198
2021-01-09 Miguel Medalha <[email protected]>
Update CMakeLists.txt. Cleanup of indentation space. Removal of leading '/' from webp include dir.
2021-01-09 miguel <[email protected]>
cmake: Use target_include_directories correctly.
2021-01-09 Roger Leigh <[email protected]>
cmake: Use target_include_directories correctly.
cmake: Drop unnecessary TOOL_INCLUDES.
2021-01-07 Roger Leigh <[email protected]>
cmake: Use target_include_directories correctly.
2021-01-07 miguel <[email protected]>
tiff tools and libtiff/mkg3states: include 'libport.h', remove local definition of 'getopt()'
2021-01-07 Miguel Medalha <[email protected]>
Update CMakeLists.txt.
2021-01-07 miguel <[email protected]>
tiff tools: include 'libport.h', remove local definition of 'getopt()'
2021-01-06 Roger Leigh <[email protected]>
Remove conditional use of <string.h>
cmake: Drop dlfcn.h check.
cmake: Remove duplicate line.
Use stdint.h types when available.
2021-01-05 Olivier Paquet <[email protected]>
Merge branch 'iptcutil' into 'master'
contrib/iptcutil.c: set '#ifdef _WIN32' (was '#ifdef WIN32', which failed at build time)
See merge request libtiff/libtiff!197
2021-01-05 miguel <[email protected]>
tiff tools: include 'libport.h', remove local definition of 'getopt()'
contrib/iptcutil.c - set '#ifdef _WIN32' (was '#ifdef WIN32', which failed at build time)
2021-01-04 Even Rouault <[email protected]>
tools/CMakeLists.txt: add comment about rgb2ycbcr and thumbnail not to be installed
2021-01-04 Even Rouault <[email protected]>
Merge branch 'revert-5331ed49' into 'master'
Revert "Merge branch 'install_targets' into 'master'"
See merge request libtiff/libtiff!196
2021-01-04 Even Rouault <[email protected]>
Merge branch 'drop-wince' into 'master'
Remove non-functional WinCE support
See merge request libtiff/libtiff!188
2021-01-04 Even Rouault <[email protected]>
Merge branch 'drop-vms' into 'master'
Remove non-functional VMS support
See merge request libtiff/libtiff!187
2021-01-03 Even Rouault <[email protected]>
Revert "Merge branch 'install_targets' into 'master'"
This reverts merge request !193
2021-01-03 Even Rouault <[email protected]>
Merge branch 'tiffcp_b_parameter' into 'master'
tiffcp: Remove unnecessary reference to compression from usage info for -b parameter
See merge request libtiff/libtiff!189
2021-01-03 Even Rouault <[email protected]>
Merge branch 'cmake-faxtable' into 'master'
cmake: Add faxtable target
See merge request libtiff/libtiff!186
2021-01-03 Roger Leigh <[email protected]>
Merge branch 'install_targets' into 'master'
Update 'CMakeLists.txt' from 'tools'.
See merge request libtiff/libtiff!193
2021-01-03 Miguel Medalha <[email protected]>
Update 'CMakeLists.txt' from 'tools'.
Update CMakeLists.txt.
2021-01-03 Roger Leigh <[email protected]>
Merge branch 'usage_info' into 'master'
thumbnail: Rename constant variable 'stuff' to 'usage_info'
See merge request libtiff/libtiff!190
2021-01-03 Miguel Medalha <[email protected]>
Modified 'CMakeLists.txt' to produce a meaningful summary of external codecs support.
Removed unnecessary reference to compression from usage info for -b parameter
Constant variable 'stuff' renamed to 'usage_info' for consistency with the other tools
2021-01-02 Roger Leigh <[email protected]>
Remove non-functional VMS support.
Remove non-functional WinCE support.
2021-01-02 Roger Leigh <[email protected]>
Merge branch 'codespell' into 'master'
Fix spelling mistakes.
See merge request libtiff/libtiff!183
2021-01-02 Kurt Schwehr <[email protected]>
ChangeLog: Remove extraneous character from prior commit - 00fe7828.
2021-01-02 Roger Leigh <[email protected]>
Merge branch 'codespell-custom_dir_EXIF_231' into 'master'
custom_dir_EXIF_231.c: dos2unix and codespell
See merge request libtiff/libtiff!184
2021-01-01 Roger Leigh <[email protected]>
mkg3states: Sync generator with current generated file content.
cmake: Add faxtable and mkg3states targets.
2020-12-31 Kurt Schwehr <[email protected]>
custom_dir_EXIF_231.c: dos2unix and codespell.
additonal, Varable, greather, alwasy
2020-12-31 Kurt Schwehr <[email protected]>
Fix spelling mistakes.
Found with:
codespell --version
1.17.1
2020-12-29 Even Rouault <[email protected]>
Merge branch 'remove-some-vms-ifdef' into 'master'
Remove "ifdef VMS" that are no longer necessary.
See merge request libtiff/libtiff!181
2020-12-29 Kurt Schwehr <[email protected]>
Remove "ifdef VMS" that are no longer necessary.
Both sides of the if are now the same.
2020-12-29 Bob Friesenhahn <[email protected]>
_TIFFBuiltinCODECS should be const.
2020-12-28 Even Rouault <[email protected]>
Merge branch 'issue-202' into 'master'
tiff2pdf.c: check that tiff_datasize fits in a signed tsize_t
Closes #202
See merge request libtiff/libtiff!166
2020-12-28 Even Rouault <[email protected]>
Merge branch 'w_report-when-libdeflate-is-found' into 'master'
CMakeLists.txt: Report when libdeflate is found
See merge request libtiff/libtiff!175
2020-12-28 Bob Friesenhahn <[email protected]>
Declare gpsFields as static const.
2020-12-28 Bob Friesenhahn <[email protected]>
Merge branch 'tools-reduce-initialized-data' into 'master'
Reduce initialized data by making more data const and simplifying usage() implementation.
See merge request libtiff/libtiff!180
2020-12-28 Bob Friesenhahn <[email protected]>
Reduce initialized data by making more data const and simplifying usage() implementation.
2020-12-27 Bob Friesenhahn <[email protected]>
Merge branch 'master' into 'master'
tiff tools: display of compression methods is now conditional instead of hard-coded
See merge request libtiff/libtiff!176
2020-12-27 Bob Friesenhahn <[email protected]>
Merge branch 'build' into 'master'
Fix wrong URL for fetching config.guess and config.sub
See merge request libtiff/libtiff!177
2020-12-26 Chocobo1 <[email protected]>
Fix wrong URL for fetching config.guess and config.sub.
2020-12-25 miguel <[email protected]>
tiff tools: made display of compression methods and their parameters conditional on their actual availability
2020-12-20 Bob Friesenhahn <[email protected]>
autogen.sh now updates config.guess and config.sub from master gnulib version.
2020-12-19 Bob Friesenhahn <[email protected]>
Add a https://libtiff.gitlab.io/libtiff/ link.
Remove stray character in URL area.
Changes for 4.2.0 release.
Changes for 4.2.0 release.
2020-12-19 Bob Friesenhahn <[email protected]>
* libtiff 4.2.0 released.
* configure.ac: Pass tar-ustar option to AM_INIT_AUTOMAKE rather
than tar-pax since ustar POSIX 1003.1-1988 format is more portable
than PAX POSIX 1003.1-2001 format.
2020-12-12 Even Rouault <[email protected]>
Merge branch 'w_adjust-deflate_names' into 'master'
Set 'deflate' to DEFLATE_NAMES, instead of 'libdeflate'
See merge request libtiff/libtiff!174
2020-12-12 Lemures Lemniscati <[email protected]>
Set 'deflate' to DEFLATE_NAMES, instead of 'libdeflate'
'lib' will be automatically added as a prefix while doing find_library()
2020-12-12 Even Rouault <[email protected]>
DoubleToRational(): avoid casting NaN to uint32 (fixes #227)
2020-12-12 Even Rouault <[email protected]>
Merge branch 'fix_221' into 'master'
tiffio.h: do not define __attribute__ but defines TIFF_ATTRIBUTE instead (fixes #221)
Closes #221
See merge request libtiff/libtiff!173
2020-12-12 Even Rouault <[email protected]>
tiffio.h: do not define __attribute__ but defines TIFF_ATTRIBUTE instead (fixes #221)
2020-12-08 Even Rouault <[email protected]>
TIFFReadDirEntryArrayWithLimit(): properly read from offline tag value when we clamp the number of strips to 1.
Fixes regression of commit 7057734d986001b7fd6d2afde9667da7754ff2cc on reading
a file with StripByteCounts with 1 element (broken) and StripOffsets with
896 elements, and where StripOffsets[0] is correct
$ tiffdump foo.tif
Magic: 0x4949 <little-endian> Version: 0x2a <ClassicTIFF>
Directory 0: offset 25725448 (0x1888a08) next 0 (0)
SubFileType (254) LONG (4) 1<0>
ImageWidth (256) LONG (4) 1<640>
ImageLength (257) LONG (4) 1<20098>
BitsPerSample (258) SHORT (3) 1<16>
Photometric (262) SHORT (3) 1<1>
SamplesPerPixel (277) SHORT (3) 1<1>
ResolutionUnit (296) SHORT (3) 1<2>
StripByteCounts (279) LONG (4) 1<1806>
StripOffsets (273) LONG (4) 896<8 648 1288 1928 2568 3208 3848 4488 5128 5768 6408 7048 7688 8328 8968 9608 10248 10888 11528 12168 12808 13448 14088 14728 ...>
2020-12-02 Even Rouault <[email protected]>
tif_jpeg.c: avoid potential harmless unsigned integer overflow on data->fileoffset in JPEGFixupTagsSubsamplingSkip() by validating earlier. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=28200
2020-11-27 Even Rouault <[email protected]>
Merge branch 'Jamaika1-master-patch-47839' into 'master'
Change ULARGE_INTEGER to LARGE_INTEGER
See merge request libtiff/libtiff!170
2020-11-27 Even Rouault <[email protected]>
Merge branch 'Jamaika1-master-patch-46397' into 'master'
Added stdint.h
See merge request libtiff/libtiff!171
2020-11-27 Jamaika <[email protected]>
Added stdint.h.
``` tif_win32.c: In function '_tiffSizeProc': tif_win32.c:159:23: warning: passing argument 2 of 'GetFileSizeEx' from incompatible pointer type [-Wincompatible-pointer-types] 159 | if (GetFileSizeEx(fd,&m)) | ^~ | | | ULARGE_INTEGER * In file included from c:\msys1021\x86_64-w64-mingw32\include\winbase.h:18, from c:\msys1021\x86_64-w64-mingw32\include\windows.h:70, from tif_win32.c:32: c:\msys1021\x86_64-w64-mingw32\include\fileapi.h:78:73: note: expected 'PLARGE_INTEGER' {aka 'LARGE_INTEGER *'} but argument is of type 'ULARGE_INTEGER *' 78 | WINBASEAPI WINBOOL WINAPI GetFileSizeEx (HANDLE hFile, PLARGE_INTEGER lpFileSize); | ~~~~~~~~~~~~~~~^~~~~~~~~~ ```
2020-11-21 Even Rouault <[email protected]>
Merge branch 'issue-113' into 'master'
tiffcrop: fix buffer overrun in extractContigSamples24bits()
Closes #113
See merge request libtiff/libtiff!169
2020-11-21 Even Rouault <[email protected]>
Merge branch 'issue-156' into 'master'
tiff2pdf: Check output size before writing
Closes #156
See merge request libtiff/libtiff!168
2020-11-21 Even Rouault <[email protected]>
Merge branch 'issue-201' into 'master'
tiff2pdf: enforce memory limit for tiled pictures too