Allow Betawidget to compile under OS X (OpenGL header location is different).

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5720 4a71c877-e1ca-e34f-864e-861f7616d084
master
Freddie Witherden 2008-07-31 19:30:36 +00:00
parent 30b0cfac27
commit 7aef59ad0d
1 changed files with 7 additions and 2 deletions

View File

@ -8,8 +8,13 @@
#include <cairo.h> #include <cairo.h>
#include <GL/gl.h> #ifdef __APPLE__
#include <GL/glu.h> # include <OpenGL/gl.h>
# include <OpenGL/glu.h>
#else
# include <GL/gl.h>
# include <GL/glu.h>
#endif
#include "vector.h" #include "vector.h"
#include "geom.h" #include "geom.h"