Fix libtiff build on windows

This commit is contained in:
Konstantin Kopachev 2018-07-17 12:18:50 -07:00
parent 98d88fd1c6
commit e102f4848b
No known key found for this signature in database
GPG Key ID: CECF757E656F4F62

View File

@ -55,18 +55,16 @@ LOGLUV_SUPPORT = 1
# Uncomment and edit following lines to enable JPEG support. # Uncomment and edit following lines to enable JPEG support.
# #
JPEG_SUPPORT = 1 JPEG_SUPPORT = 1
JPEGDIR = $(BUILD)\jpeg-9c JPEG_INCLUDE = -I$(INCLIB)
JPEG_INCLUDE = -I$(JPEGDIR) JPEG_LIB = $(INCLIB)/libjpeg.lib
JPEG_LIB = $(JPEGDIR)/libjpeg.lib
# #
# Uncomment and edit following lines to enable ZIP support # Uncomment and edit following lines to enable ZIP support
# (required for Deflate compression and Pixar log-format) # (required for Deflate compression and Pixar log-format)
# #
ZIP_SUPPORT = 1 ZIP_SUPPORT = 1
ZLIBDIR = $(BUILD)\zlib-1.2.8 ZLIB_INCLUDE = -I$(INCLIB)
ZLIB_INCLUDE = -I$(ZLIBDIR) ZLIB_LIB = $(INCLIB)/zlib.lib
ZLIB_LIB = $(ZLIBDIR)/zlib.lib
# #
# Uncomment and edit following lines to enable ISO JBIG support # Uncomment and edit following lines to enable ISO JBIG support