diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2009-06-14 00:30:36 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2009-06-14 00:30:36 +0000 |
commit | 383d68ba165413459fd28a30b1ba04795bbbc3f7 (patch) | |
tree | 6e6b7f2dc5c9fbf89934fb6d37d87002e4eb8585 /games-arcade/kobodeluxe/files | |
parent | Moved Slot to 3.5 (diff) | |
download | gentoo-2-383d68ba165413459fd28a30b1ba04795bbbc3f7.tar.gz gentoo-2-383d68ba165413459fd28a30b1ba04795bbbc3f7.tar.bz2 gentoo-2-383d68ba165413459fd28a30b1ba04795bbbc3f7.zip |
Fix building with glibc-2.10, bug #273508
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'games-arcade/kobodeluxe/files')
-rw-r--r-- | games-arcade/kobodeluxe/files/kobodeluxe-0.5.1-glibc2.10.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-arcade/kobodeluxe/files/kobodeluxe-0.5.1-glibc2.10.patch b/games-arcade/kobodeluxe/files/kobodeluxe-0.5.1-glibc2.10.patch new file mode 100644 index 000000000000..1095cc1c7330 --- /dev/null +++ b/games-arcade/kobodeluxe/files/kobodeluxe-0.5.1-glibc2.10.patch @@ -0,0 +1,11 @@ +--- graphics/window.cpp ++++ graphics/window.cpp +@@ -398,7 +398,7 @@ + */ + if(token) + { +- char *tok = strchr(txt, token); ++ const char *tok = strchr(txt, token); + if(tok) + tokpos = tok-txt; + else |