laag-libtiff 4.0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +57 -0
- data/LICENSE.txt +21 -0
- data/README.org +34 -0
- data/ext/laag/libtiff/extconf.rb +13 -0
- data/laag-libtiff.gemspec +20 -0
- data/lib/laag/libtiff.rb +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/.appveyor.yml +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/.cvsignore +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/.travis.yml +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/CMakeLists.txt +764 -0
- data/vendor/gitlab.com/libtiff/libtiff/COMMITTERS +19 -0
- data/vendor/gitlab.com/libtiff/libtiff/COPYRIGHT +21 -0
- data/vendor/gitlab.com/libtiff/libtiff/ChangeLog +8073 -0
- data/vendor/gitlab.com/libtiff/libtiff/HOWTO-RELEASE +119 -0
- data/vendor/gitlab.com/libtiff/libtiff/HOWTO-SECURITY-RELEASE +19 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.am +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.in +995 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.vc +58 -0
- data/vendor/gitlab.com/libtiff/libtiff/README +61 -0
- data/vendor/gitlab.com/libtiff/libtiff/README.vms +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/RELEASE-DATE +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/SConstruct +171 -0
- data/vendor/gitlab.com/libtiff/libtiff/TODO +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/VERSION +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/aclocal.m4 +1194 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/bmp2tiff.1.html +121 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/gif2tiff.1.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/ras2tiff.1.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/sgi2tiff.1.html +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/tiffsv.1.html +207 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/bmp2tiff.1 +85 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/gif2tiff.1 +81 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/ras2tiff.1 +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/sgi2tiff.1 +93 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/tiffsv.1 +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/bmp2tiff.c +937 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/gif2tiff.c +591 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ras2tiff.c +338 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/rasterfile.h +44 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgi2tiff.c +337 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgisv.c +318 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ycbcr.c +168 -0
- data/vendor/gitlab.com/libtiff/libtiff/autogen.sh +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/.cvsignore +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/CMakeLists.txt +25 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.in +680 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/README +3 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/travis-ci +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/commit +233 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/compile +347 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/config.guess +1526 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/config.sub +1658 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/depcomp +791 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/install-sh +507 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/ltmain.sh +11156 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/missing +215 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/mkinstalldirs +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/test-driver +127 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure +23612 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure.ac +1112 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure.com +1357 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/CMakeLists.txt +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.am +31 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.in +679 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/README +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/CMakeLists.txt +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.am +39 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.in +652 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.vc +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/README +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/addtiffo.c +181 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_overview.c +916 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.h +103 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/.cvsignore +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/CMakeLists.txt +43 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.am +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.in +798 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/README +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-bi.c +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-grayscale.c +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-palette.c +284 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-rgb.c +201 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/CMakeLists.txt +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.am +47 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.in +516 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/README +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/patchlevel.h +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtiff.c +1290 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtifficon.h +21 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/CMakeLists.txt +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.am +40 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.in +650 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/README +25 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/iptcutil.c +954 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.iptc +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.txt +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/CMakeLists.txt +27 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.am +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.in +499 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/README +37 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/mfs_file.c +586 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/CMakeLists.txt +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.in +502 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/README +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.c +525 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.h +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirread.c +1131 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirwrite.c +971 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/CMakeLists.txt +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.am +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.in +500 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/README +10 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/ras2tif.c +254 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/tif2ras.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/CMakeLists.txt +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.am +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.in +500 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/README +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.cpp +238 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.h +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/CMakeLists.txt +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.am +33 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.in +503 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/README +132 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/listtif.c +39 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/maketif.c +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtif_dir.c +350 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffio.h +59 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffiop.h +72 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/CMakeLists.txt +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.in +502 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.w95 +134 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.Tiffile +31 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.tiff2dib +51 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Tiffile.cpp +449 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/tiff2dib.c +379 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/BigTIFFProposal.html +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/CMakeLists.txt +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.am +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.in +798 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/TIFFTechNote2.html +707 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/addingtags.html +292 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffdesign.html +80 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr.html +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/esri.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/leica.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/safe.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/weogeo.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bugs.html +61 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/build.html +737 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/contrib.html +209 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/document.html +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images.html +41 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/CMakeLists.txt +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.am +49 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.in +572 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/back.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/bali.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cat.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cover.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cramps.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/dave.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/info.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/jello.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/jim.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/note.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/oxford.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/quad.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/ring.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/smallliz.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/strike.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/warning.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/index.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/internals.html +572 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/intro.html +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/libtiff.html +747 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/CMakeLists.txt +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/HtmlDoc.cmake +50 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.am +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.in +642 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFClose.3tiff.html +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFDataWidth.3tiff.html +98 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFError.3tiff.html +106 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldDataType.3tiff.html +89 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldName.3tiff.html +86 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldPassCount.3tiff.html +98 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldReadCount.3tiff.html +101 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldTag.3tiff.html +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldWriteCount.3tiff.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFlush.3tiff.html +113 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFGetField.3tiff.html +1969 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFOpen.3tiff.html +421 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFPrintDirectory.3tiff.html +225 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFRGBAImage.3tiff.html +319 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadDirectory.3tiff.html +218 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedStrip.3tiff.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedTile.3tiff.html +130 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAImage.3tiff.html +301 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAStrip.3tiff.html +208 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBATile.3tiff.html +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawStrip.3tiff.html +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawTile.3tiff.html +111 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadScanline.3tiff.html +157 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadTile.3tiff.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetDirectory.3tiff.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetField.3tiff.html +1865 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWarning.3tiff.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteDirectory.3tiff.html +176 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedStrip.3tiff.html +153 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedTile.3tiff.html +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawStrip.3tiff.html +144 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawTile.3tiff.html +128 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteScanline.3tiff.html +206 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteTile.3tiff.html +115 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFbuffer.3tiff.html +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcodec.3tiff.html +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcolor.3tiff.html +975 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFmemory.3tiff.html +110 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFquery.3tiff.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFsize.3tiff.html +95 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFstrip.3tiff.html +129 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFswab.3tiff.html +110 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFtile.3tiff.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2ps.1.html +252 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2tiff.1.html +607 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/index.html +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/libtiff.3tiff.html +1150 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/pal2rgb.1.html +189 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/ppm2tiff.1.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/raw2tiff.1.html +510 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/rgb2ycbcr.1.html +155 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/thumbnail.1.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2bw.1.html +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2pdf.1.html +609 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2ps.1.html +639 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2rgba.1.html +162 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcmp.1.html +156 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcp.1.html +569 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcrop.1.html +684 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdither.1.html +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdump.1.html +145 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffgt.1.html +551 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffinfo.1.html +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffmedian.1.html +183 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffset.1.html +176 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffsplit.1.html +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/misc.html +117 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/support.html +655 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/tools.html +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta007.html +112 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta016.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta018.html +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta024.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta028.html +146 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta029.html +86 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta031.html +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta032.html +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta033.html +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta034.html +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta035.html +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta036.html +117 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.1.html +75 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.2.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.3.html +132 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.4.html +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.5.html +155 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.6-beta.html +185 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.7.html +259 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.0.html +434 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.1.html +199 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0.html +144 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0alpha.html +249 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta.html +162 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta2.html +131 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.1.html +233 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.2.html +222 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.3.html +230 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.4.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.0.html +199 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.1.html +217 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.2.html +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0.html +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0beta.html +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.1.html +115 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.2.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.3.html +160 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.4.html +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.5.html +270 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.0.html +269 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.1.html +113 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.2.html +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.3.html +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4.html +274 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4beta.html +291 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.5.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.6.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.7.html +411 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.8.html +445 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.9.html +373 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff-4.pc.in +11 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/.cvsignore +22 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/CMakeLists.txt +165 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.am +154 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.in +966 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.lcc +129 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.vc +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/SConstruct +73 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.def +168 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.map +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiffxx.map +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkg3states.c +454 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkspans.c +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/t4.h +292 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_aux.c +376 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_close.c +140 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_codec.c +165 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_color.c +309 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_compress.c +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h-vms +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.cmake.in +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.in +410 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.vc.h +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.wince.h +71 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.c +1767 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.h +309 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirinfo.c +1070 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirread.c +5803 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirwrite.c +3024 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dumpmode.c +143 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_error.c +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_extension.c +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.c +1648 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.h +540 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3sm.c +1260 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_flush.c +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_getimage.c +3048 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jbig.c +214 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg.c +2601 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg_12.c +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_luv.c +1765 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzma.c +495 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzw.c +1218 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_next.c +189 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_ojpeg.c +2563 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_open.c +725 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_packbits.c +311 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_pixarlog.c +1485 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.c +881 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.h +79 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_print.c +722 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_read.c +1572 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_stream.cxx +430 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_strip.c +389 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_swab.c +312 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_thunder.c +208 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_tile.c +322 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_unix.c +386 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_version.c +40 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_vms.c +611 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_warning.c +89 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_win32.c +476 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_wince.c +293 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_write.c +834 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_zip.c +476 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiff.h +681 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h-vms +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.cmake.in +130 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.in +127 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.vc.h +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.wince.h +121 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.h +560 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.hxx +49 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffiop.h +445 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h +9 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h.in +9 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/uvcode.h +180 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/acinclude.m4 +851 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ice_find_athena.m4 +187 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/libtool.m4 +8388 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltoptions.m4 +437 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltsugar.m4 +124 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltversion.m4 +23 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/lt~obsolete.m4 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/.cvsignore +3 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/CMakeLists.txt +97 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.am +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.in +684 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFClose.3tiff +53 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFDataWidth.3tiff +74 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFError.3tiff +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldDataType.3tiff +53 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldName.3tiff +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldPassCount.3tiff +73 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldReadCount.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldTag.3tiff +56 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldWriteCount.3tiff +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFlush.3tiff +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFGetField.3tiff +229 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFOpen.3tiff +279 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFPrintDirectory.3tiff +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFRGBAImage.3tiff +286 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadDirectory.3tiff +164 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedStrip.3tiff +78 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedTile.3tiff +76 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAImage.3tiff +218 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAStrip.3tiff +170 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBATile.3tiff +171 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawStrip.3tiff +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawTile.3tiff +65 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadScanline.3tiff +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadTile.3tiff +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetDirectory.3tiff +79 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetField.3tiff +217 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWarning.3tiff +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteDirectory.3tiff +138 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedStrip.3tiff +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedTile.3tiff +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawStrip.3tiff +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawTile.3tiff +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteScanline.3tiff +154 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteTile.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFbuffer.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcodec.3tiff +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcolor.3tiff +268 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFmemory.3tiff +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFquery.3tiff +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFsize.3tiff +59 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFstrip.3tiff +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFswab.3tiff +80 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFtile.3tiff +131 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/fax2ps.1 +159 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/fax2tiff.1 +286 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/libtiff.3tiff +545 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/pal2rgb.1 +111 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/ppm2tiff.1 +105 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/raw2tiff.1 +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/rgb2ycbcr.1 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/thumbnail.1 +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2bw.1 +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2pdf.1 +254 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2ps.1 +294 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2rgba.1 +97 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcmp.1 +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcp.1 +317 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcrop.1 +571 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffdither.1 +135 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffdump.1 +81 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffgt.1 +245 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffinfo.1 +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffmedian.1 +112 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffset.1 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffsplit.1 +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/nmake.opt +229 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/.cvsignore +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/CMakeLists.txt +60 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.am +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.in +656 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.vc +44 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/dummy.c +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/getopt.c +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/lfind.c +62 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/libport.h +60 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/snprintf.c +38 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strcasecmp.c +51 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strtoul.c +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strtoull.c +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/.cvsignore +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/CMakeLists.txt +382 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.am +334 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.in +1987 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffSplitTest.cmake +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffTest.cmake +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffTestCommon.cmake +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ascii_tag.c +177 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/check_tag.c +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/common.sh +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/custom_dir.c +247 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/README.txt +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/logluv-3c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.pgm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-2c-8b-alpha.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.pbm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-1b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-4b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-lzw-compat.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-tile.jpg.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.ppm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/long_tag.c +156 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pbm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pgm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_ppm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/raw_decode.c +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/rewrite_tag.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/short_tag.c +205 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/strip.c +290 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/strip_rw.c +157 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.c +829 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.h +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-quad-lzw-compat.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2pdf.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-EPS1.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS1.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS2.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS3.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d-fill.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d-fill.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g4.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-logluv.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-lzw-compat.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split-join.sh +16 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split.sh +13 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-thumbnail.sh +10 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffdump.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffinfo.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tifftest.h +42 -0
- data/vendor/gitlab.com/libtiff/libtiff/tiff.spec +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/.cvsignore +27 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/CMakeLists.txt +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.am +138 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.in +955 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.lcc +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.vc +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/fax2ps.c +463 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/fax2tiff.c +491 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/pal2rgb.c +438 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/ppm2tiff.c +397 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/raw2tiff.c +690 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/rgb2ycbcr.c +397 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/thumbnail.c +691 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2bw.c +501 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2pdf.c +5594 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2ps.c +3106 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2rgba.c +569 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcmp.c +659 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcp.c +1913 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcrop.c +9231 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdither.c +347 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdump.c +889 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffgt.c +486 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfo.c +488 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfoce.c +472 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffmedian.c +918 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffset.c +356 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffsplit.c +305 -0
- metadata +692 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<HTML>
|
|
2
|
+
<HEAD>
|
|
3
|
+
<TITLE>Bugs and the TIFF Mailing List</TITLE>
|
|
4
|
+
</HEAD>
|
|
5
|
+
<BODY BGCOLOR=white>
|
|
6
|
+
<FONT FACE="Arial, Helvetica, Sans">
|
|
7
|
+
<H1>
|
|
8
|
+
<IMG SRC=images/cover.jpg WIDTH=110 HEIGHT=110 ALIGN=left BORDER=1 HSPACE=6>
|
|
9
|
+
Bugs, Bugzilla, and the TIFF Mailing List
|
|
10
|
+
</H1>
|
|
11
|
+
|
|
12
|
+
<P>
|
|
13
|
+
This software is free. Please let us know when you find a problem or
|
|
14
|
+
fix a bug.
|
|
15
|
+
|
|
16
|
+
<P>
|
|
17
|
+
Thanks to <A HREF=http://www.maptools.org/>MapTools.org</a>, libtiff now uses
|
|
18
|
+
bugzilla to track bugs. All bugs filed in the older bugzilla at
|
|
19
|
+
bugzilla.remotesensing.org (pre April 2008) have unfortunately been lost.
|
|
20
|
+
<P>
|
|
21
|
+
If you think you've discovered a bug, please first check to see if it is
|
|
22
|
+
already known by looking at the list of already reported bugs. You can do so
|
|
23
|
+
by visiting the buglist at
|
|
24
|
+
<A HREF=http://bugzilla.maptools.org/buglist.cgi?product=libtiff>http://bugzilla.maptools.org/buglist.cgi?product=libtiff</A>. Also verify that
|
|
25
|
+
the problem is still reproducable with the current development software
|
|
26
|
+
from CVS.
|
|
27
|
+
<P>
|
|
28
|
+
If you'd like to enter a new bug, you can do so at
|
|
29
|
+
<A HREF=http://bugzilla.maptools.org/enter_bug.cgi?product=libtiff>http://bugzilla.maptools.org/enter_bug.cgi?product=libtiff</A>.
|
|
30
|
+
<P>
|
|
31
|
+
If you'd like to inform us about some kind of security issue that should not
|
|
32
|
+
be disclosed for a period of time, then you can contact maintainers directly.
|
|
33
|
+
Send a copies of your report to the following people: Frank Warmerdam
|
|
34
|
+
<a href="mailto:warmerdam@pobox.com"><warmerdam@pobox.com></a> and
|
|
35
|
+
Bob Friesenhahn
|
|
36
|
+
<a href="mailto:bfriesen@simple.dallas.tx.us"><bfriesen@simple.dallas.tx.us></a>.
|
|
37
|
+
<P>
|
|
38
|
+
|
|
39
|
+
Of course, reporting bugs is no substitute for discussion. The
|
|
40
|
+
<a href="mailto:tiff@lists.maptools.org">tiff@lists.maptools.org</a> mailing
|
|
41
|
+
list is for users of this software, and discussion TIFF issues in general.
|
|
42
|
+
It is managed with the Mailman software, and the web interface for subscribing
|
|
43
|
+
and managing your access to the list is at:<p>
|
|
44
|
+
|
|
45
|
+
<a href="http://lists.maptools.org/mailman/listinfo/tiff">http://lists.maptools.org/mailman/listinfo/tiff</a><P>
|
|
46
|
+
|
|
47
|
+
Posts to the list are only accepted from members of the list in order
|
|
48
|
+
to limit the amount of spam propagated.<p>
|
|
49
|
+
|
|
50
|
+
A <A HREF="http://www.awaresystems.be/imaging/tiff/tml.html">Long Term
|
|
51
|
+
Archive</a> including recent messages, and most messages back to 1993,
|
|
52
|
+
with search capabilities is available, and
|
|
53
|
+
has been prepared and hosted by <a href="http://www.awaresystems.be">AWare
|
|
54
|
+
Systems</a>. <p>
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
<HR>
|
|
58
|
+
|
|
59
|
+
Last updated: $Date: 2016-04-08 02:34:03 $
|
|
60
|
+
</BODY>
|
|
61
|
+
</HTML>
|
|
@@ -0,0 +1,737 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="generator" content=
|
|
5
|
+
"HTML Tidy for Linux (vers 25 March 2009), see www.w3.org">
|
|
6
|
+
<title>Building the TIFF Software Distribution</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body bgcolor="white">
|
|
9
|
+
<h1><font face="Arial, Helvetica, Sans"><img src=
|
|
10
|
+
"images/cramps.gif" width="159" height="203" align="left" border=
|
|
11
|
+
"1" hspace="6"> Building the Software Distribution</font></h1>
|
|
12
|
+
<ul>
|
|
13
|
+
<li><a href="#CMAKE">Building on all systems with CMake</a>.</li>
|
|
14
|
+
<li><a href="#UNIX">Building on a UNIX system with Autoconf</a>.</li>
|
|
15
|
+
<li><a href="#PC">Building on an MS-DOS or Windows system with nmake</a>.</li>
|
|
16
|
+
<li><a href="#VMS">Building on a VMS system</a>.</li>
|
|
17
|
+
<li><a href="#Other">Building the Software on Other
|
|
18
|
+
Systems.</a></li>
|
|
19
|
+
</ul>
|
|
20
|
+
<br clear="left">
|
|
21
|
+
This chapter contains step-by-step instructions on how to configure
|
|
22
|
+
and build the TIFF software distribution. The software is most
|
|
23
|
+
easily built on a UNIX system, but with a little bit of work it can
|
|
24
|
+
easily be built and used on other non-UNIX platforms.
|
|
25
|
+
<hr>
|
|
26
|
+
<a name="CMake" id="CMAKE"></a>
|
|
27
|
+
<h2>Building on all systems with CMake</h2> CMake may be used to
|
|
28
|
+
generate build files for most common build systems and IDEs, and
|
|
29
|
+
supports all UNIX-like systems as well as Windows. See
|
|
30
|
+
the <a href="http://www.cmake.org/">CMake website</a> for further
|
|
31
|
+
details. To build the software on you need to first run
|
|
32
|
+
<tt>cmake</tt> to configure the build and generate the system-specific
|
|
33
|
+
build files. This reads the top-level <tt>CMakeLists.txt</tt> file,
|
|
34
|
+
which probes the target system for necessary tools and functions,
|
|
35
|
+
checks any options you specified to configure the build, and then
|
|
36
|
+
outputs build files configured for your system. If using <tt>Unix
|
|
37
|
+
Makefiles</tt>, once configuration is done, you simply
|
|
38
|
+
run <tt>make</tt> (or <tt>gmake</tt>) to build the software and
|
|
39
|
+
then <tt>make install</tt> to do the installation. For other build
|
|
40
|
+
systems, you do the equivalent steps with the tool for that system.
|
|
41
|
+
For example, on any UNIX system:
|
|
42
|
+
<div style="margin-left: 2em">
|
|
43
|
+
<pre>
|
|
44
|
+
% <b>cd ./tiff-4.0.5</b>
|
|
45
|
+
% <b>cmake</b>
|
|
46
|
+
<i>...lots of messages...</i>
|
|
47
|
+
% <b>make</b>
|
|
48
|
+
<i>...lots of messages...</i>
|
|
49
|
+
% <b>make test</b>
|
|
50
|
+
<i>...lots of messages...</i>
|
|
51
|
+
# <b>make install</b>
|
|
52
|
+
</pre></div>
|
|
53
|
+
Building is dependent on a <tt>make</tt> utility and a C
|
|
54
|
+
(and optionally a C++ compiler), so you will need these tools.
|
|
55
|
+
<p>In general, the software is designed such that the following
|
|
56
|
+
targets will always be available</p>
|
|
57
|
+
<div style="margin-left: 2em">
|
|
58
|
+
<pre>
|
|
59
|
+
make [all] build stuff
|
|
60
|
+
make test run the test suite
|
|
61
|
+
make install build and install stuff
|
|
62
|
+
make clean remove object files, executables and cruft
|
|
63
|
+
</pre></div>
|
|
64
|
+
<a name="CMakeBuildTrees" id= "CMakeBuildTrees"></a>
|
|
65
|
+
<hr width="65%" align="right">
|
|
66
|
+
<h3>Build Trees</h3>
|
|
67
|
+
There are two schemes for configuring and building the software. If
|
|
68
|
+
you intend to build the software for only one target system, you
|
|
69
|
+
can configure the software so that it is built in the same
|
|
70
|
+
directories as the source code.
|
|
71
|
+
<div style="margin-left: 2em">
|
|
72
|
+
<pre>
|
|
73
|
+
% <b>gzip -dc tiff-4.0.5.tar.gz | tar -xf -</b>
|
|
74
|
+
% <b>cd ./tiff-4.0.5</b>
|
|
75
|
+
% <b>cmake</b>
|
|
76
|
+
% <b>make</b>
|
|
77
|
+
% <b>make test</b>
|
|
78
|
+
% <b>make install</b>
|
|
79
|
+
</pre></div>
|
|
80
|
+
<p>Otherwise, you can configure a build tree that is parallel to
|
|
81
|
+
the source tree hierarchy (or in some completely different place)
|
|
82
|
+
but which contains only configured files and files created during
|
|
83
|
+
the build procedure.</p>
|
|
84
|
+
<div style="margin-left: 2em">
|
|
85
|
+
<pre>
|
|
86
|
+
% <b>gzip -dc tiff-4.0.5.tar.gz | tar -xf -</b>
|
|
87
|
+
% <b>mkdir tiff-4.0.5-build</b>
|
|
88
|
+
% <b>cd ./tiff-4.0.5-build</b>
|
|
89
|
+
% <b>cmake ../tiff-4.0.5</b>
|
|
90
|
+
% <b>make</b>
|
|
91
|
+
% <b>make test</b>
|
|
92
|
+
% <b>make install</b>
|
|
93
|
+
</pre></div>
|
|
94
|
+
This second scheme is useful for:
|
|
95
|
+
<ul>
|
|
96
|
+
<li>building multiple targets from a single source tree</li>
|
|
97
|
+
<li>building from a read-only source tree (e.g. if you receive the
|
|
98
|
+
distribution on CD-ROM)</li>
|
|
99
|
+
<li>sharing the source files via a network, but building on
|
|
100
|
+
multiple systems</li>
|
|
101
|
+
<li>keeping the source tree clean
|
|
102
|
+
(unlike <tt>autoconf</tt>, <tt>cmake</tt> does not provide
|
|
103
|
+
a <tt>distclean</tt> target, so out of source builds are
|
|
104
|
+
recommended)</li>
|
|
105
|
+
</ul>
|
|
106
|
+
<a name="CMakeGenerators" id= "CMakeGenerators"></a>
|
|
107
|
+
<hr width="65%" align="right">
|
|
108
|
+
<h3>Generators</h3> The default generator for UNIX is <tt>Unix
|
|
109
|
+
Makefiles</tt>, and on Windows is <tt>NMake Makefiles</tt> or MSBuild
|
|
110
|
+
depending upon the setup. Run <b>cmake --help</b> to list all the
|
|
111
|
+
generators available for your platform. For example, to use the Ninja
|
|
112
|
+
<a href="https://martine.github.io/ninja/">build system</a> on UNIX or
|
|
113
|
+
Windows:
|
|
114
|
+
<pre>
|
|
115
|
+
<b>cmake -G Ninja</b>
|
|
116
|
+
<b>cmake --build .</b>
|
|
117
|
+
<b>ctest -V</b>
|
|
118
|
+
<b>cmake --build . --target install</b>
|
|
119
|
+
</pre>
|
|
120
|
+
<p>Note that <b>cmake --build .</b> is a build-system-independent way
|
|
121
|
+
of building a target; you can always use the build system directly.</p>
|
|
122
|
+
<p>Alternatively, using the MSBuild system on Windows (64-bit Release
|
|
123
|
+
build with VS2013):
|
|
124
|
+
</p>
|
|
125
|
+
<pre>
|
|
126
|
+
<b>cmake -G "Visual Studio 12 2013 Win64"</b>
|
|
127
|
+
<b>cmake --build . --config Release</b>
|
|
128
|
+
<b>ctest -V -C Release</b>
|
|
129
|
+
<b>cmake --build . --config Release --target install</b>
|
|
130
|
+
</pre>
|
|
131
|
+
With the above configuration, it's also possible to open the generated
|
|
132
|
+
solution file with the Visual Studio IDE as well as building on the
|
|
133
|
+
command-line.
|
|
134
|
+
<a name="CMakeConfigOptions" id="CMakeConfigOptions"></a>
|
|
135
|
+
<hr width="65%" align="right">
|
|
136
|
+
<h3>Configuration Options</h3>
|
|
137
|
+
The configuration process is critical to the proper compilation,
|
|
138
|
+
installation, and operation of the
|
|
139
|
+
software. The <tt>CMakeLists.txt</tt> script runs a series of tests to
|
|
140
|
+
decide whether or not the target system supports required
|
|
141
|
+
functionality and, if it does not, whether it can emulate or
|
|
142
|
+
workaround the missing functions. After running <tt>cmake</tt>, check
|
|
143
|
+
the <tt>CMakeCache.txt</tt> file; this contains all the results of the
|
|
144
|
+
checks performed and the options set by the user. If <tt>cmake</tt>
|
|
145
|
+
failed to run, check <tt>CMakeFiles/CMakeOutput.log</tt>
|
|
146
|
+
and <tt>CMakeFiles/CMakeError.log</tt>; these should record the error
|
|
147
|
+
which caused the failure.
|
|
148
|
+
<p>A second function of the configure script is to set the default
|
|
149
|
+
configuration parameters for the software. Of particular note are the
|
|
150
|
+
directories where the software is to be installed. By default the
|
|
151
|
+
software is installed in the <b>/usr/local</b> hierarchy. To change
|
|
152
|
+
this behaviour the appropriate parameters can be specified on the
|
|
153
|
+
command line. Run <b>cmake --help</b> to get a full list of possible
|
|
154
|
+
options, and <b>cmake -LH</b> to list all the configurable options for
|
|
155
|
+
this software package, or <b>cmake -LAH</b> to show all advanced
|
|
156
|
+
options in addition. Standard installation related options are shown
|
|
157
|
+
below.</p>
|
|
158
|
+
<pre>
|
|
159
|
+
<tt>
|
|
160
|
+
Installation directories:
|
|
161
|
+
CMAKE_INSTALL_PREFIX
|
|
162
|
+
|
|
163
|
+
Fine tuning of the installation directories:
|
|
164
|
+
CMAKE_INSTALL_BINDIR user executables [PREFIX/bin]
|
|
165
|
+
CMAKE_INSTALL_SBINDIR system admin executables [PREFIX/sbin]
|
|
166
|
+
CMAKE_INSTALL_LIBEXECDIR program executables [PREFIX/libexec]
|
|
167
|
+
CMAKE_INSTALL_SYSCONFDIR read-only single-machine data [PREFIX/etc]
|
|
168
|
+
CMAKE_INSTALL_SHAREDSTATEDIR modifiable architecture-independent data [PREFIX/com]
|
|
169
|
+
CMAKE_INSTALL_LOCALSTATEDIR modifiable single-machine data [PREFIX/var]
|
|
170
|
+
CMAKE_INSTALL_LIBDIR object code libraries [PREFIX/lib]
|
|
171
|
+
CMAKE_INSTALL_INCLUDEDIR C header files [PREFIX/include]
|
|
172
|
+
CMAKE_INSTALL_OLDINCLUDEDIR C header files for non-gcc [/usr/include]
|
|
173
|
+
CMAKE_INSTALL_DATAROOTDIR read-only arch.-independent data root [PREFIX/share]
|
|
174
|
+
CMAKE_INSTALL_DATADIR read-only architecture-independent data [DATAROOTDIR]
|
|
175
|
+
CMAKE_INSTALL_LOCALEDIR locale-dependent data [DATAROOTDIR/locale]
|
|
176
|
+
CMAKE_INSTALL_MANDIR man documentation [DATAROOTDIR/man]
|
|
177
|
+
CMAKE_INSTALL_DOCDIR documentation root [DATAROOTDIR/doc/tiff]
|
|
178
|
+
</tt>
|
|
179
|
+
</pre>
|
|
180
|
+
Also see the
|
|
181
|
+
CMake <a href="http://www.cmake.org/cmake/help/v3.3/">documentation</a>
|
|
182
|
+
for <a href="http://www.cmake.org/cmake/help/v3.3/manual/cmake-variables.7.html"
|
|
183
|
+
>additional variables</a> which may be set.
|
|
184
|
+
<a name="CMakePackages" id="CMakePackages"></a>
|
|
185
|
+
<hr width="65%" align="right">
|
|
186
|
+
<h3>Configuring Optional Packages/Support</h3>
|
|
187
|
+
The TIFF software comes with several packages that are installed
|
|
188
|
+
only as needed, or only if specifically configured at the time the
|
|
189
|
+
configure script is run. Packages can be configured via the
|
|
190
|
+
<b>cmake</b> commandline parameters.
|
|
191
|
+
<dl>
|
|
192
|
+
<dt><i>Static/Shared Objects Support</i></dt>
|
|
193
|
+
<dd><tt>BUILD_SHARED_LIBS[=ON|OFF] build shared
|
|
194
|
+
libraries [default=ON]</tt><br>
|
|
195
|
+
<p>This option controls whether or not to configure the software
|
|
196
|
+
to build a shared and static binaries for the TIFF library. Use of
|
|
197
|
+
shared libraries can significantly reduce the disk space needed for
|
|
198
|
+
users of the TIFF software. If shared libraries are not used then
|
|
199
|
+
the code is statically linked into each application that uses it.
|
|
200
|
+
</p>
|
|
201
|
+
<p><tt>ld-version-script[=ON|OFF] Enable linker version
|
|
202
|
+
script (default is ON)</tt></p>
|
|
203
|
+
<p>Add shared library symbol versioning on ELF-based systems (e.g.
|
|
204
|
+
Linux and FreeBSD) which use the GNU linker. This is needed if
|
|
205
|
+
several major versions of libtiff might be loaded at once into the
|
|
206
|
+
same program.</p>
|
|
207
|
+
</dd>
|
|
208
|
+
<dt><i>JPEG Support</i></dt>
|
|
209
|
+
<dd><tt>jpeg[=ON|OFF] enable IJG JPEG
|
|
210
|
+
library usage (required for JPEG compression, enabled by default)<br>
|
|
211
|
+
JPEG_INCLUDE_DIR=DIR location of IJG
|
|
212
|
+
JPEG library headers<br>
|
|
213
|
+
JPEG_LIBRARY=DIR location of IJG JPEG
|
|
214
|
+
library binary)</tt></dd>
|
|
215
|
+
<dd>The <tt>JPEG</tt> package enables support for the handling of
|
|
216
|
+
TIFF images with JPEG-encoded data. Support for JPEG-encoded data
|
|
217
|
+
requires the Independent JPEG Group (IJG) <tt>libjpeg</tt>
|
|
218
|
+
distribution; this software is available at <a href=
|
|
219
|
+
"http://www.ijg.org/">http://www.ijg.org/</a>. <b>cmake</b>
|
|
220
|
+
script automatically tries to search for a working IJG JPEG
|
|
221
|
+
installation. If it fails to find library, JPEG support will be
|
|
222
|
+
automatically disabled. If you want specify the exact paths to
|
|
223
|
+
library binary and headers, use above options for that.</dd>
|
|
224
|
+
<dt><i>ZIP Support</i></dt>
|
|
225
|
+
<dd>The <tt>ZIP</tt> support enables support for the handling of TIFF
|
|
226
|
+
images with deflate-encoded data (enabled by default if
|
|
227
|
+
available). Support for deflate-encoded data requires the freely
|
|
228
|
+
available <tt>zlib</tt> distribution written by Jean-loup Gailly and
|
|
229
|
+
Mark Adler; this software is available at <a href=
|
|
230
|
+
"http://www.zlib.org/">http://www.zlib.org/</a>.</dd>
|
|
231
|
+
</dl>
|
|
232
|
+
<a name="Sample" id="Sample"></a>
|
|
233
|
+
<hr width="65%" align="right">
|
|
234
|
+
<a name="UNIX" id="UNIX"></a>
|
|
235
|
+
<h2>Building on a UNIX System with Autoconf</h2>
|
|
236
|
+
To build the software on a UNIX system you need to first run the
|
|
237
|
+
configure shell script that is located in the top level of the
|
|
238
|
+
source directory. This script probes the target system for
|
|
239
|
+
necessary tools and functions and constructs a build environment in
|
|
240
|
+
which the software may be compiled. Once configuration is done, you
|
|
241
|
+
simply run <tt>make</tt> (or <tt>gmake</tt>) to build the software
|
|
242
|
+
and then <tt>make install</tt> to do the installation; for example:
|
|
243
|
+
<div style="margin-left: 2em">
|
|
244
|
+
<pre>
|
|
245
|
+
% <b>cd ./tiff-4.0.5</b>
|
|
246
|
+
% <b>./configure</b>
|
|
247
|
+
<i>...lots of messages...</i>
|
|
248
|
+
% <b>make</b>
|
|
249
|
+
<i>...lots of messages...</i>
|
|
250
|
+
% <b>make check</b>
|
|
251
|
+
<i>...lots of messages...</i>
|
|
252
|
+
# <b>make install</b>
|
|
253
|
+
</pre></div>
|
|
254
|
+
Supplied makefiles are dependent on a <tt>make</tt> utility and a C
|
|
255
|
+
(and optionally a C++ compiler), so you will need these tools.
|
|
256
|
+
<p>In general, the software is designed such that the following
|
|
257
|
+
should be ``<i>make-able</i>'' in each directory:</p>
|
|
258
|
+
<div style="margin-left: 2em">
|
|
259
|
+
<pre>
|
|
260
|
+
make [all] build stuff
|
|
261
|
+
make check run the test suite
|
|
262
|
+
make install build and install stuff
|
|
263
|
+
make clean remove object files, executables and cruft
|
|
264
|
+
make distclean remove everything, that can be recreated
|
|
265
|
+
</pre></div>
|
|
266
|
+
Note that after running "<tt>make distclean</tt>" the
|
|
267
|
+
<tt>configure</tt> script must be run again to create the Makefiles
|
|
268
|
+
and other make-related files. <a name="BuildTrees" id=
|
|
269
|
+
"BuildTrees"></a>
|
|
270
|
+
<hr width="65%" align="right">
|
|
271
|
+
<h3>Build Trees</h3>
|
|
272
|
+
There are two schemes for configuring and building the software. If
|
|
273
|
+
you intend to build the software for only one target system, you
|
|
274
|
+
can configure the software so that it is built in the same
|
|
275
|
+
directories as the source code.
|
|
276
|
+
<div style="margin-left: 2em">
|
|
277
|
+
<pre>
|
|
278
|
+
% <b>gzip -dc tiff-4.0.5.tar.gz | tar -xf -</b>
|
|
279
|
+
% <b>cd ./tiff-4.0.5</b>
|
|
280
|
+
% <b>./configure</b>
|
|
281
|
+
% <b>make</b>
|
|
282
|
+
% <b>make check</b>
|
|
283
|
+
% <b>make install</b>
|
|
284
|
+
</pre></div>
|
|
285
|
+
<p>Otherwise, you can configure a build tree that is parallel to
|
|
286
|
+
the source tree hierarchy (or in some completely different place)
|
|
287
|
+
but which contains only configured files and files created during
|
|
288
|
+
the build procedure.</p>
|
|
289
|
+
<div style="margin-left: 2em">
|
|
290
|
+
<pre>
|
|
291
|
+
% <b>gzip -dc tiff-4.0.5.tar.gz | tar -xf -</b>
|
|
292
|
+
% <b>mkdir tiff-4.0.5-build</b>
|
|
293
|
+
% <b>cd ./tiff-4.0.5-build</b>
|
|
294
|
+
% <b>../tiff-4.0.5/configure</b>
|
|
295
|
+
% <b>make</b>
|
|
296
|
+
% <b>make check</b>
|
|
297
|
+
% <b>make install</b>
|
|
298
|
+
</pre></div>
|
|
299
|
+
This second scheme is useful for:
|
|
300
|
+
<ul>
|
|
301
|
+
<li>building multiple targets from a single source tree</li>
|
|
302
|
+
<li>building from a read-only source tree (e.g. if you receive the
|
|
303
|
+
distribution on CD-ROM)</li>
|
|
304
|
+
<li>sharing the source files via a network, but building on
|
|
305
|
+
multiple systems</li>
|
|
306
|
+
</ul>
|
|
307
|
+
<a name="ConfigOptions" id="ConfigOptions"></a>
|
|
308
|
+
<hr width="65%" align="right">
|
|
309
|
+
<h3>Configuration Options</h3>
|
|
310
|
+
The configuration process is critical to the proper compilation,
|
|
311
|
+
installation, and operation of the software. The configure script
|
|
312
|
+
runs a series of tests to decide whether or not the target system
|
|
313
|
+
supports required functionality and, if it does not, whether it can
|
|
314
|
+
emulate or workaround the missing functions. This procedure is
|
|
315
|
+
fairly complicated and, due to the nonstandard nature of most UNIX
|
|
316
|
+
systems, prone to error. The first time that you configure the
|
|
317
|
+
software for use you should check the output from the configure
|
|
318
|
+
script and look for anything that does not make sense for your
|
|
319
|
+
system.
|
|
320
|
+
<p>A second function of the configure script is to set the default
|
|
321
|
+
configuration parameters for the software. Of particular note are
|
|
322
|
+
the directories where the software is to be installed. By default
|
|
323
|
+
the software is installed in the <b>/usr/local</b> hierarchy. To
|
|
324
|
+
change this behaviour the appropriate parameters can be specified
|
|
325
|
+
on the command line to configure. Run <b>./configure --help</b> to
|
|
326
|
+
get a full list of possible options. Standard installation related
|
|
327
|
+
options are shown below.</p>
|
|
328
|
+
<pre>
|
|
329
|
+
<tt>
|
|
330
|
+
Installation directories:
|
|
331
|
+
--prefix=PREFIX install architecture-independent files in PREFIX
|
|
332
|
+
[/usr/local]
|
|
333
|
+
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
|
334
|
+
[PREFIX]
|
|
335
|
+
|
|
336
|
+
By default, `make install' will install all the files in
|
|
337
|
+
`/usr/local/bin', `/usr/local/lib' etc. You can specify
|
|
338
|
+
an installation prefix other than `/usr/local' using `--prefix',
|
|
339
|
+
for instance `--prefix=$HOME'.
|
|
340
|
+
|
|
341
|
+
For better control, use the options below.
|
|
342
|
+
|
|
343
|
+
Fine tuning of the installation directories:
|
|
344
|
+
--bindir=DIR user executables [EPREFIX/bin]
|
|
345
|
+
--sbindir=DIR system admin executables [EPREFIX/sbin]
|
|
346
|
+
--libexecdir=DIR program executables [EPREFIX/libexec]
|
|
347
|
+
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
|
348
|
+
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
|
349
|
+
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
|
350
|
+
--libdir=DIR object code libraries [EPREFIX/lib]
|
|
351
|
+
--includedir=DIR C header files [PREFIX/include]
|
|
352
|
+
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
|
353
|
+
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
|
|
354
|
+
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
|
|
355
|
+
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
|
356
|
+
--mandir=DIR man documentation [DATAROOTDIR/man]
|
|
357
|
+
--docdir=DIR documentation root [DATAROOTDIR/doc/tiff]
|
|
358
|
+
--htmldir=DIR html documentation [DOCDIR]
|
|
359
|
+
|
|
360
|
+
Program names:
|
|
361
|
+
--program-prefix=PREFIX prepend PREFIX to installed program names
|
|
362
|
+
--program-suffix=SUFFIX append SUFFIX to installed program names
|
|
363
|
+
--program-transform-name=PROGRAM run sed PROGRAM on installed program names
|
|
364
|
+
</tt>
|
|
365
|
+
</pre>
|
|
366
|
+
<a name="Packages" id="Packages"></a>
|
|
367
|
+
<hr width="65%" align="right">
|
|
368
|
+
<h3>Configuring Optional Packages/Support</h3>
|
|
369
|
+
The TIFF software comes with several packages that are installed
|
|
370
|
+
only as needed, or only if specifically configured at the time the
|
|
371
|
+
configure script is run. Packages can be configured via the
|
|
372
|
+
<b>configure</b> script commandline parameters.
|
|
373
|
+
<dl>
|
|
374
|
+
<dt><i>Static/Shared Objects Support</i></dt>
|
|
375
|
+
<dd><tt>--enable-shared[=PKGS] build shared
|
|
376
|
+
libraries [default=yes]<br>
|
|
377
|
+
--enable-static[=PKGS] build static
|
|
378
|
+
libraries [default=yes]</tt>
|
|
379
|
+
<p>These options control whether or not to configure the software
|
|
380
|
+
to build a shared and static binaries for the TIFF library. Use of
|
|
381
|
+
shared libraries can significantly reduce the disk space needed for
|
|
382
|
+
users of the TIFF software. If shared libraries are not used then
|
|
383
|
+
the code is statically linked into each application that uses it.
|
|
384
|
+
By default both types of binaries is configured.</p>
|
|
385
|
+
<p>
|
|
386
|
+
<tt>--enable-rpath Enable
|
|
387
|
+
runtime linker paths (-R libtool option)</tt></p>
|
|
388
|
+
<p>Add library directories (see other options below) to the TIFF
|
|
389
|
+
library run-time linker path.</p>
|
|
390
|
+
<p><tt>--enable-ld-version-script Enable linker version
|
|
391
|
+
script (default is disabled)</tt></p>
|
|
392
|
+
<p>Add shared library symbol versioning on ELF-based systems (e.g.
|
|
393
|
+
Linux and FreeBSD) which use the GNU linker. This is needed if
|
|
394
|
+
several major versions of libtiff might be loaded at once into the
|
|
395
|
+
same program.</p>
|
|
396
|
+
</dd>
|
|
397
|
+
<dt><i>JPEG Support</i></dt>
|
|
398
|
+
<dd><tt>--disable-jpeg disable IJG JPEG
|
|
399
|
+
library usage (required for JPEG compression, enabled by default)
|
|
400
|
+
--with-jpeg-include-dir=DIR location of IJG
|
|
401
|
+
JPEG library headers
|
|
402
|
+
--with-jpeg-lib-dir=DIR location of IJG JPEG
|
|
403
|
+
library binary)</tt></dd>
|
|
404
|
+
<dd>The <tt>JPEG</tt> package enables support for the handling of
|
|
405
|
+
TIFF images with JPEG-encoded data. Support for JPEG-encoded data
|
|
406
|
+
requires the Independent JPEG Group (IJG) <tt>libjpeg</tt>
|
|
407
|
+
distribution; this software is available at <a href=
|
|
408
|
+
"http://www.ijg.org/">http://www.ijg.org/</a>. <b>configure</b>
|
|
409
|
+
script automatically tries to search for a working IJG JPEG
|
|
410
|
+
installation. If it fails to find library, JPEG support will be
|
|
411
|
+
automatically disabled. If you want specify the exact paths to
|
|
412
|
+
library binary and headers, use above switches for that.</dd>
|
|
413
|
+
<dt><i>ZIP Support</i></dt>
|
|
414
|
+
<dd>The <tt>ZIP</tt> support enables support for the handling of
|
|
415
|
+
TIFF images with deflate-encoded data. Support for deflate-encoded
|
|
416
|
+
data requires the freely available <tt>zlib</tt> distribution
|
|
417
|
+
written by Jean-loup Gailly and Mark Adler; this software is
|
|
418
|
+
available at <a href=
|
|
419
|
+
"http://www.zlib.org/">http://www.zlib.org/</a>. If ZIP support is
|
|
420
|
+
enabled the <tt>DIRS_LIBINC</tt> and <tt>DIR_GZLIB</tt> parameters
|
|
421
|
+
should also be set (see below). By default this package is not
|
|
422
|
+
configured.</dd>
|
|
423
|
+
</dl>
|
|
424
|
+
<a name="Sample" id="Sample"></a>
|
|
425
|
+
<hr width="65%" align="right">
|
|
426
|
+
<a name="PC" id="PC"></a>
|
|
427
|
+
<h2>Building the Software under Windows 2000/XP/7/8/10 with nmake</h2>
|
|
428
|
+
With Microsoft Visual C++ installed, and properly configured for
|
|
429
|
+
commandline use (you will likely need to source VCVARS32.BAT in
|
|
430
|
+
AUTOEXEC.bAT or somewhere similar) you should be able to use the
|
|
431
|
+
provided <tt>makefile.vc</tt>.
|
|
432
|
+
<p>The source package is delivered using Unix line termination
|
|
433
|
+
conventions, which work with MSVC but do not work with Windows
|
|
434
|
+
'notepad'. If you use unzip from the <a href=
|
|
435
|
+
"http://www.info-zip.org/pub/infozip/">Info-Zip</a> package, you
|
|
436
|
+
can extract the files using Windows normal line termination
|
|
437
|
+
conventions with a command similar to:</p>
|
|
438
|
+
<pre>
|
|
439
|
+
unzip -aa -a tiff-4.0.5.zip
|
|
440
|
+
</pre>
|
|
441
|
+
<p>By default the nmake-based libtiff build does not depend on any
|
|
442
|
+
additional libraries. Normally libtiff should be built with at least
|
|
443
|
+
JPEG and ZIP support so that it can open JPEG and ZIP-compressed TIFF
|
|
444
|
+
files. In order to add additional libraries (e.g. libjpeg, zlib,
|
|
445
|
+
jbigkit), build those libraries according to their own particular
|
|
446
|
+
build instructions, and then edit 'nmake.opt' (using a capable
|
|
447
|
+
plain-text editor) to enable use of the libraries, including
|
|
448
|
+
specifying where the libraries are installed. It is also necessary to
|
|
449
|
+
edit libtiff/tiffconf.vc.h to enable the related configuration defines
|
|
450
|
+
(<em>JPEG_SUPPORT</em>, <em>OJPEG_SUPPORT</em>, <em>PIXARLOG_SUPPORT</em>,
|
|
451
|
+
<em>ZIP_SUPPORT</em>), or to disable features which are normally
|
|
452
|
+
included by default. Ignore the comment at the top of the
|
|
453
|
+
libtiff/tiffconf.vc.h file which says that it has no influence on the
|
|
454
|
+
build, because the statement is not true for Windows. Please note that
|
|
455
|
+
the nmake build copies tiffconf.vc.h to tiffconf.h, and copies
|
|
456
|
+
tif_config.vc.h to tif_config.h, overwriting any files which may be
|
|
457
|
+
present. Likewise, the 'nmake clean' step removes those files.</p>
|
|
458
|
+
<p>To build using the provided makefile.vc you may use:</p>
|
|
459
|
+
<pre>
|
|
460
|
+
C:\tiff-4.0.5> nmake /f makefile.vc clean
|
|
461
|
+
C:\tiff-4.0.5> nmake /f makefile.vc
|
|
462
|
+
|
|
463
|
+
or (the hard way)
|
|
464
|
+
|
|
465
|
+
C:\tiff-4.0.5> cd port
|
|
466
|
+
C:\tiff-4.0.5\port> nmake /f makefile.vc clean
|
|
467
|
+
C:\tiff-4.0.5\port> nmake /f makefile.vc
|
|
468
|
+
C:\tiff-4.0.5> cd ../libtiff
|
|
469
|
+
C:\tiff-4.0.5\libtiff> nmake /f makefile.vc clean
|
|
470
|
+
C:\tiff-4.0.5\libtiff> nmake /f makefile.vc
|
|
471
|
+
C:\tiff-4.0.5\libtiff> cd ..\tools
|
|
472
|
+
C:\tiff-4.0.5\tools> nmake /f makefile.vc clean
|
|
473
|
+
C:\tiff-4.0.5\tools> nmake /f makefile.vc
|
|
474
|
+
</pre>
|
|
475
|
+
<p>This will build the library
|
|
476
|
+
file <tt>libtiff\libtiff\libtiff.lib</tt>.</p>
|
|
477
|
+
<p>The makefile also builds a DLL (libtiff.dll) with an associated
|
|
478
|
+
import library (libtiff_i.lib). Any builds using libtiff will need to
|
|
479
|
+
include the LIBTIFF\LIBTIFF directory in the include path.</p>
|
|
480
|
+
<p>The <tt>libtiff\tools\makefile.vc</tt> should build .exe's for
|
|
481
|
+
all the standard TIFF tool programs.</p>
|
|
482
|
+
<hr>
|
|
483
|
+
<a name="VMS" id="VMS"></a>
|
|
484
|
+
<h2>Building the Software on a VMS System</h2>
|
|
485
|
+
The VMS port was done by Karsten Spang (<a href=
|
|
486
|
+
"mailto:krs@kampsax.dk">krs@kampsax.dk</a>), who also "sort of"
|
|
487
|
+
maintains it. The VMS specific files are not in the main
|
|
488
|
+
directories. Instead they are placed under
|
|
489
|
+
<tt>[.CONTRIB.VMS...]</tt> in the distribution tree. Installation:
|
|
490
|
+
It is assumed that you have unpacked the tar file into a VMS
|
|
491
|
+
directory tree, in this text called DISK:[TIFF].
|
|
492
|
+
<ol>
|
|
493
|
+
<li>Move the VMS specific files to their proper directories.
|
|
494
|
+
<pre>
|
|
495
|
+
$ SET DEFAULT DISK:[TIFF.CONTRIB.VMS]
|
|
496
|
+
$ RENAME [.LIBTIFF]*.* [-.-.LIBTIFF]
|
|
497
|
+
$ RENAME [.TOOLS]*.* [-.-.TOOLS]
|
|
498
|
+
</pre></li>
|
|
499
|
+
<li>Compile the library.
|
|
500
|
+
<pre>
|
|
501
|
+
$ SET DEFAULT DISK:[TIFF.LIBTIFF]
|
|
502
|
+
$ @MAKEVMS
|
|
503
|
+
</pre></li>
|
|
504
|
+
<li>Compile the tools.
|
|
505
|
+
<pre>
|
|
506
|
+
$ SET DEFAULT DISK:[TIFF.TOOLS]
|
|
507
|
+
$ @MAKEVMS
|
|
508
|
+
</pre></li>
|
|
509
|
+
<li>Define the programs.
|
|
510
|
+
<pre>
|
|
511
|
+
$ DEFINE TIFFSHR DISK:[TIFF.LIBTIFF]TIFFSHR
|
|
512
|
+
$ FAX2PS :==$DISK:[TIFF.TOOLS]FAX2PS
|
|
513
|
+
$ FAX2TIFF :==$DISK:[TIFF.TOOLS]FAX2TIFF
|
|
514
|
+
$ GIF2TIFF :==$DISK:[TIFF.TOOLS]GIF2TIFF
|
|
515
|
+
$ PAL2RGB :==$DISK:[TIFF.TOOLS]PAL2RGB
|
|
516
|
+
$ PPM2TIFF :==$DISK:[TIFF.TOOLS]PPM2TIFF
|
|
517
|
+
$ RAS2TIFF :==$DISK:[TIFF.TOOLS]RAS2TIFF
|
|
518
|
+
$ RGB2YCBCR :==$DISK:[TIFF.TOOLS]RGB2YCBCR
|
|
519
|
+
$ THUMBNAIL :==$DISK:[TIFF.TOOLS]THUMBNAIL
|
|
520
|
+
$ TIFF2BW :==$DISK:[TIFF.TOOLS]TIFF2BW
|
|
521
|
+
$ TIFF2PS :==$DISK:[TIFF.TOOLS]TIFF2PS
|
|
522
|
+
$ TIFFCMP :==$DISK:[TIFF.TOOLS]TIFFCMP
|
|
523
|
+
$ TIFFCP :==$DISK:[TIFF.TOOLS]TIFFCP
|
|
524
|
+
$ TIFFDITHER:==$DISK:[TIFF.TOOLS]TIFFDITHER
|
|
525
|
+
$ TIFFDUMP :==$DISK:[TIFF.TOOLS]TIFFDUMP
|
|
526
|
+
$ TIFFINFO :==$DISK:[TIFF.TOOLS]TIFFINFO
|
|
527
|
+
$ TIFFMEDIAN:==$DISK:[TIFF.TOOLS]TIFFMEDIAN
|
|
528
|
+
$ TIFFSPLIT :==$DISK:[TIFF.TOOLS]TIFFSPLIT
|
|
529
|
+
$ YCBCR :==$DISK:[TIFF.TOOLS]YCBCR
|
|
530
|
+
</pre></li>
|
|
531
|
+
</ol>
|
|
532
|
+
You will want to add these lines to your <tt>LOGIN.COM</tt> file,
|
|
533
|
+
after changing the name of the directory that you have used on your
|
|
534
|
+
machine.
|
|
535
|
+
<p>This release has been tested on OpenVMS/VAX 5.5-2, using VAX C
|
|
536
|
+
3.2. A previous release was tested under OpenVMS/AXP ?.? using DEC
|
|
537
|
+
C ?.?, it is believed that this release as well works on AXP. The
|
|
538
|
+
code contains some GNU C specific things. This does *not* imply,
|
|
539
|
+
however, that the VAX/GCC configuration has been tested, *it has
|
|
540
|
+
not*.</p>
|
|
541
|
+
<p>The command procedures (<tt>MAKEVMS.COM</tt>) for building the
|
|
542
|
+
library and tools, is believed to choose the correct options for
|
|
543
|
+
the VAX and AXP cases automatically.</p>
|
|
544
|
+
<p>On the AXP, IEEE floating point is used by default. If you want
|
|
545
|
+
VAX floating point, remove the <tt>/FLOAT=IEEE_FLOAT</tt>
|
|
546
|
+
qualifier, and change <tt>HAVE_IEEEFP=1</tt> to
|
|
547
|
+
<tt>HAVE_IEEEFP=0</tt> in the <tt>MAKEVMS.COM</tt> files in both
|
|
548
|
+
the <b>libtiff</b> and <b>tools</b> directories.</p>
|
|
549
|
+
<h3>Compiling your own program on a VMS system:</h3>
|
|
550
|
+
When compiling a source file in which you <tt>"#include
|
|
551
|
+
<tiffio.h>"</tt>, use the following command
|
|
552
|
+
<pre>
|
|
553
|
+
$ CC/INCLUDE=DISK:[TIFF.LIBTIFF]
|
|
554
|
+
</pre>
|
|
555
|
+
This ensures that the header file is found. On the AXP, also add
|
|
556
|
+
<tt>/FLOAT=IEEE_FLOAT</tt> (if used when building the library).
|
|
557
|
+
<h3>Linking your own program to the TIFF library on a VMS
|
|
558
|
+
system:</h3>
|
|
559
|
+
You can link to the library in two ways: Either using the shareable
|
|
560
|
+
library, or using the object library. On the VAX these
|
|
561
|
+
possibilities are:
|
|
562
|
+
<ol>
|
|
563
|
+
<li>Using the shareable TIFF library.
|
|
564
|
+
<pre>
|
|
565
|
+
$ LINK MY_PROGRAM,DISK:[TIFF.LIBTIFF]TIFF/OPTIONS,SYS$INPUT:/OPTIONS
|
|
566
|
+
SYS$SHARE:VAXCRTL/SHAREABLE
|
|
567
|
+
</pre></li>
|
|
568
|
+
<li>Using the TIFF object library.
|
|
569
|
+
<pre>
|
|
570
|
+
$ LINK MY_PROGRAM, -
|
|
571
|
+
DISK:[TIFF.LIBTIFF]TIFF/LIBRARY/INCLUDE=(TIF_FAX3SM,TIF_CODEC), -
|
|
572
|
+
SYS$INPUT:/OPTIONS
|
|
573
|
+
SYS$SHARE:VAXCRTL/SHAREABLE
|
|
574
|
+
</pre></li>
|
|
575
|
+
</ol>
|
|
576
|
+
On AXP (and possibly also using DEC C on VAX) the corresponding
|
|
577
|
+
commands are
|
|
578
|
+
<ol>
|
|
579
|
+
<li>Using the shareable TIFF library.
|
|
580
|
+
<pre>
|
|
581
|
+
$ LINK MY_PROGRAM,DISK:[TIFF.LIBTIFF]TIFF/OPTIONS
|
|
582
|
+
</pre></li>
|
|
583
|
+
<li>Using the TIFF object library.
|
|
584
|
+
<pre>
|
|
585
|
+
$ LINK MY_PROGRAM,DISK:[TIFF.LIBTIFF]TIFF/LIBRARY
|
|
586
|
+
</pre></li>
|
|
587
|
+
</ol>
|
|
588
|
+
Method 1 uses the shortest link time and smallest <tt>.EXE</tt>
|
|
589
|
+
files, but it requires that <tt>TIFFSHR</tt> is defined as above at
|
|
590
|
+
link time and <strong>at run time</strong>. Using the compilation
|
|
591
|
+
procedure above, the tools are linked in this way.
|
|
592
|
+
<p>Method 2 gives somewhat longer link time and larger
|
|
593
|
+
<tt>.EXE</tt> files, but does not require <tt>TIFFSHR</tt> to be
|
|
594
|
+
defined. This method is recommended if you want to run your program
|
|
595
|
+
on another machine, and for some reason don't want to have the
|
|
596
|
+
library on that machine. If you plan to have more than one program
|
|
597
|
+
(including the tools) on the machine, it is recommended that you
|
|
598
|
+
copy the library to the other machine and use method 1.</p>
|
|
599
|
+
<hr>
|
|
600
|
+
<a name="Other" id="Other"></a>
|
|
601
|
+
<h2>Building the Software on Other Systems</h2>
|
|
602
|
+
This section contains information that might be useful if you are
|
|
603
|
+
working on a non-UNIX system that is not directly supported. All
|
|
604
|
+
library-related files described below are located in the
|
|
605
|
+
<b>libtiff</b> directory.
|
|
606
|
+
<p>The library requires two files that are generated
|
|
607
|
+
<i>on-the-fly</i>. The file <b>tif_fax3sm.c</b> has the state
|
|
608
|
+
tables for the Group 3 and Group 4 decoders. This file is generated
|
|
609
|
+
by the <tt>mkg3states</tt> program on a UNIX system; for
|
|
610
|
+
example,</p>
|
|
611
|
+
<div style="margin-left: 2em">
|
|
612
|
+
<pre>
|
|
613
|
+
<tt>
|
|
614
|
+
cd libtiff
|
|
615
|
+
cc -o mkg3states mkg3states.c
|
|
616
|
+
rm -f tif_fax3sm.c
|
|
617
|
+
./mkg3states -c const tif_fax3sm.c
|
|
618
|
+
</tt>
|
|
619
|
+
</pre></div>
|
|
620
|
+
The <tt>-c</tt> option can be used to control whether or not the
|
|
621
|
+
resutling tables are generated with a <tt>const</tt> declaration.
|
|
622
|
+
The <tt>-s</tt> option can be used to specify a C storage class for
|
|
623
|
+
the table declarations. The <tt>-b</tt> option can be used to force
|
|
624
|
+
data values to be explicitly bracketed with ``{}'' (apparently
|
|
625
|
+
needed for some MS-Windows compilers); otherwise the structures are
|
|
626
|
+
emitted in as compact a format as possible. Consult the source code
|
|
627
|
+
for this program if you have questions.
|
|
628
|
+
<p>The second file required to build the library, <b>version.h</b>,
|
|
629
|
+
contains the version information returned by the
|
|
630
|
+
<tt>TIFFGetVersion</tt> routine. This file is built on most systems
|
|
631
|
+
using the <tt>mkversion</tt> program and the contents of the
|
|
632
|
+
<tt>VERSION</tt> and <tt>tiff.alpha</tt> files; for example,</p>
|
|
633
|
+
<div style="margin-left: 2em">
|
|
634
|
+
<pre>
|
|
635
|
+
cd libtiff
|
|
636
|
+
cc -o mkversion mkversion.c
|
|
637
|
+
rm -f version.h
|
|
638
|
+
./mkversion -v ../VERSION -a ../dist/tiff.alpha version.h
|
|
639
|
+
</pre></div>
|
|
640
|
+
<p>Otherwise, when building the library on a non-UNIX system be
|
|
641
|
+
sure to consult the files <b>tiffcomp.h</b> and <b>tiffconf.h</b>.
|
|
642
|
+
The former contains system compatibility definitions while the
|
|
643
|
+
latter is provided so that the software configuration can be
|
|
644
|
+
controlled on systems that do not support the make facility for
|
|
645
|
+
building the software.</p>
|
|
646
|
+
<p>Systems without a 32-bit compiler may not be able to handle some
|
|
647
|
+
of the codecs in the library; especially the Group 3 and 4 decoder.
|
|
648
|
+
If you encounter problems try disabling support for a particular
|
|
649
|
+
codec; consult the <a href=
|
|
650
|
+
"internals.html#Config">documentation</a>.</p>
|
|
651
|
+
<p>Programs in the tools directory are written to assume an ANSI C
|
|
652
|
+
compilation environment. There may be a few POSIX'isms as well. The
|
|
653
|
+
code in the <b>port</b> directory is provided to emulate routines
|
|
654
|
+
that may be missing on some systems. On UNIX systems the
|
|
655
|
+
<tt>configure</tt> script automatically figures out which routines
|
|
656
|
+
are not present on a system and enables the use of the equivalent
|
|
657
|
+
emulation routines from the <b>port</b> directory. It may be
|
|
658
|
+
necessary to manually do this work on a non-UNIX system. <a name=
|
|
659
|
+
"Testing" id="Testing"></a></p>
|
|
660
|
+
<hr>
|
|
661
|
+
<h2>Checking out the Software</h2>
|
|
662
|
+
<p>Assuming you have working versions of <tt>tiffgt</tt> and
|
|
663
|
+
<tt>tiffsv</tt>, you can just use them to view any of the sample
|
|
664
|
+
images available for testing (see the <a href="images.html">section
|
|
665
|
+
on obtaining the test images</a>). Otherwise, you can do a cursory
|
|
666
|
+
check of the library with the <tt>tiffcp</tt> and <tt>tiffcmp</tt>
|
|
667
|
+
programs. For example,</p>
|
|
668
|
+
<div style="margin-left: 2em">
|
|
669
|
+
<pre>
|
|
670
|
+
tiffcp -lzw cramps.tif x.tif
|
|
671
|
+
tiffcmp cramps.tif x.tif
|
|
672
|
+
</pre></div>
|
|
673
|
+
<p>(<tt>tiffcmp</tt> should be silent if the files compare
|
|
674
|
+
correctly). <a name="TOC" id="TOC"></a></p>
|
|
675
|
+
<hr>
|
|
676
|
+
<h2>Table of Contents</h2>
|
|
677
|
+
The following files makup the core library:
|
|
678
|
+
<pre>
|
|
679
|
+
libtiff/tiff.h TIFF spec definitions
|
|
680
|
+
libtiff/tiffcomp.h non-UNIX OS-compatibility definitions
|
|
681
|
+
libtiff/tiffconf.h non-UNIX configuration definitions
|
|
682
|
+
libtiff/tiffio.h public TIFF library definitions
|
|
683
|
+
libtiff/tiffiop.h private TIFF library definitions
|
|
684
|
+
libtiff/t4.h CCITT Group 3/4 code tables+definitions
|
|
685
|
+
libtiff/tif_dir.h private defs for TIFF directory handling
|
|
686
|
+
libtiff/tif_fax3.h CCITT Group 3/4-related definitions
|
|
687
|
+
libtiff/tif_predict.h private defs for Predictor tag support
|
|
688
|
+
libtiff/uvcode.h LogL/LogLuv codec-specific definitions
|
|
689
|
+
libtiff/version.h version string (generated by Makefile)
|
|
690
|
+
libtiff/tif_apple.c Apple-related OS support
|
|
691
|
+
libtiff/tif_atari.c Atari-related OS support
|
|
692
|
+
libtiff/tif_aux.c auxilary directory-related functions
|
|
693
|
+
libtiff/tif_close.c close an open TIFF file
|
|
694
|
+
libtiff/tif_codec.c configuration table of builtin codecs
|
|
695
|
+
libtiff/tif_compress.c compression scheme support
|
|
696
|
+
libtiff/tif_dir.c directory tag interface code
|
|
697
|
+
libtiff/tif_dirinfo.c directory known tag support code
|
|
698
|
+
libtiff/tif_dirread.c directory reading code
|
|
699
|
+
libtiff/tif_dirwrite.c directory writing code
|
|
700
|
+
libtiff/tif_dumpmode.c "no" compression codec
|
|
701
|
+
libtiff/tif_error.c library error handler
|
|
702
|
+
libtiff/tif_fax3.c CCITT Group 3 and 4 codec
|
|
703
|
+
libtiff/tif_fax3sm.c G3/G4 state tables (generated by mkg3states)
|
|
704
|
+
libtiff/tif_flush.c i/o and directory state flushing
|
|
705
|
+
libtiff/tif_getimage.c TIFFRGBAImage support
|
|
706
|
+
libtiff/tif_jpeg.c JPEG codec (interface to the IJG distribution)
|
|
707
|
+
libtiff/tif_luv.c SGI LogL/LogLuv codec
|
|
708
|
+
libtiff/tif_lzw.c LZW codec
|
|
709
|
+
libtiff/tif_msdos.c MSDOS-related OS support
|
|
710
|
+
libtiff/tif_next.c NeXT 2-bit scheme codec (decoding only)
|
|
711
|
+
libtiff/tif_open.c open and simply query code
|
|
712
|
+
libtiff/tif_packbits.c Packbits codec
|
|
713
|
+
libtiff/tif_pixarlog.c Pixar codec
|
|
714
|
+
libtiff/tif_predict.c Predictor tag support
|
|
715
|
+
libtiff/tif_print.c directory printing support
|
|
716
|
+
libtiff/tif_read.c image data reading support
|
|
717
|
+
libtiff/tif_strip.c some strip-related code
|
|
718
|
+
libtiff/tif_swab.c byte and bit swapping support
|
|
719
|
+
libtiff/tif_thunder.c Thunderscan codec (decoding only)
|
|
720
|
+
libtiff/tif_tile.c some tile-related code
|
|
721
|
+
libtiff/tif_unix.c UNIX-related OS support
|
|
722
|
+
libtiff/tif_version.c library version support
|
|
723
|
+
libtiff/tif_vms.c VMS-related OS support
|
|
724
|
+
libtiff/tif_warning.c library warning handler
|
|
725
|
+
libtiff/tif_win3.c Windows-3.1-related OS support
|
|
726
|
+
libtiff/tif_win32.c Win32 (95/98/NT) related OS support
|
|
727
|
+
libtiff/tif_write.c image data writing support
|
|
728
|
+
libtiff/tif_zip.c Deflate codec
|
|
729
|
+
|
|
730
|
+
libtiff/mkg3states.c program to generate G3/G4 decoder state tables
|
|
731
|
+
libtiff/mkspans.c program to generate black-white span tables
|
|
732
|
+
libtiff/mkversion.c program to generate libtiff/version.h.
|
|
733
|
+
</pre>
|
|
734
|
+
<hr>
|
|
735
|
+
Last updated: $Date: 2015-08-29 15:30:11 $
|
|
736
|
+
</body>
|
|
737
|
+
</html>
|