aboutsummaryrefslogtreecommitdiffstats
path: root/mail/nullmailer
diff options
context:
space:
mode:
authorclive <clive@FreeBSD.org>2004-08-01 16:53:57 +0800
committerclive <clive@FreeBSD.org>2004-08-01 16:53:57 +0800
commit5ae5c254a4518ee416c57a5ab3c1de4dda96e213 (patch)
tree09d9bc6dea30dc5693cd032c350e186d7d5cd79e /mail/nullmailer
parent80f0af047708633301d1c475e621d7436814d9c9 (diff)
downloadfreebsd-ports-gnome-5ae5c254a4518ee416c57a5ab3c1de4dda96e213.tar.gz
freebsd-ports-gnome-5ae5c254a4518ee416c57a5ab3c1de4dda96e213.tar.zst
freebsd-ports-gnome-5ae5c254a4518ee416c57a5ab3c1de4dda96e213.zip
Post gcc 3.4.2 fixup.
Diffstat (limited to 'mail/nullmailer')
-rw-r--r--mail/nullmailer/files/patch-lib-list.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/mail/nullmailer/files/patch-lib-list.h b/mail/nullmailer/files/patch-lib-list.h
new file mode 100644
index 000000000000..f4244c8cf168
--- /dev/null
+++ b/mail/nullmailer/files/patch-lib-list.h
@@ -0,0 +1,35 @@
+--- lib/list.h~ Sun Aug 1 15:46:43 2004
++++ lib/list.h Sun Aug 1 16:26:21 2004
+@@ -18,8 +18,8 @@
+ typedef list_node<T> node;
+ typedef list_iterator<T> iter;
+ typedef const_list_iterator<T> const_iter;
+- friend class iter;
+- friend class const_iter;
++ friend class list_iterator<T>;
++ friend class const_list_iterator<T>;
+
+ list()
+ : head(0), tail(0), cnt(0)
+@@ -111,8 +111,8 @@
+ }
+ private:
+ const list<T>& lst;
+- const list<T>::node* prev;
+- const list<T>::node* curr;
++ const typename list<T>::node* prev;
++ const typename list<T>::node* curr;
+ };
+
+ template<class T>
+@@ -164,8 +164,8 @@
+ }
+ private:
+ list<T>& lst;
+- list<T>::node* prev;
+- list<T>::node* curr;
++ typename list<T>::node* prev;
++ typename list<T>::node* curr;
+ };
+
+ template<class T>