Got the libraries installed and the headers included, but I am getting this error (the code was working on 1.2.13 last I can recall...)
$ scons scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... g++ -o debug/program.o -c -Wall -DDEBUG -lSDL src/program.cc src/program.cc: In member function 'int Program::startSdl()': src/program.cc:57:25: error: 'SDL_GL_CONTEXT_MAJOR_VERSION' was not declared in this scope src/program.cc:58:22: error: 'SDL_GL_CONTEXT_MINOR_VERSION' was not declared in this scope src/program.cc:64:30: error: 'SDL_WINDOWPOS_CENTERED' was not declared in this scope src/program.cc:66:9: error: 'SDL_WINDOW_OPENGL' was not declared in this scope src/program.cc:66:29: error: 'SDL_WINDOW_SHOWN' was not declared in this scope src/program.cc:66:48: error: 'SDL_WINDOW_FULLSCREEN' was not declared in this scope src/program.cc:67:5: error: 'SDL_CreateWindow' was not declared in this scope src/program.cc:78:77: error: 'SDL_GL_CreateContext' was not declared in this scope src/program.cc:81:26: error: 'SDL_GL_SetSwapInterval' was not declared in this scope scons: *** [debug/program.o] Error 1 scons: building terminated because of errors.
Looking at my SDL_version.h file, it looks like the version I have is 1.2.14.
Are these missing from that version of SDL? Not sure why I am getting these errors.






