aboutsummaryrefslogtreecommitdiffstats
path: root/code/sys/sys_main.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-06 18:21:10 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-06 18:21:10 +0000
commit4e64b0a1b82badbf25bb32bd96290f96668c2290 (patch)
treeb6712eb8ada4742f54b84a507ce48070ed668b39 /code/sys/sys_main.c
parented3c9635a68e03c1448e64ff49824b65fa1f4776 (diff)
downloadioquake3-aero-4e64b0a1b82badbf25bb32bd96290f96668c2290.tar.gz
ioquake3-aero-4e64b0a1b82badbf25bb32bd96290f96668c2290.zip
* Compile time and runtime checks for SDL >= 1.2.7
* Modified versioning to play nice with the reverted Makefile change git-svn-id: svn://svn.icculus.org/quake3/trunk@1168 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/sys/sys_main.c')
-rw-r--r--code/sys/sys_main.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/code/sys/sys_main.c b/code/sys/sys_main.c
index df74373..c73c2e4 100644
--- a/code/sys/sys_main.c
+++ b/code/sys/sys_main.c
@@ -35,6 +35,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#ifndef DEDICATED
#include "SDL.h"
+#include "SDL_cpuinfo.h"
#endif
#include "sys_local.h"
@@ -604,6 +605,24 @@ int main( int argc, char **argv )
int i;
char commandLine[ MAX_STRING_CHARS ] = { 0 };
+#ifndef DEDICATED
+ const SDL_version *ver = SDL_Linked_Version( );
+
+#define STRING(s) #s
+#define XSTRING(s) STRING(s)
+#define MINSDL_VERSION \
+ XSTRING(MINSDL_MAJOR) "." \
+ XSTRING(MINSDL_MINOR) "." \
+ XSTRING(MINSDL_PATCH)
+
+ if( SDL_VERSIONNUM( ver->major, ver->minor, ver->patch ) <
+ SDL_VERSIONNUM( MINSDL_MAJOR, MINSDL_MINOR, MINSDL_PATCH ) )
+ {
+ Sys_Print( "SDL version " MINSDL_VERSION " or greater required\n" );
+ Sys_Exit( 1 );
+ }
+#endif
+
Sys_ParseArgs( argc, argv );
Sys_SetBinaryPath( Sys_Dirname( argv[ 0 ] ) );
Sys_SetDefaultInstallPath( DEFAULT_BASEDIR );