0.7.6 tasks

Matthias Andree matthias.andree at gmx.de
Sat Oct 26 10:22:04 CEST 2002


On Sat, 26 Oct 2002, Clint Adams wrote:

> > This should fix the problem on s390/powerpc/arm.  I will test it
> > shortly.
> 
> It did indeed.  The following fixes the problem with ia64:

I must reject this patch. xmalloc is a never-return-NULL-but-abort
malloc() variant that ships with the code, please look at xmalloc.c.

Please try this patch on ia64 instead:

Index: lexer.l
===================================================================
RCS file: /cvsroot/bogofilter/bogofilter/lexer.l,v
retrieving revision 1.20
diff -u -r1.20 lexer.l
--- lexer.l	25 Oct 2002 01:38:42 -0000	1.20
+++ lexer.l	26 Oct 2002 08:20:54 -0000
@@ -11,8 +11,10 @@
 #include <stdlib.h>
 #include <ctype.h>
 #include <string.h>
+
 #include "config.h"
 #include "lexer.h"
+#include "xmalloc.h"
 
 // Our lexical analysis is different from Paul Graham's rules: 
 //

If it doesn't work, then please send me either a pointer to or send me
config.log, config.h and the full "make" or "make check" output -- if
it's short, it'll also be okay on the list.

-- 
Matthias Andree




More information about the bogofilter-dev mailing list