the patch recently that added '#include <Imlib2.h>' to src/lib/image.h didnt cover the fact that X_DISPLAY_MISSING needs to be defined when BUILD_X11 is not defined ... find attached a tiny patch to fix this -mike
Index: src/lib/image.h =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/imlib2/src/lib/image.h,v retrieving revision 1.2 diff -u -r1.2 image.h --- src/lib/image.h 16 Jan 2005 18:23:47 -0000 1.2 +++ src/lib/image.h 22 Feb 2005 23:52:42 -0000 @@ -3,7 +3,9 @@ #include "common.h" #ifdef BUILD_X11 -#include <X11/Xlib.h> +# include <X11/Xlib.h> +#else +# define X_DISPLAY_MISSING #endif #include <dlfcn.h>