|
From: Enlightenment S. <no-...@en...> - 2011-05-23 06:45:48
|
Log: Evas: Fix compilation with libjpeg 8 on Windows. Author: caro Date: 2011-05-22 23:45:42 -0700 (Sun, 22 May 2011) New Revision: 59610 Trac: http://trac.enlightenment.org/e/changeset/59610 Modified: branches/evas-1.0/ChangeLog branches/evas-1.0/src/modules/loaders/jpeg/evas_image_load_jpeg.c Modified: branches/evas-1.0/ChangeLog =================================================================== --- branches/evas-1.0/ChangeLog 2011-05-23 06:45:19 UTC (rev 59609) +++ branches/evas-1.0/ChangeLog 2011-05-23 06:45:42 UTC (rev 59610) @@ -109,3 +109,6 @@ * Fix SVG loader 2 phase loader having differing scale down code for first and 2nd phase. Resulted in crash when loading some SVGs +2011-05-23 Vincent Torri + + * Fix compilation with libjpeg 8 on Windows. Modified: branches/evas-1.0/src/modules/loaders/jpeg/evas_image_load_jpeg.c =================================================================== --- branches/evas-1.0/src/modules/loaders/jpeg/evas_image_load_jpeg.c 2011-05-23 06:45:19 UTC (rev 59609) +++ branches/evas-1.0/src/modules/loaders/jpeg/evas_image_load_jpeg.c 2011-05-23 06:45:42 UTC (rev 59610) @@ -3,13 +3,14 @@ #endif #include <stdio.h> -#include <jpeglib.h> -#include <setjmp.h> #ifdef HAVE_EVIL # include <Evil.h> #endif +#include <setjmp.h> +#include <jpeglib.h> + #include "evas_common.h" #include "evas_private.h" |