diff options
Diffstat (limited to 'games-action/reflectball/files/reflectball-0.11-import.diff')
-rw-r--r-- | games-action/reflectball/files/reflectball-0.11-import.diff | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/games-action/reflectball/files/reflectball-0.11-import.diff b/games-action/reflectball/files/reflectball-0.11-import.diff deleted file mode 100644 index 48c6b3b..0000000 --- a/games-action/reflectball/files/reflectball-0.11-import.diff +++ /dev/null @@ -1,117 +0,0 @@ -diff -Naur RefLectBall/import/SDL.d RefLectBall-gentoo/import/SDL.d ---- RefLectBall/import/SDL.d 2006-07-26 16:24:12.000000000 +0200 -+++ RefLectBall-gentoo/import/SDL.d 2007-10-11 21:35:39.000000000 +0200 -@@ -31,7 +31,7 @@ - public import SDL_events; - public import SDL_video; - public import SDL_byteorder; --public import SDL_Version; -+public import SDL_version; - - extern(C): - -@@ -73,6 +73,7 @@ - */ - void SDL_Quit(); - -+/+ - void SDL_SetModuleHandle(void *hInst); - //extern(Windows) void* GetModuleHandle(char*); - extern(Windows) void* GetModuleHandleA(char*); -@@ -90,3 +91,4 @@ - { - SDL_Quit(); - } -++/ -diff -Naur RefLectBall/import/SDL_events.d RefLectBall-gentoo/import/SDL_events.d ---- RefLectBall/import/SDL_events.d 2006-07-26 16:25:46.000000000 +0200 -+++ RefLectBall-gentoo/import/SDL_events.d 2007-10-11 21:35:39.000000000 +0200 -@@ -105,7 +105,7 @@ - Uint8 type; /* SDL_KEYDOWN or SDL_KEYUP */ - Uint8 which; /* The keyboard device index */ - Uint8 state; /* SDL_PRESSED or SDL_RELEASED */ -- SDL_keysym keysym; -+ SDL_keysym2 keysym; - } - - /* Mouse motion event structure */ -diff -Naur RefLectBall/import/SDL_keyboard.d RefLectBall-gentoo/import/SDL_keyboard.d ---- RefLectBall/import/SDL_keyboard.d 2006-07-26 16:25:14.000000000 +0200 -+++ RefLectBall-gentoo/import/SDL_keyboard.d 2007-10-11 21:35:39.000000000 +0200 -@@ -26,7 +26,7 @@ - // !!! A hack! struct SDL_keysym is defined in this module, - // !!! so we need to resolve the nameclash... - // !!! Definitely won't work on *NIX but for now will do. --public import SDL_Keysym; -+public import SDL_keysym; - - extern(C): - -@@ -46,7 +46,7 @@ - An international character.. - } - */ --struct SDL_keysym { -+struct SDL_keysym2 { - Uint8 scancode; /* hardware specific scancode */ - SDLKey sym; /* SDL virtual keysym */ - SDLMod mod; /* current key modifiers */ -diff -Naur RefLectBall/import/SDL_syswm.d RefLectBall-gentoo/import/SDL_syswm.d ---- RefLectBall/import/SDL_syswm.d 2006-07-26 16:25:32.000000000 +0200 -+++ RefLectBall-gentoo/import/SDL_syswm.d 2007-10-11 21:35:39.000000000 +0200 -@@ -22,7 +22,7 @@ - - /* Include file for SDL custom system window manager hooks */ - --public import SDL_Version; -+public import SDL_version; - - extern(C): - -diff -Naur RefLectBall/import/opengl.d RefLectBall-gentoo/import/opengl.d ---- RefLectBall/import/opengl.d 2004-01-09 10:52:04.000000000 +0100 -+++ RefLectBall-gentoo/import/opengl.d 2007-10-11 21:35:39.000000000 +0200 -@@ -1,10 +1,4 @@ --version (Win32) {
-- private import std.c.windows.windows;
-- extern(Windows):
--}
--version (linux) {
- extern(C):
--}
-
- alias uint GLenum;
- alias ubyte GLboolean;
-@@ -1116,7 +1110,7 @@ - /*************************************************************/
-
- void /*APIENTRY*/glAccum (GLenum op, GLfloat value);
--void /*APIENTRY*/glAlphaFunc (GLenum func, GLclampf ref);
-+void /*APIENTRY*/glAlphaFunc (GLenum func, GLclampf);
- GLboolean /*APIENTRY*/glAreTexturesResident (GLsizei n, GLuint *textures, GLboolean *residences);
- void /*APIENTRY*/glArrayElement (GLint i);
- void /*APIENTRY*/glBegin (GLenum mode);
-@@ -1369,7 +1363,7 @@ - void /*APIENTRY*/glScissor (GLint x, GLint y, GLsizei width, GLsizei height);
- void /*APIENTRY*/glSelectBuffer (GLsizei size, GLuint *buffer);
- void /*APIENTRY*/glShadeModel (GLenum mode);
--void /*APIENTRY*/glStencilFunc (GLenum func, GLint ref, GLuint mask);
-+void /*APIENTRY*/glStencilFunc (GLenum func, GLint, GLuint mask);
- void /*APIENTRY*/glStencilMask (GLuint mask);
- void /*APIENTRY*/glStencilOp (GLenum fail, GLenum zfail, GLenum zpass);
- void /*APIENTRY*/glTexCoord1d (GLdouble s);
-diff -Naur RefLectBall/import/openglu.d RefLectBall-gentoo/import/openglu.d ---- RefLectBall/import/openglu.d 2006-07-26 16:24:24.000000000 +0200 -+++ RefLectBall-gentoo/import/openglu.d 2007-10-11 21:35:39.000000000 +0200 -@@ -1,11 +1,6 @@ - public import opengl;
-
--version (Win32) {
-- extern(Windows):
--}
--version (linux) {
- extern(C):
--}
-
- GLubyte* gluErrorString (
- GLenum errCode); |