diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-02-18 20:40:15 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-02-18 20:40:15 +0000 |
commit | eb92a65d8b299fa7d6dc5a3a20c366434eb37c37 (patch) | |
tree | ec7d0f3b8ebb2557337e1e1a31d9535514315f1a /games-fps/alephone/files | |
parent | Stable for ppc, wrt bug #457342 (diff) | |
download | historical-eb92a65d8b299fa7d6dc5a3a20c366434eb37c37.tar.gz historical-eb92a65d8b299fa7d6dc5a3a20c366434eb37c37.tar.bz2 historical-eb92a65d8b299fa7d6dc5a3a20c366434eb37c37.zip |
version bump
Package-Manager: portage-2.2.0_alpha162/cvs/Linux x86_64
Manifest-Sign-Key: 0xE73C35B3
Diffstat (limited to 'games-fps/alephone/files')
-rw-r--r-- | games-fps/alephone/files/alephone-20120514-gcc47.patch | 11 | ||||
-rw-r--r-- | games-fps/alephone/files/alephone-20120514-png15.patch | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/games-fps/alephone/files/alephone-20120514-gcc47.patch b/games-fps/alephone/files/alephone-20120514-gcc47.patch new file mode 100644 index 000000000000..0f6cac2e94c7 --- /dev/null +++ b/games-fps/alephone/files/alephone-20120514-gcc47.patch @@ -0,0 +1,11 @@ +--- AlephOne-20120514/Source_Files/Lua/lua_templates.h ++++ AlephOne-20120514/Source_Files/Lua/lua_templates.h +@@ -496,7 +496,7 @@ + static index_t ToIndex(lua_State *L, int index) { + index_t to; + if(lua_isnil(L, index)) return -1; +- else if(_lookup(L, index, to)) return to; ++ else if(L_LazyEnum::_lookup(L, index, to)) return to; + else { + std::string error; + if(lua_isnumber(L, index) || lua_isstring(L, index)) diff --git a/games-fps/alephone/files/alephone-20120514-png15.patch b/games-fps/alephone/files/alephone-20120514-png15.patch new file mode 100644 index 000000000000..bb99d7ed3245 --- /dev/null +++ b/games-fps/alephone/files/alephone-20120514-png15.patch @@ -0,0 +1,11 @@ +--- AlephOne-20120514/Source_Files/RenderOther/IMG_savepng.c ++++ AlephOne-20120514/Source_Files/RenderOther/IMG_savepng.c +@@ -86,7 +86,7 @@ int IMG_SavePNG_RW(SDL_RWops *src, SDL_S + goto savedone; + } + /* setup custom writer functions */ +- png_set_write_fn(png_ptr,(voidp)src,png_write_data,NULL); ++ png_set_write_fn(png_ptr,(png_voidp)src,png_write_data,NULL); + + if (setjmp(png_jmpbuf(png_ptr))){ + SDL_SetError("Unknown error writing PNG"); |