-/* $Id: drv_Image.c,v 1.17 2006/02/08 04:55:04 reinelt Exp $
+/* $Id: drv_Image.c,v 1.18 2006/06/21 05:12:43 reinelt Exp $
*
* new style Image (PPM/PNG) Driver for LCD4Linux
*
*
*
* $Log: drv_Image.c,v $
+ * Revision 1.18 2006/06/21 05:12:43 reinelt
+ * added checks for libgd version 2 (thanks to Sam)
+ *
* Revision 1.17 2006/02/08 04:55:04 reinelt
* moved widget registration to drv_generic_graphic
*
#include <fcntl.h>
#include <sys/time.h>
+
#ifdef WITH_PNG
+
#ifdef HAVE_GD_GD_H
#include <gd/gd.h>
#else
#error "cannot compile PNG driver"
#endif
#endif
+
+#if GD2_VERS != 2
+#error "lcd4linux requires libgd version 2"
+#error "cannot compile PNG driver"
+#endif
+
#endif
{
int ret;
- info("%s: %s", Name, "$Revision: 1.17 $");
+ info("%s: %s", Name, "$Revision: 1.18 $");
/* real worker functions */
drv_generic_graphic_real_blit = drv_IMG_blit;
-/* $Id: widget_image.c,v 1.8 2006/06/20 08:50:59 reinelt Exp $
+/* $Id: widget_image.c,v 1.9 2006/06/21 05:12:43 reinelt Exp $
*
* image widget handling
*
*
*
* $Log: widget_image.c,v $
+ * Revision 1.9 2006/06/21 05:12:43 reinelt
+ * added checks for libgd version 2 (thanks to Sam)
+ *
* Revision 1.8 2006/06/20 08:50:59 reinelt
* widget_image linker error hopefully finally fixed
*
#endif
#endif
+#if GD2_VERS != 2
+#error "lcd4linux requires libgd version 2"
+#error "cannot compile image widget"
+#endif
+
#ifdef WITH_DMALLOC
#include <dmalloc.h>
#endif