opengl.org: spec, API documentation, language bindings, links to tutorials
NeHe: tutorials, articles
SGI's NT hardware: http://en.wikipedia.org/wiki/SGI_Visual_Workstation
SGI's miscalculations: http://news.cnet.com/Several-factors-led-to-SGI-decline/2100-1001_3-204826.html
OpenGL with Visual Studio .NET
Moves Institute: OpenGL on a PC
Alternately you can use Cygwin's 'bash' shell to do the compilation yourself:
CC = g++ XLIBS = -L/usr/usc/lib/X11R5 -LXext -lXmu -lXi -lX11 GLLIBS = -lGL -lGLU -lglut -L/usr/usc/glut/3.5/lib/glut GLINC = -I/usr/usc/glut/3.5/include LIBS = -L/usr/lib -L/usr/local/lib all: $(CC) simple2.c -O3 -o simple2 $(XLIBS) $(GLLIBS) $(GLINC) $(LIBS)