diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-12-29 05:21:44 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-12-29 05:21:44 +0000 |
commit | 83638f0f896dafb27a9ba86552980a41e58bfb9e (patch) | |
tree | 32f893b50b8772adf4a64bfb2ca630dec2fa96ec | |
parent | c807fd461adcc7d010d57f6a0714e8664b906334 (diff) | |
download | ports-83638f0f896dafb27a9ba86552980a41e58bfb9e.tar.gz ports-83638f0f896dafb27a9ba86552980a41e58bfb9e.zip |
Notes
-rw-r--r-- | mail/althea/files/patch-MIME.cpp | 11 | ||||
-rw-r--r-- | mail/althea/files/patch-MIME.h | 10 | ||||
-rw-r--r-- | mail/althea/files/patch-tolower.h | 10 |
3 files changed, 31 insertions, 0 deletions
diff --git a/mail/althea/files/patch-MIME.cpp b/mail/althea/files/patch-MIME.cpp new file mode 100644 index 000000000000..5bb9e9204ba3 --- /dev/null +++ b/mail/althea/files/patch-MIME.cpp @@ -0,0 +1,11 @@ +--- MIME.cpp.orig Wed Jan 23 02:30:15 2002 ++++ MIME.cpp Fri Dec 27 03:56:30 2002 +@@ -91,7 +91,7 @@ + } + + void check(unsigned int convertedVal, ifstream &fileIn, int loc, int counter) { +- unsigned char c; ++ char c; + + fileIn.get(c); + if ((unsigned int)c!=convertedVal) { diff --git a/mail/althea/files/patch-MIME.h b/mail/althea/files/patch-MIME.h new file mode 100644 index 000000000000..2215bb630d7f --- /dev/null +++ b/mail/althea/files/patch-MIME.h @@ -0,0 +1,10 @@ +--- MIME.h.orig Wed Jan 23 02:30:15 2002 ++++ MIME.h Fri Dec 27 03:28:03 2002 +@@ -1,5 +1,7 @@ + #ifndef MIME_H + #define MIME_H ++namespace std {}; ++using namespace std; + + + #include <string> diff --git a/mail/althea/files/patch-tolower.h b/mail/althea/files/patch-tolower.h new file mode 100644 index 000000000000..79caf3377034 --- /dev/null +++ b/mail/althea/files/patch-tolower.h @@ -0,0 +1,10 @@ +--- tolower.h.orig Wed Jan 23 02:30:15 2002 ++++ tolower.h Fri Dec 27 03:27:01 2002 +@@ -1,5 +1,7 @@ + #ifndef TOLOWER_H + #define TOLOWER_H ++namespace std {}; ++using namespace std; + + #include <iostream> + #include <string> |