Merge branch 'patch-2' into 'master'

Update tiffgt.c for build fix on Windows

See merge request libtiff/libtiff!13
This commit is contained in:
Even Rouault 2018-01-27 11:20:46 +00:00
commit fb0489937c

View File

@ -27,11 +27,16 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_OPENGL_GL_H
# include <OpenGL/gl.h>
#else
# ifdef _WIN32
# include <windows.h>
# endif
# include <GL/gl.h>
#endif
#ifdef HAVE_GLUT_GLUT_H