diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 17:46:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 17:46:27 +0000 |
commit | 97058967a7de1ca39bedfc34a737c18adedef2ab (patch) | |
tree | 1cb38f3487301fc029765267e06de600501406e9 /games-board/crafty/files | |
parent | Changes to make the eclass more flexible (diff) | |
download | gentoo-2-97058967a7de1ca39bedfc34a737c18adedef2ab.tar.gz gentoo-2-97058967a7de1ca39bedfc34a737c18adedef2ab.tar.bz2 gentoo-2-97058967a7de1ca39bedfc34a737c18adedef2ab.zip |
board board games
Diffstat (limited to 'games-board/crafty/files')
-rw-r--r-- | games-board/crafty/files/crafty-18.15-ppc.patch | 24 | ||||
-rw-r--r-- | games-board/crafty/files/digest-crafty-19.1 | 1 |
2 files changed, 25 insertions, 0 deletions
diff --git a/games-board/crafty/files/crafty-18.15-ppc.patch b/games-board/crafty/files/crafty-18.15-ppc.patch new file mode 100644 index 000000000000..f53cc94b130e --- /dev/null +++ b/games-board/crafty/files/crafty-18.15-ppc.patch @@ -0,0 +1,24 @@ +--- utility.c.orig Thu May 23 19:02:28 2002 ++++ utility.c Fri Aug 2 22:29:49 2002 +@@ -1159,12 +1159,18 @@ + } + + void Print(int vb, char *fmt, ...) { +- va_list ap; ++ va_list ap, ap2; + va_start(ap,fmt); ++ #ifdef __va_copy ++ __va_copy(ap2, ap); ++ #else ++ /* FIXME: C99 has va_copy() - test for C99 and use it if present */ ++ ap2 = ap; ++ #endif + if (vb&display_options) vprintf(fmt, ap); + fflush(stdout); + if (time_limit>99 || tc_time_remaining>6000 || vb==4095) { +- if (log_file) vfprintf(log_file, fmt, ap); ++ if (log_file) vfprintf(log_file, fmt, ap2); + if (log_file) fflush(log_file); + } + va_end(ap); + diff --git a/games-board/crafty/files/digest-crafty-19.1 b/games-board/crafty/files/digest-crafty-19.1 new file mode 100644 index 000000000000..f0c8dea8d6fb --- /dev/null +++ b/games-board/crafty/files/digest-crafty-19.1 @@ -0,0 +1 @@ +MD5 cefc2987cc3e1f1837d7a4fd7e543535 crafty-19.1.tar.gz 370843 |