diff options
author | wiz <wiz@pkgsrc.org> | 2006-06-25 19:50:51 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-06-25 19:50:51 +0000 |
commit | 2db7053c7d62e788737710df1e97e12152750b6d (patch) | |
tree | 62ba4b27198d046ecfc9b1edb1283c92650f1682 /games/wesnoth | |
parent | 79530e44f8a3dbc977ab56c897d79348fd03a1f6 (diff) | |
download | pkgsrc-2db7053c7d62e788737710df1e97e12152750b6d.tar.gz |
Include wctype.h for towupper and towlower.
Fixes build with gcc4 on NetBSD-3.99.21.
Diffstat (limited to 'games/wesnoth')
-rw-r--r-- | games/wesnoth/distinfo | 3 | ||||
-rw-r--r-- | games/wesnoth/patches/patch-ac | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo index 906be295121..94c03729fbf 100644 --- a/games/wesnoth/distinfo +++ b/games/wesnoth/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.18 2006/06/15 12:24:12 wiz Exp $ +$NetBSD: distinfo,v 1.19 2006/06/25 19:50:51 wiz Exp $ SHA1 (wesnoth-1.0.2.tar.gz) = c2313242615b79249f26371bd7c410e8385adc0a RMD160 (wesnoth-1.0.2.tar.gz) = 20ba5be7078224f65a37d268eaf95be79e0e57c2 Size (wesnoth-1.0.2.tar.gz) = 40034289 bytes SHA1 (patch-aa) = 28e6a2e8171336fb0f798b2f28ced9152e1678ae SHA1 (patch-ab) = 6e7414a0fcdb5b0b306e7cf4a62383bfdc0f1fa5 +SHA1 (patch-ac) = e95be60f1a197aeea57b7b35b0566b17da1cc7c8 diff --git a/games/wesnoth/patches/patch-ac b/games/wesnoth/patches/patch-ac new file mode 100644 index 00000000000..9cd84857b02 --- /dev/null +++ b/games/wesnoth/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.6 2006/06/25 19:50:51 wiz Exp $ + +--- src/serialization/string_utils.cpp.orig 2005-09-21 00:35:37.000000000 +0000 ++++ src/serialization/string_utils.cpp +@@ -23,6 +23,7 @@ + #include "../util.hpp" + #include "../log.hpp" + #include "string_utils.hpp" ++#include "wctype.h" + + #define ERR_GENERAL LOG_STREAM(err, general) + |