davemds pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=49fbdc1da98757ca08a7f2fa1f6396127bb33747

commit 49fbdc1da98757ca08a7f2fa1f6396127bb33747
Author: Dave Andreoli <d...@gurumeditation.it>
Date:   Sat Jun 4 20:19:54 2016 +0200

    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 da9d7d2..b0ec1a2 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

-- 


Reply via email to