diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-02-10 02:42:11 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-02-10 02:42:11 +0000 |
commit | 86b701de28c51e8ff8365c2189f0d31801e151ab (patch) | |
tree | 6e00a2eef58a0913f92205f806a32a41766ddaf6 /packages/kobodeluxe/files | |
parent | 512f375b6597875d19760d87bc39dfcfba0ca47c (diff) |
kobodeluxe: Some fixes.
- correct path to sdl-config script
- disable building opengl code
- added patch to use putenv() instead of SDL_putenv()
Diffstat (limited to 'packages/kobodeluxe/files')
-rw-r--r-- | packages/kobodeluxe/files/buildfix.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/kobodeluxe/files/buildfix.patch b/packages/kobodeluxe/files/buildfix.patch new file mode 100644 index 0000000000..01a97e14f2 --- /dev/null +++ b/packages/kobodeluxe/files/buildfix.patch @@ -0,0 +1,21 @@ +Index: kobodeluxe-0.5.1/graphics/gfxengine.cpp +=================================================================== +--- kobodeluxe-0.5.1.orig/graphics/gfxengine.cpp 2008-02-10 03:02:29.000000000 +0100 ++++ kobodeluxe-0.5.1/graphics/gfxengine.cpp 2008-02-10 03:03:45.000000000 +0100 +@@ -25,6 +25,7 @@ + + #include <string.h> + #include <math.h> ++#include <stdlib.h> + + #include "gfxengine.h" + #include "filters.h" +@@ -765,7 +766,7 @@ + return 0; + + if(_centered && !_fullscreen) +- SDL_putenv((char *)"SDL_VIDEO_CENTERED=1"); ++ putenv((char *)"SDL_VIDEO_CENTERED=1"); + + log_printf(DLOG, "Opening screen...\n"); + if(!SDL_WasInit(SDL_INIT_VIDEO)) |