2020.01.18 13:19 "[Tiff] Warnings while building tools", by Miguel Medalha

2020.01.19 17:32 "Re: [Tiff] Warnings while building tools", by Miguel Medalha

I built libtiff 4.10 on Windows using Microsoft's Visual Studio nmake.

I encountered a small glitch with the tiffset tool, which wouldn't build,

complaining that 'strtoll' was undefined (.)

Following a tip by Bob Friesenhahn I made a change in port\makefile.vc, from

OBJ = \

     snprintf.obj \

     strcasecmp.obj \

     getopt.obj

to

OBJ = \

     snprintf.obj \

     strcasecmp.obj \

     strtoll.obj \

     getopt.obj

After this change, 'tiffset.exe' built successfully.

Thank you to those who answered.