Update tiffgt.c for build fix on Windows

This commit is contained in:
Andrea 2018-01-24 01:25:13 +00:00
parent 070abb3aae
commit a6195d0ad4

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