6 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] Re: Problems compilin...
FromSent OnAttachments
Carl St-JacquesSep 20, 2003 8:10 am 
Petri RiihikallioSep 20, 2003 10:31 am 
Sam VarshavchikSep 20, 2003 7:14 pm.txt
Carl St-JacquesSep 21, 2003 6:46 am 
Petri RiihikallioSep 21, 2003 7:13 am 
Paul DlugSep 21, 2003 7:30 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [maildropl] Re: Problems compiling of 1.6.1Actions...
From:Carl St-Jacques (carl@francolinux.ca)
Date:Sep 21, 2003 6:46:46 am
List:net.sourceforge.lists.courier-maildrop

Hi Sam,

Thanks a lot for the patch. I was able to compile maildrop 1.6.1 under RH 7.3.

Sam Varshavchik wrote:

Carl St-Jacques writes:

Hi,

I too experience problems to compile maildrop 1.6.1 under RedHat 7.3.

Compiling maildir.C In file included from /usr/include/g++-3/stl_tree.h:56,

I've identified a fix for this problem. Apply the following patch.

------------------------------------------------------------------------

Index: maildrop/mio.C =================================================================== RCS file: /cvsroot/courier/courier/maildrop/maildrop/mio.C,v retrieving revision 1.4 diff -U3 -r1.4 mio.C --- maildrop/mio.C 2 Aug 1999 05:02:26 -0000 1.4 +++ maildrop/mio.C 19 Sep 2003 22:59:24 -0000 @@ -220,7 +220,7 @@ return (*this); }

-MioStdio min(0), mout(1), merr(2); +MioStdio mout(1), merr(2);

MioStdio::MioStdio(int f) { @@ -241,4 +241,4 @@ return (n); }

-extern MioStdio min, mout, merr; +extern MioStdio mout, merr; Index: maildrop/mio.h =================================================================== RCS file: /cvsroot/courier/courier/maildrop/maildrop/mio.h,v retrieving revision 1.3 diff -U3 -r1.3 mio.h --- maildrop/mio.h 9 Sep 1999 05:03:28 -0000 1.3 +++ maildrop/mio.h 19 Sep 2003 22:59:24 -0000 @@ -77,6 +77,6 @@ void write(const char *p) { write(p, strlen(p)); } } ;

-extern MioStdio min, mout, merr; +extern MioStdio mout, merr;

#endif