summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* ci: Add Coverity static analysis jobci-coverityRoger Leigh2021-02-132-1/+34
|
* ci: Use custom libtiff CI imageRoger Leigh2021-02-131-4/+1
|
* Merge branch 'remove-nmake' into 'master'Roger Leigh2021-02-0818-815/+6
|\ | | | | | | | | Remove NMake build support See merge request libtiff/libtiff!223
| * Remove NMake build supportRoger Leigh2021-02-0818-815/+6
|/ | | | | The functionality provided by the NMake build is now completely superseded by the CMake build.
* Merge branch 'warning-fixes' into 'master'Even Rouault2021-02-0815-166/+187
|\ | | | | | | | | Warning fixes See merge request libtiff/libtiff!222
| * ci: Enable fatal warnings with -Werror for AppVeyor/GCCRoger Leigh2021-02-061-2/+3
| |
| * ci: Enable fatal warnings with -Werror for GitLab CIRoger Leigh2021-02-061-2/+3
| |
| * tif_zstd.c: Remove unused variable warningRoger Leigh2021-02-061-0/+1
| |
| * custom_dir_EXIF_231: Remove case statement fallthroughRoger Leigh2021-02-061-98/+124
| |
| * custom_dir_EXIF_231: Correct use of strncpyRoger Leigh2021-02-061-1/+2
| |
| * Correct include orderRoger Leigh2021-02-061-2/+1
| |
| * Eliminate implict fallthrough usageRoger Leigh2021-02-062-67/+23
| | | | | | | | | | Use simple loops in place of manual loop unrolling. Rely on the compiler optimiser to unroll loops when appropriate.
| * Suppress potential unused variable warningRoger Leigh2021-02-061-1/+1
| |
| * Suppress warnings or avoid case statement fallthroughRoger Leigh2021-02-068-15/+51
|/
* Merge branch 'c99-ssize_t-fixes' into 'master'Roger Leigh2021-02-0524-119/+280
|\ | | | | | | | | | | | | C99 ssize_t fixes Closes #239 See merge request libtiff/libtiff!219
| * Add additional TIFF_SSIZE_FORMAT usesRoger Leigh2021-02-053-10/+10
| |
| * NMake fixes for size type formattingRoger Leigh2021-02-042-1/+4
| |
| * Add TIFF_SIZE_FORMAT for portable use of %zRoger Leigh2021-02-047-11/+29
| | | | | | | | MinGW64 does support %z, but it issues a compiler warning.
| * Align Autoconf tif_config.h and CMake tif_config.cmake.inRoger Leigh2021-02-047-53/+186
| |
| * Use TIFF_SSIZE_FORMAT for formatting tmsize_tRoger Leigh2021-02-0413-48/+55
| |
* | Merge branch 'tiffsplit-too-many-args' into 'master'Even Rouault2021-02-051-1/+1
|\ \ | |/ |/| | | | | tiffsplit.c: exit with EXIT_FAILURE if there are extra args on the command line See merge request libtiff/libtiff!209
| * tiffsplit.c: exit with EXIT_FAILURE if there are extra args on the command lineKurt Schwehr2021-01-221-1/+1
| | | | | | | | e.g. tiffsplit in.tif a_prefix_ junk
* | Merge branch 'remove-lcc' into 'master'Even Rouault2021-02-042-260/+0
|\ \ | | | | | | | | | | | | Remove Makefile.lcc See merge request libtiff/libtiff!221
| * | Remove Makefile.lccRoger Leigh2021-02-032-260/+0
| | | | | | | | | | | | Unmaintained for 22 years.
* | | Merge branch 'remove-scons' into 'master'Even Rouault2021-02-046-244/+0
|\ \ \ | | | | | | | | | | | | | | | | Remove SCons build See merge request libtiff/libtiff!220
| * | | Remove SCons buildRoger Leigh2021-02-036-244/+0
| |/ / | | | | | | | | | Unmaintained for 16 years.
* | | Merge branch 'c99-snprintf' into 'master'Even Rouault2021-02-0312-92/+3
|\ \ \ | | | | | | | | | | | | | | | | Use C99 snprintf See merge request libtiff/libtiff!217
| * | | Use C99 snprintfRoger Leigh2021-02-0112-92/+3
| | | |
* | | | Merge branch 'tiff2ps-const' into 'master'Roger Leigh2021-02-031-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | tiff2ps.c: string literals must be const char *, not char * See merge request libtiff/libtiff!202
| * | | | tiff2ps.c: string literals must be const char *, not char *Thomas Bernard2021-01-281-2/+2
| | | | |
* | | | | Merge branch 'codec_summary' into 'master'Roger Leigh2021-02-031-110/+103
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | Modify 'CMakeLists.txt' to produce a meaningful summary of external codecs See merge request libtiff/libtiff!192
| * | | | Update CMakeLists.txt. Delete unnecessary line from libdeflate codec support ↵Miguel Medalha2021-01-101-1/+0
| | | | | | | | | | | | | | | | | | | | section
| * | | | Update CMakeLists.txt. Cleanup of indentation space. Removal of leading '/' ↵Miguel Medalha2021-01-091-46/+45
| | | | | | | | | | | | | | | | | | | | from webp include dir.
| * | | | Update CMakeLists.txtMiguel Medalha2021-01-031-10/+1
| | | | |
| * | | | Modified 'CMakeLists.txt' to produce a meaningful summary of externalMiguel Medalha2021-01-031-110/+113
| | | | | | | | | | | | | | | codecs support.
* | | | | Merge branch 'ci-32-bit' into 'master'Roger Leigh2021-02-011-1/+3
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | ci: Build 32- and 64-bit MSVC variants See merge request libtiff/libtiff!218
| * | | | ci: Build 32- and 64-bit MSVC variantsRoger Leigh2021-02-011-1/+3
|/ / / /
* | | | Merge branch 'c99-strtol' into 'master'Even Rouault2021-02-0115-564/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Use C99 strtol, strtoul, strtoll and strtoull See merge request libtiff/libtiff!216
| * | | | Use C99 strtol, strtoul, strtoll and strtoullRoger Leigh2021-01-3115-564/+2
| | | | |
* | | | | Merge branch 'c99-inline' into 'master'Even Rouault2021-01-315-53/+2
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | Use C99 inline See merge request libtiff/libtiff!215
| * | | | tif_fax3: Use C99 inlineRoger Leigh2021-01-311-12/+2
| | | | |
| * | | | Remove inline feature tests and definesRoger Leigh2021-01-314-41/+0
|/ / / / | | | | | | | | | | | | Available as a standard feature with C99.
* | | | Merge branch 'c99-format-strings' into 'master'Roger Leigh2021-01-3039-1157/+930
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | C99 format strings See merge request libtiff/libtiff!211
| * | | libtiff: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-2824-529/+345
| | | |
| * | | ascii_tag: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-271-4/+4
| | | |
| * | | check_tag: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-271-12/+12
| | | |
| * | | custom_dir_EXIF_231: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-271-2/+2
| | | |
| * | | short_tag: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-271-4/+4
| | | |
| * | | strip_rw: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-271-15/+15
| | | |
| * | | fax2tiff: Use PRI format flags and remove unnecessary castsRoger Leigh2021-01-271-7/+7
| | | |