🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

[lesson22] linux C++ code issues

Started by
-1 comments, last by JusTiCe8 17 years, 3 months ago
Hi, there is somes issues in lesson22 code: 1. Makefile source file (for automake) miss something in dependancie lead to go to second compilation step without proper input file generated in 1st step (object file), 2. glext.h local include should be replace by standard GL/glext.h. in configure.in: line AC_CHECK_HEADERS(GL/gl.h GL/glu.h, , AC_MSG_ERROR([OpenGL headers not found])) become AC_CHECK_HEADERS(GL/gl.h GL/glu.h, GL/glext.h, , AC_MSG_ERROR([OpenGL headers not found])) 3. command line for 1st object file miss: GL_GLEXT_PROTOTYPES define I think it will be easy to fix with enough automake/autoconf knowledge. Regards.

This topic is closed to new replies.

Advertisement