Skip to content
Snippets Groups Projects
Commit 62830747 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

workaround faulty fltk installs (e.g. in current Debian or Ubuntu)
parent 941e952f
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,15 @@
// bugs and problems to <gmsh@geuz.org>.
#include <FL/gl.h>
#include <FL/glu.h>
//FIXME: workaround faulty fltk installs
//#include <FL/glu.h>
#ifdef __APPLE__
# include <OpenGL/glu.h>
#else
# include <GL/glu.h>
#endif
#include "GUI.h"
#include "graphicWindow.h"
#include "GmshDefines.h"
......
......@@ -4,7 +4,15 @@
// bugs and problems to <gmsh@geuz.org>.
#include <FL/gl.h>
#include <FL/glu.h>
//FIXME: workaround faulty fltk installs
//#include <FL/glu.h>
#ifdef __APPLE__
# include <OpenGL/glu.h>
#else
# include <GL/glu.h>
#endif
#include "GmshMessage.h"
#include "Draw.h"
#include "drawContext.h"
......
......@@ -5,7 +5,15 @@
#include <string.h>
#include <FL/gl.h>
#include <FL/glu.h>
//FIXME: workaround faulty fltk installs
//#include <FL/glu.h>
#ifdef __APPLE__
# include <OpenGL/glu.h>
#else
# include <GL/glu.h>
#endif
#include "drawContext.h"
#include "Numeric.h"
#include "Draw.h"
......
......@@ -9,7 +9,15 @@
#if defined(HAVE_FLTK)
#include <FL/gl.h>
#include <FL/glu.h>
//FIXME: workaround faulty fltk installs
//#include <FL/glu.h>
#ifdef __APPLE__
# include <OpenGL/glu.h>
#else
# include <GL/glu.h>
#endif
#include "Draw.h"
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment