From daa6b52744a1530591e0717d99976c30e5e8e0a6 Mon Sep 17 00:00:00 2001 From: tma Date: Sun, 25 Nov 2007 23:41:01 +0000 Subject: * Move SDL library version check to sys_main.c as it's proving difficult to make the Makefile check sufficiently portable * Remove unnecessary GL PFN... casts from SDL_GL_GetProcAddress calls * Replace OS X uname workaround with Solaris workaround, as I believe OS X uname now behaves the same as GNU name git-svn-id: svn://svn.icculus.org/quake3/trunk@1217 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/sys/sys_main.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'code/sys') diff --git a/code/sys/sys_main.c b/code/sys/sys_main.c index 30039d7..bf0eb94 100644 --- a/code/sys/sys_main.c +++ b/code/sys/sys_main.c @@ -587,6 +587,14 @@ int main( int argc, char **argv ) char commandLine[ MAX_STRING_CHARS ] = { 0 }; #ifndef DEDICATED + // SDL version check + + // Compile time +# if !SDL_VERSION_ATLEAST(MINSDL_MAJOR,MINSDL_MINOR,MINSDL_PATCH) +# error A more recent version of SDL is required +# endif + + // Run time const SDL_version *ver = SDL_Linked_Version( ); #define STRING(s) #s -- cgit v1.2.3