formatting

SVN revision: 58099
This commit is contained in:
Vincent Torri 2011-03-26 17:13:52 +00:00
parent 9cc1e2a01d
commit 9093a47081
1 changed files with 9 additions and 9 deletions

View File

@ -113,20 +113,20 @@ if test "x${have_dep}" = "xyes" ; then
AC_CHECK_LIB([jpeg], AC_CHECK_LIB([jpeg],
[jpeg_CreateDecompress], [jpeg_CreateDecompress],
[ [
evas_image_loader_[]$1[]_libs="-ljpeg" evas_image_loader_[]$1[]_libs="-ljpeg"
AC_COMPILE_IFELSE( AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM( [AC_LANG_PROGRAM(
[[ [[
#include <stdio.h> #include <stdio.h>
#include <jpeglib.h> #include <jpeglib.h>
#include <setjmp.h> #include <setjmp.h>
]], ]],
[[ [[
struct jpeg_decompress_struct decomp; struct jpeg_decompress_struct decomp;
decomp.region_x = 0; decomp.region_x = 0;
]])], ]])],
[have_jpeg_region="yes"], [have_jpeg_region="yes"],
[have_jpeg_region="no"]) [have_jpeg_region="no"])
], ],
[have_dep="no"] [have_dep="no"]
) )