Am Freitag, den 09.02.2007, 00:39 -0800 schrieb Devin Carraway: > FWIW, liferea 1.2.5 was released recently; its changelist cites the fixing of > a crash on 64-bit platforms. I've been using it for the past five or six days > and haven't crashed it yet, which is better than 1.0.27-1 ever did. > > This deep in the Etch freeze it's probably not reasonable to try to do a major > update, but the fix itself might be easily backportable.
It could be worth to backport it. The simple patch is available from here (md5.patch): http://sourceforge.net/tracker/download.php?group_id=87005&atid=581684&file_id=213406&aid=1636563 I also attached the file.
Index: src/net/md5.h =================================================================== --- src/net/md5.h (Revision 2734) +++ src/net/md5.h (Arbeitskopie) @@ -30,12 +30,10 @@ #ifndef MD5_H #define MD5_H -#ifdef __alpha -typedef unsigned int uint32; -#else -typedef unsigned long uint32; -#endif +#include <glib.h> +#define uint32 guint32 + struct MD5Context { uint32 buf[4]; uint32 bits[2];