diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2004-05-12 18:53:07 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2004-05-12 18:53:07 +0000 |
commit | 0a88456a6ac27fd016c7ee89a3b506eb4efca840 (patch) | |
tree | 80dccab8e47ca90aed27878960da1c9b3f1e558e /games/wesnoth/files | |
parent | e9ade083b940f3604cfb0d742bd15dd77e98e374 (diff) | |
download | ports-0a88456a6ac27fd016c7ee89a3b506eb4efca840.tar.gz ports-0a88456a6ac27fd016c7ee89a3b506eb4efca840.zip |
Notes
Diffstat (limited to 'games/wesnoth/files')
-rw-r--r-- | games/wesnoth/files/patch-src::language.hpp | 17 | ||||
-rw-r--r-- | games/wesnoth/files/patch-src::widgets::textbox.hpp | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/games/wesnoth/files/patch-src::language.hpp b/games/wesnoth/files/patch-src::language.hpp new file mode 100644 index 000000000000..8ab1e88d877f --- /dev/null +++ b/games/wesnoth/files/patch-src::language.hpp @@ -0,0 +1,17 @@ +--- src/language.hpp.orig Mon May 3 18:35:49 2004 ++++ src/language.hpp Wed May 12 00:50:43 2004 +@@ -19,6 +19,14 @@ + #include <string> + #include <vector> + ++#if (__FreeBSD_version < 500029) ++#include <cwchar> ++namespace std ++{ ++ typedef basic_string <wchar_t> wstring; ++} ++#endif ++ + //this module controls internationalization. + + struct symbol_table diff --git a/games/wesnoth/files/patch-src::widgets::textbox.hpp b/games/wesnoth/files/patch-src::widgets::textbox.hpp new file mode 100644 index 000000000000..6abbf1e960b2 --- /dev/null +++ b/games/wesnoth/files/patch-src::widgets::textbox.hpp @@ -0,0 +1,17 @@ +--- src/widgets/textbox.hpp.orig Mon May 3 18:35:49 2004 ++++ src/widgets/textbox.hpp Wed May 12 00:51:03 2004 +@@ -22,6 +22,14 @@ + + #include "SDL.h" + ++#if (__FreeBSD_version < 500029) ++#include <cwchar> ++namespace std ++{ ++ typedef basic_string <wchar_t> wstring; ++} ++#endif ++ + namespace gui { + + class textbox : public widget |