aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2002-12-29 05:21:44 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2002-12-29 05:21:44 +0000
commit83638f0f896dafb27a9ba86552980a41e58bfb9e (patch)
tree32f893b50b8772adf4a64bfb2ca630dec2fa96ec
parentc807fd461adcc7d010d57f6a0714e8664b906334 (diff)
downloadports-83638f0f896dafb27a9ba86552980a41e58bfb9e.tar.gz
ports-83638f0f896dafb27a9ba86552980a41e58bfb9e.zip
fix build on -current
PR: 46594 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=71971
-rw-r--r--mail/althea/files/patch-MIME.cpp11
-rw-r--r--mail/althea/files/patch-MIME.h10
-rw-r--r--mail/althea/files/patch-tolower.h10
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>