Hi, It seems that I was able to solve the compilation bug just by including the directfb.h after linux/fb.h instead of before. The corresponding patch is thus as follows:
*** splashy-0.1.7.orig/src/video.c 2005-12-26 11:52:48.000000000 +0100 --- splashy-0.1.7/src/video.c 2006-04-04 17:14:17.000000000 +0200 *************** *** 27,33 **** #endif #include <stdlib.h> /* abs() */ - #include <directfb.h> #include <stdio.h> #include <string.h> #include <time.h> /* nanosleep() */ --- 27,32 ---- *************** *** 36,41 **** --- 35,41 ---- #include <errno.h> #include <sys/ioctl.h> #include <linux/fb.h> + #include <directfb.h> #include "common_macros.h" #include "xml_parser.h" #include "xml_config.h" It seems to solve the issue on AMD64 - the package compiles fine and works as expected on my x86-64 system. Hope this helps ! -- Yann Chachkoff ----------------------- GPG Key 2006: http://keyserver.veridis.com:11371/export?id=-43113965597490782 Fingerprint : C224 F1F9 9025 4FC7 987D 05BB FF66 D413 A3B4 01A2 ----------------------- Life is what happens to you when you're busy making other plans. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

