diff options
author | Chia-I Wu <olv@lunarg.com> | 2010-05-18 10:22:57 -0600 |
---|---|---|
committer | Chia-I Wu <olv@lunarg.com> | 2010-05-19 13:39:40 -0600 |
commit | 70ae8bf26fbbac58900237b815ce86c01d09eb96 (patch) | |
tree | aa35665ba6d858e693c5daa5301215ed9f14279d /progs/egl/opengl/eglgears.c | |
parent | bc73a6289f5e28636d579e17e8a8d70a2d8d7500 (diff) |
progs/egl: Fix building on cygwin.
Update the Makefiles to use variables such as EGL_LIB_NAME. Define M_PI
if it hasn't been defined yet.
Diffstat (limited to 'progs/egl/opengl/eglgears.c')
-rw-r--r-- | progs/egl/opengl/eglgears.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/egl/opengl/eglgears.c b/progs/egl/opengl/eglgears.c index 28da9c0ac7..430deb26e5 100644 --- a/progs/egl/opengl/eglgears.c +++ b/progs/egl/opengl/eglgears.c @@ -33,6 +33,10 @@ #include "eglut.h" +#ifndef M_PI +#define M_PI 3.14159265 +#endif + static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0; static GLint gear1, gear2, gear3; static GLfloat angle = 0.0; |