From 49fbdc1da98757ca08a7f2fa1f6396127bb33747 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Sat, 4 Jun 2016 20:19:54 +0200 Subject: [PATCH] Fix report for image loaders In the final report we want to show if the loader is enabled, not if it's wanted --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index da9d7d2a1d..b0ec1a2bbb 100644 --- a/configure.ac +++ b/configure.ac @@ -2895,10 +2895,10 @@ AM_CONDITIONAL([HAVE_SPECTRE], [test "x${have_spectre}" = "xyes"]) AM_CONDITIONAL([HAVE_LIBRAW], [test "x${have_raw}" = "xyes"]) AM_CONDITIONAL([HAVE_RSVG], [test "x${have_rsvg}" = "xyes"]) -EFL_ADD_FEATURE([EVAS_LOADER], [poppler], [${want_poppler}]) -EFL_ADD_FEATURE([EVAS_LOADER], [spectre], [${want_spectre}]) -EFL_ADD_FEATURE([EVAS_LOADER], [raw], [${want_libraw}]) -EFL_ADD_FEATURE([EVAS_LOADER], [rsvg], [${want_rsvg}]) +EFL_ADD_FEATURE([EVAS_LOADER], [poppler], [${have_poppler}]) +EFL_ADD_FEATURE([EVAS_LOADER], [spectre], [${have_spectre}]) +EFL_ADD_FEATURE([EVAS_LOADER], [raw], [${have_raw}]) +EFL_ADD_FEATURE([EVAS_LOADER], [rsvg], [${have_rsvg}]) EFL_LIB_END([Evas]) #### End of Evas