From bab5e501d16e8dc4cc3c99ad557b0e5cdf14ec01 Mon Sep 17 00:00:00 2001 From: lucas 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 git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@56861 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- m4/evas_check_loader.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m4/evas_check_loader.m4 b/m4/evas_check_loader.m4 index 83b15b8..00a9618 100644 --- a/m4/evas_check_loader.m4 +++ b/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"]) ], -- 2.7.4