> > > This make error which was described on [Thu, 04 Mar 2004 07:05:13 +0200] > still occurs. Can't someone find an appropriate and permenant fix for > this. > > I have essentially the same set up as mentioned, but some newer required > tools. The problem is the same. > > pop3_apop.c:98: error: `ECANCELED' undeclared (first use in this function) > > Ref: http://lists.gnu.org/archive/html/bug-mailutils/2004-03/msg00000.html > > Someone on the list wrote: > "ECANCELED is not declared in errno.h. I'd like to see the entire > contents of this header, this could help me find the proper replacement > for the macro." > > Was this ever done? >
I believe ECANCELED is an error number define by POSIX and accepted on almost all systems. The only problematic platform I remember was Cygwin, maybe the configure script should try and reset that number to something else #define ECANCELED EINTR #define ECANCELED EACESS #define ECANCELED 100000 _______________________________________________ Bug-mailutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-mailutils
