Mercurial > sdl-ios-xcode
annotate test/testver.c @ 1199:2d6dc7de1145
From: Mike Frysinger <vapier@gentoo.org>
To: sdl@libsdl.org
Date: Sun, 11 Dec 2005 22:57:37 -0500
Subject: [SDL] exec stack in libsdl update
i posted back in September a patch to remove executable stacks:
http://www.devolution.com/pipermail/sdl/2005-September/070626.html
later in November, a similar patch was merged it seems:
http://www.libsdl.org/cgi/cvsweb.cgi/SDL12/src/hermes/mmx_main.asm
however, this lacks the additional output format checks that i posted in my
patch ... this isnt a problem if the hermes asm code is only ever used to
produce ELF objects, but if this is not true, then the additional checks in
my original patch will need to be merged
-mike
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 12 Dec 2005 09:13:12 +0000 |
parents | d93862a3d821 |
children | 782fd950bd46 c121d94672cb |
rev | line source |
---|---|
0 | 1 |
2 /* Test program to compare the compile-time version of SDL with the linked | |
3 version of SDL | |
4 */ | |
5 | |
6 #include <stdio.h> | |
1154
d93862a3d821
Fixed compiler warnings in Watcom C.
Ryan C. Gordon <icculus@icculus.org>
parents:
850
diff
changeset
|
7 #include <stdlib.h> |
0 | 8 |
9 #include "SDL.h" | |
10 | |
11 int main(int argc, char *argv[]) | |
12 { | |
13 SDL_version compiled; | |
14 | |
15 /* Initialize SDL */ | |
16 if ( SDL_Init(0) < 0 ) { | |
17 fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError()); | |
18 exit(1); | |
19 } | |
20 #ifdef DEBUG | |
21 fprintf(stderr, "SDL initialized\n"); | |
22 #endif | |
23 #if SDL_VERSION_ATLEAST(1, 2, 0) | |
24 printf("Compiled with SDL 1.2 or newer\n"); | |
25 #else | |
26 printf("Compiled with SDL older than 1.2\n"); | |
27 #endif | |
28 SDL_VERSION(&compiled); | |
29 printf("Compiled version: %d.%d.%d\n", | |
30 compiled.major, compiled.minor, compiled.patch); | |
31 printf("Linked version: %d.%d.%d\n", | |
32 SDL_Linked_Version()->major, | |
33 SDL_Linked_Version()->minor, | |
34 SDL_Linked_Version()->patch); | |
35 SDL_Quit(); | |
36 return(0); | |
37 } |