diff options
author | joerg <joerg> | 2006-04-28 13:52:05 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-04-28 13:52:05 +0000 |
commit | a376ed60e5d06b23afe790d3f31424c7a614e95a (patch) | |
tree | 9985d66de45c5ce41e4e9c0f6d5300224293e825 /emulators/palmosemulator | |
parent | 5bc3356ddb215639cd6eb6cffe7913d7da79074d (diff) | |
download | pkgsrc-a376ed60e5d06b23afe790d3f31424c7a614e95a.tar.gz |
Fix some, but not all issues with GCC 3.4.
Diffstat (limited to 'emulators/palmosemulator')
-rw-r--r-- | emulators/palmosemulator/distinfo | 4 | ||||
-rw-r--r-- | emulators/palmosemulator/patches/patch-ao | 58 | ||||
-rw-r--r-- | emulators/palmosemulator/patches/patch-ap | 22 |
3 files changed, 83 insertions, 1 deletions
diff --git a/emulators/palmosemulator/distinfo b/emulators/palmosemulator/distinfo index 24c860ffcda..8ced4cbcafb 100644 --- a/emulators/palmosemulator/distinfo +++ b/emulators/palmosemulator/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2005/02/23 18:49:19 agc Exp $ +$NetBSD: distinfo,v 1.6 2006/04/28 13:52:05 joerg Exp $ SHA1 (palmosemulator/emulator_src_3.5.tar.gz) = 2debd7690736397d0af41f7b2d482df65391fc65 RMD160 (palmosemulator/emulator_src_3.5.tar.gz) = fbb6761e4c43ecc9fb20d90d2ae0ec6ccf1c3f27 @@ -20,3 +20,5 @@ SHA1 (patch-ak) = d693bd15c982c95663f9f595fdcad6f80d5c2477 SHA1 (patch-al) = 50342df4bb9d020f0b72be608d0656351dae4463 SHA1 (patch-am) = 2790c8b567a94d86bced52d59cf62b4448b62731 SHA1 (patch-an) = 93e326e3ab9f532d5bab1cc987c179e8337a823d +SHA1 (patch-ao) = 9ace708f71d33802059db53c9242f0d89a77e4da +SHA1 (patch-ap) = 7cb159b84f8ad0638c49285ea5140aae93623f96 diff --git a/emulators/palmosemulator/patches/patch-ao b/emulators/palmosemulator/patches/patch-ao new file mode 100644 index 00000000000..7c15497a9c4 --- /dev/null +++ b/emulators/palmosemulator/patches/patch-ao @@ -0,0 +1,58 @@ +$NetBSD: patch-ao,v 1.1 2006/04/28 13:52:06 joerg Exp $ + +--- SrcShared/EmStream.h.orig 2006-04-28 12:41:47.000000000 +0000 ++++ SrcShared/EmStream.h +@@ -90,7 +90,7 @@ class EmStream + + container.resize (numElements); + +- deque<T>::iterator iter = container.begin (); ++ typename deque<T>::iterator iter = container.begin (); + while (iter != container.end ()) + { + *this >> *iter; +@@ -108,7 +108,7 @@ class EmStream + + container.resize (numElements); + +- list<T>::iterator iter = container.begin (); ++ typename list<T>::iterator iter = container.begin (); + while (iter != container.end ()) + { + *this >> *iter; +@@ -126,7 +126,7 @@ class EmStream + + container.resize (numElements); + +- vector<T>::iterator iter = container.begin (); ++ typename vector<T>::iterator iter = container.begin (); + while (iter != container.end ()) + { + *this >> *iter; +@@ -143,7 +143,7 @@ class EmStream + + *this << numElements; + +- deque<T>::const_iterator iter = container.begin (); ++ typename deque<T>::const_iterator iter = container.begin (); + while (iter != container.end ()) + { + *this << *iter; +@@ -160,7 +160,7 @@ class EmStream + + *this << numElements; + +- list<T>::const_iterator iter = container.begin (); ++ typename list<T>::const_iterator iter = container.begin (); + while (iter != container.end ()) + { + *this << *iter; +@@ -177,7 +177,7 @@ class EmStream + + *this << numElements; + +- vector<T>::const_iterator iter = container.begin (); ++ typename vector<T>::const_iterator iter = container.begin (); + while (iter != container.end ()) + { + *this << *iter; diff --git a/emulators/palmosemulator/patches/patch-ap b/emulators/palmosemulator/patches/patch-ap new file mode 100644 index 00000000000..a6077279dd8 --- /dev/null +++ b/emulators/palmosemulator/patches/patch-ap @@ -0,0 +1,22 @@ +$NetBSD: patch-ap,v 1.1 2006/04/28 13:52:06 joerg Exp $ + +--- SrcShared/Miscellaneous.cpp.orig 2006-04-28 13:19:44.000000000 +0000 ++++ SrcShared/Miscellaneous.cpp +@@ -2687,7 +2687,7 @@ void FormatInteger (char* dest, uint32 i + // Get the thousands separator character(s). + + struct lconv* locale_data = localeconv (); +- char* thousands_sep = locale_data->thousands_sep; ++ const char* thousands_sep = locale_data->thousands_sep; + + if (strlen (thousands_sep) == 0) + { +@@ -2747,7 +2747,7 @@ string FormatInteger (uint32 integer) + // Get the thousands separator character(s). + + struct lconv* locale_data = localeconv (); +- char* thousands_sep = locale_data->thousands_sep; ++ const char* thousands_sep = locale_data->thousands_sep; + + if (strlen (thousands_sep) == 0) + { |