2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2006-03-31 07:16:44 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2006-03-31 07:16:44 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2006-03-31 07:16:44 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2006-03-31 07:16:44 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2006-03-31 07:16:44 +00:00
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_BOINC_GLUT_H
|
|
|
|
#define BOINC_BOINC_GLUT_H
|
2006-03-31 07:16:44 +00:00
|
|
|
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#if HAVE_GL_GLUT_H
|
2006-03-31 07:16:44 +00:00
|
|
|
# include <GL/glut.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
#else
|
2006-03-31 07:16:44 +00:00
|
|
|
# include<glut.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif defined(__APPLE_CC__)
|
|
|
|
|
|
|
|
# include "GLUT/glut.h"
|
|
|
|
|
|
|
|
#else // !_WIN32, !__APPLE_CC__
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
# if HAVE_GLUT_H
|
2006-03-31 07:16:44 +00:00
|
|
|
# include "glut.h"
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_GL_GLUT_H
|
2006-03-31 07:16:44 +00:00
|
|
|
# include <GL/glut.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_OPENGL_GLUT_H
|
2006-03-31 07:16:44 +00:00
|
|
|
# include <OpenGL/glut.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_GLUT_GLUT_H
|
2006-03-31 07:16:44 +00:00
|
|
|
# include <GLUT/glut.h>
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#endif // _WIN32
|
|
|
|
|
|
|
|
#endif
|