It seems you forgot to really attach it. Could you please send it?
Attatched
Gosh, I hate to see different gcc version act so differently. The package
compiled without any problem on my system.
I think it's more an issue of different architectures than different gcc versions.
Index: kacpimon-20081214/input_layer.c
===================================================================
--- kacpimon-20081214.orig/input_layer.c 2009-05-15 12:28:14.000000000 +0100
+++ kacpimon-20081214/input_layer.c 2009-05-18 02:20:39.000000000 +0100
@@ -134,8 +134,8 @@
if (nbytes != sizeof(event)) {
printf("Input Layer unexpected Length\n");
- printf(" Expected: %d Got: %d\n",
- sizeof(event), nbytes);
+ printf(" Expected: %ld Got: %zd\n",
+ (long)sizeof(event), nbytes);
return;
}