summaryrefslogtreecommitdiff
path: root/games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
commitfa4a943c17e47bf910596a414fd7287983350b9b (patch)
treedc76cec18a505befc330e612e0a56bf1caa5ca49 /games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper
parent- Fix manpage pointing to correct PREFIX for binary and conf (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_0_0'.release/7.0.0
Diffstat (limited to 'games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper')
-rw-r--r--games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper29
1 files changed, 0 insertions, 29 deletions
diff --git a/games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper b/games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper
deleted file mode 100644
index 91b9d3bc7e5f..000000000000
--- a/games/wesnoth-devel/files/patch-fix_freebsd4_build_towupper
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/serialization/string_utils.cpp.orig Sun Dec 24 19:41:45 2006
-+++ src/serialization/string_utils.cpp Sun Dec 24 19:42:29 2006
-@@ -609,7 +609,7 @@
- {
- if(s.size() > 0) {
- utf8_iterator itor(s);
--#if defined(__APPLE__) || defined(__AMIGAOS4__)
-+#if __FreeBSD__ < 5
- // FIXME: Should we support towupper on recent OSX platforms?
- wchar_t uchar = *itor;
- if(uchar >= 0 && uchar < 0x100)
-@@ -631,7 +631,7 @@
- std::string res;
-
- for(;itor != utf8_iterator::end(s); ++itor) {
--#if defined(__APPLE__) || defined(__AMIGAOS4__)
-+#if __FreeBSD__ < 5
- // FIXME: Should we support towupper on recent OSX platforms?
- wchar_t uchar = *itor;
- if(uchar >= 0 && uchar < 0x100)
-@@ -654,7 +654,7 @@
- std::string res;
-
- for(;itor != utf8_iterator::end(s); ++itor) {
--#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__AMIGAOS4__)
-+#if __FreeBSD__ < 5
- // FIXME: Should we support towupper on recent OSX platforms?
- wchar_t uchar = *itor;
- if(uchar >= 0 && uchar < 0x100)