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
This commit is contained in:
Lucas De Marchi 2011-02-09 17:53:00 +00:00
parent 01a9d81096
commit 81cc0b0cd5
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ if test "x${have_dep}" = "xyes" ; then
[jpeg_CreateDecompress], [jpeg_CreateDecompress],
[ [
evas_image_loader_[]$1[]_libs="-ljpeg" evas_image_loader_[]$1[]_libs="-ljpeg"
AC_COMPILE_IFELSE([[ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
#include <stdio.h> #include <stdio.h>
#include <jpeglib.h> #include <jpeglib.h>
#include <setjmp.h> #include <setjmp.h>
@ -122,7 +122,7 @@ if test "x${have_dep}" = "xyes" ; then
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"])
], ],