diff options
author | 2003-12-31 06:54:36 +0000 | |
---|---|---|
committer | 2003-12-31 06:54:36 +0000 | |
commit | ed6f27cb8a59962b2ac8c17bc58834e6b51a51e2 (patch) | |
tree | 65823781b41b9de07b06ea08c8c041a2b8c3b822 /games-board/crafty/files | |
parent | version bump. This incorporates Eric Raymond's latest iteration of the /etc/... (diff) | |
download | gentoo-2-ed6f27cb8a59962b2ac8c17bc58834e6b51a51e2.tar.gz gentoo-2-ed6f27cb8a59962b2ac8c17bc58834e6b51a51e2.tar.bz2 gentoo-2-ed6f27cb8a59962b2ac8c17bc58834e6b51a51e2.zip |
ver bump #34789
Diffstat (limited to 'games-board/crafty/files')
-rw-r--r-- | games-board/crafty/files/19.8-ppc.patch | 25 | ||||
-rw-r--r-- | games-board/crafty/files/digest-crafty-19.8 | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/games-board/crafty/files/19.8-ppc.patch b/games-board/crafty/files/19.8-ppc.patch new file mode 100644 index 000000000000..c337e108a473 --- /dev/null +++ b/games-board/crafty/files/19.8-ppc.patch @@ -0,0 +1,25 @@ +--- utility.c.orig 2003-12-31 01:36:43.778210312 -0500 ++++ utility.c 2003-12-31 01:37:50.667041664 -0500 +@@ -1134,13 +1134,19 @@ + } + + 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) { +- va_start(ap,fmt); +- if (log_file) vfprintf(log_file, fmt, ap); ++ va_start(ap2,fmt); ++ 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.8 b/games-board/crafty/files/digest-crafty-19.8 new file mode 100644 index 000000000000..d1d2e5735c3c --- /dev/null +++ b/games-board/crafty/files/digest-crafty-19.8 @@ -0,0 +1 @@ +MD5 eb7f48d1f8acc3804e80291d85b1ec35 crafty-19.8.tar.gz 384312 |