found 316277 0.9.24-2
severity 316277 serious
thanks

Hi,

It seems we're getting this same error again.

I was able to build it with the attached patch.  The proper way
to fix this would be changing all those code to stop using things
like __u64 and really using u_int64_t instead.


Kurt

--- directfb-0.9.24/include/dfb_types.h 2005-07-26 22:58:50.000000000 +0200
+++ directfb-0.9.24+patch/include/dfb_types.h   2006-04-13 21:36:03.000000000 
+0200
@@ -1,9 +1,10 @@
 #ifndef __DFB_TYPES_H__
 #define __DFB_TYPES_H__
 
-#include <sys/types.h>
+#include <asm/types.h>
 
 #ifndef USE_KOS
+#if 0
 
 #define __u8  u_int8_t
 #define __u16 u_int16_t
@@ -14,6 +15,7 @@
 #define __s16 int16_t
 #define __s32 int32_t
 #define __s64 int64_t
+#endif
 
 #else
 

Reply via email to