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
[jpeg_CreateDecompress],
[
evas_image_loader_[]$1[]_libs="-ljpeg"
- AC_COMPILE_IFELSE([[
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
#include <stdio.h>
#include <jpeglib.h>
#include <setjmp.h>
struct jpeg_decompress_struct decomp;
decomp.region_x = 0;
}
- ]],
+ ])],
[have_jpeg_region="yes"],
[have_jpeg_region="no"])
],