diff --git a/package/jimmy/nullmailer/no-deprecated.patch b/package/jimmy/nullmailer/no-deprecated.patch new file mode 100644 index 000000000..65f2cc446 --- /dev/null +++ b/package/jimmy/nullmailer/no-deprecated.patch @@ -0,0 +1,24 @@ +--- ./lib/list.h.orig 2002-12-16 22:24:27.000000000 +0200 ++++ ./lib/list.h 2004-06-12 13:28:00.069138384 +0300 +@@ -111,8 +111,8 @@ + } + private: + const list& lst; +- const list::node* prev; +- const list::node* curr; ++ const typename list::node* prev; ++ const typename list::node* curr; + }; + + template +@@ -164,8 +164,8 @@ + } + private: + list& lst; +- list::node* prev; +- list::node* curr; ++ typename list::node* prev; ++ typename list::node* curr; + }; + + template