ugh ... yet another error with DevC++

Geez. Ok now i have an error saying that
#include <gl\glaux.h> is an unrecognizable path. WTF is this?
“12 C:\WINDOWS\Desktop\Dev Files\Lesson01\lesson01\GL-1.cpp
gl\glaux.h: No such file or directory.”

this is the code:

#include <gl\glaux.h>

glaux is a library that is rarely used today. This is looking for the glaux header in the gl subdirectory in your include dirs. The path problem suggests that /usr/include/gl/ isn’t there, or whatever your include path is. You need to get glaux.h and the library for glaux to compile examples that use glaux. You should look for the header and make sure the path to that is correct.

Read this:
http://www.opengl.org/discussion_boards/ubb/Forum2/HTML/015064.html

You might want to forget about glaux based examples and go straight for GLUT based examples, at least you can find the darned download online. GLAUX is deprecated now, nobody uses it.

ok got any ideas where i can find GLUT based?
never used it before
i started over at nehe so…

nehe.gamedev.net has DEV-C++ versions of his lessions at the bottom of each lesson page.
Also GLUT based versions can be found there also.

And on my webpage are some GLUT based examples: www.angelfire.com/linux/nexusone/

[This message has been edited by nexusone (edited 02-02-2004).]