diff options
author | Renato Botelho <garga@FreeBSD.org> | 2005-10-18 09:15:29 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2005-10-18 09:15:29 +0000 |
commit | 44164d263d05c3828de39803d6ad07259b076bb5 (patch) | |
tree | e4642dd44ccd7bbd59dbcb1b5af6630d004d054c /games/rtb/files | |
parent | a8fef3569c3619b77c61b3b4b93ef773799eb964 (diff) |
Notes
Diffstat (limited to 'games/rtb/files')
-rw-r--r-- | games/rtb/files/patch-include::List.h | 29 | ||||
-rw-r--r-- | games/rtb/files/patch-include::fdstream.h | 18 | ||||
-rw-r--r-- | games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp | 10 | ||||
-rw-r--r-- | games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp | 10 | ||||
-rw-r--r-- | games/rtb/files/patch-src::String.cc | 19 |
5 files changed, 0 insertions, 86 deletions
diff --git a/games/rtb/files/patch-include::List.h b/games/rtb/files/patch-include::List.h deleted file mode 100644 index 324c09e88897..000000000000 --- a/games/rtb/files/patch-include::List.h +++ /dev/null @@ -1,29 +0,0 @@ ---- include/List.h.orig Tue Sep 21 15:50:15 2004 -+++ include/List.h Tue Sep 21 17:22:32 2004 -@@ -96,7 +96,7 @@ - inline T* - ListIterator<T>::operator() () const - { -- if ( listp == NULL ) Error(true, "NULL pointer", "ListIterator::operator()"); -+ if ( listp == NULL ) Error(true, (const String&)"NULL pointer", (const String&)"ListIterator::operator()"); - - return listp->element; - } -@@ -105,7 +105,7 @@ - inline const ListIterator<T>& - ListIterator<T>::operator++ (int) - { -- if ( listp == NULL ) Error(true, "NULL pointer", "ListIterator::operator++"); -+ if ( listp == NULL ) Error(true, (const String&)"NULL pointer", (const String&)"ListIterator::operator++"); - listp = listp->next; - return *this; - } -@@ -114,7 +114,7 @@ - inline const ListIterator<T>& - ListIterator<T>::operator-- (int) - { -- if ( listp == NULL ) Error(true, "NULL pointer", "ListIterator::operator--"); -+ if ( listp == NULL ) Error(true, (const String&)"NULL pointer", (const String&)"ListIterator::operator--"); - listp = listp->prev; - return *this; - } diff --git a/games/rtb/files/patch-include::fdstream.h b/games/rtb/files/patch-include::fdstream.h deleted file mode 100644 index bbcf4906a665..000000000000 --- a/games/rtb/files/patch-include::fdstream.h +++ /dev/null @@ -1,18 +0,0 @@ ---- include/fdstream.h.orig Thu Sep 18 02:35:57 2003 -+++ include/fdstream.h Sat Mar 13 02:07:54 2004 -@@ -28,9 +28,15 @@ - #ifndef BOOST_FDSTREAM_HPP - #define BOOST_FDSTREAM_HPP - -+#if defined __GNUC__ && __GNUC__ < 3 -+#include <istream.h> -+#include <ostream.h> -+#include <streambuf.h> -+#else - #include <istream> - #include <ostream> - #include <streambuf> -+#endif - // for EOF: - #include <cstdio> - // for memmove(): diff --git a/games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp b/games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp deleted file mode 100644 index b662b3d1a3e7..000000000000 --- a/games/rtb/files/patch-rtb-team-framework::io::unixinstreambuf.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- rtb-team-framework/io/unixinstreambuf.cpp.orig Wed Nov 3 05:09:04 2004 -+++ rtb-team-framework/io/unixinstreambuf.cpp Fri Dec 17 01:33:22 2004 -@@ -29,6 +29,7 @@ - #include "../exceptions/keynotfoundexception.h" - #include "../exceptions/confignotloadedexception.h" - #include <sstream> -+#include <cerrno> - - /** - * Namespace diff --git a/games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp b/games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp deleted file mode 100644 index 60791975dd82..000000000000 --- a/games/rtb/files/patch-rtb-team-framework::io::unixoutstreambuf.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- rtb-team-framework/io/unixoutstreambuf.cpp.orig Wed Nov 3 05:09:04 2004 -+++ rtb-team-framework/io/unixoutstreambuf.cpp Fri Dec 17 01:34:44 2004 -@@ -26,6 +26,7 @@ - - #include "unixoutstreambuf.h" - #include <sstream> -+#include <cerrno> - - /** - * Namespace diff --git a/games/rtb/files/patch-src::String.cc b/games/rtb/files/patch-src::String.cc deleted file mode 100644 index 6fa78030e0ba..000000000000 --- a/games/rtb/files/patch-src::String.cc +++ /dev/null @@ -1,19 +0,0 @@ ---- src/String.cc.orig Fri Nov 12 22:04:38 2004 -+++ src/String.cc Tue Jan 11 02:28:46 2005 -@@ -21,12 +21,13 @@ - #include <config.h> - #endif - --#include <string.h> -+#include <cstring> - #include <iostream> - //#include <strstream> - #include <iomanip> --#include <stdlib.h> --#include <ctype.h> -+#include <cstdio> -+#include <cstdlib> -+#include <cctype> - - using namespace std; - |