-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LibTIFF 4.6.0 - Adding maps from gitlab
- Loading branch information
Showing
7 changed files
with
621 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
# Tag Image File Format (TIFF) Software | ||
# | ||
# Copyright (C) 2004, Andrey Kiselev <[email protected]> | ||
# | ||
# Permission to use, copy, modify, distribute, and sell this software and | ||
# its documentation for any purpose is hereby granted without fee, provided | ||
# that (i) the above copyright notices and this permission notice appear in | ||
# all copies of the software and related documentation, and (ii) the names of | ||
# Sam Leffler and Silicon Graphics may not be used in any advertising or | ||
# publicity relating to the software without the specific, prior written | ||
# permission of Sam Leffler and Silicon Graphics. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, | ||
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY | ||
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | ||
# | ||
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR | ||
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, | ||
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, | ||
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF | ||
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE | ||
# OF THIS SOFTWARE. | ||
|
||
# Process this file with automake to produce Makefile.in. | ||
|
||
LIBPORT = $(top_builddir)/port/libport.la | ||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la | ||
libtiffincludedir = $(includedir) | ||
|
||
EXTRA_DIST = \ | ||
CMakeLists.txt \ | ||
libtiff.def \ | ||
libtiff.map \ | ||
libtiffxx.map \ | ||
tiffvers.h.cmake.in \ | ||
tif_config.h.cmake.in \ | ||
tiffconf.h.cmake.in \ | ||
tif_win32_versioninfo.rc | ||
|
||
libtiffinclude_HEADERS = \ | ||
tiff.h \ | ||
tiffio.h \ | ||
tiffvers.h | ||
|
||
if HAVE_CXX | ||
libtiffinclude_HEADERS += tiffio.hxx | ||
endif | ||
|
||
noinst_HEADERS = \ | ||
t4.h \ | ||
tif_dir.h \ | ||
tif_hash_set.h \ | ||
tif_predict.h \ | ||
tiffiop.h \ | ||
uvcode.h | ||
|
||
nodist_libtiffinclude_HEADERS = \ | ||
tiffconf.h | ||
|
||
libtiff_la_SOURCES = \ | ||
tif_aux.c \ | ||
tif_close.c \ | ||
tif_codec.c \ | ||
tif_color.c \ | ||
tif_compress.c \ | ||
tif_dir.c \ | ||
tif_dirinfo.c \ | ||
tif_dirread.c \ | ||
tif_dirwrite.c \ | ||
tif_dumpmode.c \ | ||
tif_error.c \ | ||
tif_extension.c \ | ||
tif_fax3.c \ | ||
tif_fax3sm.c \ | ||
tif_flush.c \ | ||
tif_getimage.c \ | ||
tif_hash_set.c \ | ||
tif_jbig.c \ | ||
tif_jpeg.c \ | ||
tif_jpeg_12.c \ | ||
tif_lerc.c \ | ||
tif_luv.c \ | ||
tif_lzma.c \ | ||
tif_lzw.c \ | ||
tif_next.c \ | ||
tif_ojpeg.c \ | ||
tif_open.c \ | ||
tif_packbits.c \ | ||
tif_pixarlog.c \ | ||
tif_predict.c \ | ||
tif_print.c \ | ||
tif_read.c \ | ||
tif_strip.c \ | ||
tif_swab.c \ | ||
tif_thunder.c \ | ||
tif_tile.c \ | ||
tif_version.c \ | ||
tif_warning.c \ | ||
tif_webp.c \ | ||
tif_write.c \ | ||
tif_zip.c \ | ||
tif_zstd.c | ||
|
||
libtiffxx_la_SOURCES = \ | ||
tif_stream.cxx | ||
|
||
if WIN32_IO | ||
EXTRA_DIST += tif_unix.c | ||
libtiff_la_SOURCES += tif_win32.c | ||
else | ||
EXTRA_DIST += tif_win32.c | ||
libtiff_la_SOURCES += tif_unix.c | ||
endif | ||
|
||
lib_LTLIBRARIES = libtiff.la | ||
if HAVE_CXX | ||
lib_LTLIBRARIES += libtiffxx.la | ||
endif | ||
|
||
libtiff_la_LDFLAGS = \ | ||
-no-undefined \ | ||
-version-info $(LIBTIFF_VERSION_INFO) | ||
if HAVE_RPATH | ||
libtiff_la_LDFLAGS += $(LIBDIR) | ||
endif | ||
if HAVE_LD_VERSION_SCRIPT | ||
libtiff_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libtiff.map | ||
endif | ||
|
||
libtiffxx_la_LDFLAGS = \ | ||
-no-undefined \ | ||
-version-info $(LIBTIFF_VERSION_INFO) | ||
if HAVE_RPATH | ||
libtiffxx_la_LDFLAGS += $(LIBDIR) | ||
endif | ||
if HAVE_LD_VERSION_SCRIPT | ||
libtiffxx_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libtiffxx.map | ||
endif | ||
libtiffxx_la_LIBADD = $(LIBTIFF) | ||
libtiffxx_la_DEPENDENCIES = libtiff.la | ||
|
||
# | ||
# The finite state machine tables used by the G3/G4 decoders | ||
# are generated by the mkg3states program. On systems without | ||
# make these rules have to be manually carried out. | ||
# | ||
noinst_PROGRAMS = mkg3states | ||
mkg3states_SOURCES = mkg3states.c tif_fax3.h | ||
mkg3states_LDADD = $(LIBPORT) | ||
|
||
faxtable: mkg3states | ||
(rm -f tif_fax3sm.c && ./mkg3states -b -c const tif_fax3sm.c) | ||
|
||
if STATIC_LERC | ||
extra_CPPFLAGS = -DLERC_STATIC | ||
else | ||
extra_CPPFLAGS = | ||
endif | ||
|
||
if HAVE_JPEGTURBO_DUAL_MODE_8_12 | ||
JPEGTURBO_CPPFLAGS = -DHAVE_JPEGTURBO_DUAL_MODE_8_12 | ||
else | ||
JPEGTURBO_CPPFLAGS = | ||
endif | ||
|
||
AM_CPPFLAGS = -I$(top_srcdir)/libtiff -I$(top_srcdir)/port $(extra_CPPFLAGS) $(JPEGTURBO_CPPFLAGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
EXPORTS TIFFAccessTagMethods | ||
TIFFCIELabToRGBInit | ||
TIFFCIELabToXYZ | ||
TIFFCheckTile | ||
TIFFCheckpointDirectory | ||
TIFFCleanup | ||
TIFFClientOpen | ||
TIFFClientOpenExt | ||
TIFFClientdata | ||
TIFFClose | ||
TIFFComputeStrip | ||
TIFFComputeTile | ||
TIFFCreateCustomDirectory | ||
TIFFCreateDirectory | ||
TIFFCreateEXIFDirectory | ||
TIFFCreateGPSDirectory | ||
TIFFCurrentDirOffset | ||
TIFFCurrentDirectory | ||
TIFFCurrentRow | ||
TIFFCurrentStrip | ||
TIFFCurrentTile | ||
TIFFDataWidth | ||
TIFFDefaultStripSize | ||
TIFFDefaultTileSize | ||
TIFFDeferStrileArrayWriting | ||
TIFFError | ||
TIFFErrorExt | ||
TIFFErrorExtR | ||
TIFFFdOpen | ||
TIFFFdOpenExt | ||
TIFFFieldDataType | ||
TIFFFieldName | ||
TIFFFieldPassCount | ||
TIFFFieldReadCount | ||
TIFFFieldIsAnonymous | ||
TIFFFieldTag | ||
TIFFFieldWithName | ||
TIFFFieldWithTag | ||
TIFFFieldWriteCount | ||
TIFFFieldSetGetSize | ||
TIFFFieldSetGetCountSize | ||
TIFFFileName | ||
TIFFFileno | ||
TIFFFindCODEC | ||
TIFFFindField | ||
TIFFFlush | ||
TIFFFlushData | ||
TIFFForceStrileArrayWriting | ||
TIFFFreeDirectory | ||
TIFFGetBitRevTable | ||
TIFFGetClientInfo | ||
TIFFGetCloseProc | ||
TIFFGetConfiguredCODECs | ||
TIFFGetField | ||
TIFFGetFieldDefaulted | ||
TIFFGetMapFileProc | ||
TIFFGetMode | ||
TIFFGetReadProc | ||
TIFFGetSeekProc | ||
TIFFGetSizeProc | ||
TIFFGetStrileByteCount | ||
TIFFGetStrileByteCountWithErr | ||
TIFFGetStrileOffset | ||
TIFFGetStrileOffsetWithErr | ||
TIFFGetTagListCount | ||
TIFFGetTagListEntry | ||
TIFFGetUnmapFileProc | ||
TIFFGetVersion | ||
TIFFGetWriteProc | ||
TIFFIsBigEndian | ||
TIFFIsBigTIFF | ||
TIFFIsByteSwapped | ||
TIFFIsCODECConfigured | ||
TIFFIsMSB2LSB | ||
TIFFIsTiled | ||
TIFFIsUpSampled | ||
TIFFLastDirectory | ||
TIFFMergeFieldInfo | ||
TIFFNumberOfDirectories | ||
TIFFNumberOfStrips | ||
TIFFNumberOfTiles | ||
TIFFOpen | ||
TIFFOpenExt | ||
TIFFOpenW | ||
TIFFOpenWExt | ||
TIFFOpenOptionsAlloc | ||
TIFFOpenOptionsFree | ||
TIFFOpenOptionsSetMaxSingleMemAlloc | ||
TIFFOpenOptionsSetErrorHandlerExtR | ||
TIFFOpenOptionsSetWarningHandlerExtR | ||
TIFFPrintDirectory | ||
TIFFRGBAImageBegin | ||
TIFFRGBAImageEnd | ||
TIFFRGBAImageGet | ||
TIFFRGBAImageOK | ||
TIFFRasterScanlineSize | ||
TIFFRasterScanlineSize64 | ||
TIFFRawStripSize | ||
TIFFRawStripSize64 | ||
TIFFReadBufferSetup | ||
TIFFReadCustomDirectory | ||
TIFFReadDirectory | ||
TIFFReadEXIFDirectory | ||
TIFFReadGPSDirectory | ||
TIFFReadEncodedStrip | ||
TIFFReadEncodedTile | ||
TIFFReadFromUserBuffer | ||
TIFFReadRGBAImage | ||
TIFFReadRGBAImageOriented | ||
TIFFReadRGBAStrip | ||
TIFFReadRGBAStripExt | ||
TIFFReadRGBATile | ||
TIFFReadRGBATileExt | ||
TIFFReadRawStrip | ||
TIFFReadRawTile | ||
TIFFReadScanline | ||
TIFFReadTile | ||
TIFFRegisterCODEC | ||
TIFFReverseBits | ||
TIFFRewriteDirectory | ||
TIFFScanlineSize | ||
TIFFScanlineSize64 | ||
TIFFSetClientInfo | ||
TIFFSetClientdata | ||
TIFFSetCompressionScheme | ||
TIFFSetDirectory | ||
TIFFSetErrorHandler | ||
TIFFSetErrorHandlerExt | ||
TIFFSetField | ||
TIFFSetFileName | ||
TIFFSetFileno | ||
TIFFSetMode | ||
TIFFSetSubDirectory | ||
TIFFSetTagExtender | ||
TIFFSetWarningHandler | ||
TIFFSetWarningHandlerExt | ||
TIFFSetWriteOffset | ||
TIFFSetupStrips | ||
TIFFStripSize | ||
TIFFStripSize64 | ||
TIFFSwabArrayOfDouble | ||
TIFFSwabArrayOfFloat | ||
TIFFSwabArrayOfLong | ||
TIFFSwabArrayOfLong8 | ||
TIFFSwabArrayOfShort | ||
TIFFSwabArrayOfTriples | ||
TIFFSwabDouble | ||
TIFFSwabFloat | ||
TIFFSwabLong | ||
TIFFSwabLong8 | ||
TIFFSwabShort | ||
TIFFTileRowSize | ||
TIFFTileRowSize64 | ||
TIFFTileSize | ||
TIFFTileSize64 | ||
TIFFUnRegisterCODEC | ||
TIFFUnlinkDirectory | ||
TIFFUnsetField | ||
TIFFVGetField | ||
TIFFVGetFieldDefaulted | ||
TIFFVSetField | ||
TIFFVStripSize | ||
TIFFVStripSize64 | ||
TIFFVTileSize | ||
TIFFVTileSize64 | ||
TIFFWarning | ||
TIFFWarningExt | ||
TIFFWarningExtR | ||
TIFFWriteBufferSetup | ||
TIFFWriteCheck | ||
TIFFWriteCustomDirectory | ||
TIFFWriteDirectory | ||
TIFFWriteEncodedStrip | ||
TIFFWriteEncodedTile | ||
TIFFWriteRawStrip | ||
TIFFWriteRawTile | ||
TIFFWriteScanline | ||
TIFFWriteTile | ||
TIFFXYZToRGB | ||
TIFFYCbCrToRGBInit | ||
TIFFYCbCrtoRGB | ||
_TIFFCheckMalloc | ||
_TIFFCheckRealloc | ||
_TIFFClampDoubleToUInt32 | ||
_TIFFRewriteField | ||
_TIFFfree | ||
_TIFFmalloc | ||
_TIFFmemcmp | ||
_TIFFmemcpy | ||
_TIFFmemset | ||
_TIFFrealloc | ||
_TIFFMultiply32 | ||
_TIFFMultiply64 | ||
_TIFFGetExifFields | ||
_TIFFGetGpsFields |
Oops, something went wrong.