From 81cc0b0cd58f8327d885a8e3f86628e5901a3457 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Wed, 9 Feb 2011 17:53:00 +0000 Subject: [PATCH] evas: make less noise when configuring Remove the following warning during bootstrap: configure.ac:790: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body Reference: http://www.flameeyes.eu/autotools-mythbuster/forwardporting/autoconf.html SVN revision: 56861 --- legacy/evas/m4/evas_check_loader.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/evas/m4/evas_check_loader.m4 b/legacy/evas/m4/evas_check_loader.m4 index 83b15b80b4..00a96185dd 100644 --- a/legacy/evas/m4/evas_check_loader.m4 +++ b/legacy/evas/m4/evas_check_loader.m4 @@ -114,7 +114,7 @@ if test "x${have_dep}" = "xyes" ; then [jpeg_CreateDecompress], [ evas_image_loader_[]$1[]_libs="-ljpeg" - AC_COMPILE_IFELSE([[ + AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include #include #include @@ -122,7 +122,7 @@ if test "x${have_dep}" = "xyes" ; then struct jpeg_decompress_struct decomp; decomp.region_x = 0; } - ]], + ])], [have_jpeg_region="yes"], [have_jpeg_region="no"]) ],