[tracker] configure: Add --enable-meegotouch argument



commit d7ecc58f20ed786d0e7bec35f8d41e2744c44a42
Author: Carlos Garnacho <carlosg gnome org>
Date:   Wed Apr 13 17:32:53 2011 +0200

    configure: Add --enable-meegotouch argument
    
    Fixes GB#647548. The libmeegotouch was being masked behind
    --enable-maemo, which also serves the purpose of installing
    additional ontologies, these are now 2 separate arguments.

 configure.ac |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index c1bb174..7145086 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1039,7 +1039,13 @@ AM_CONDITIONAL(HAVE_EXEMPI, test "x$have_exempi" = "xyes")
 # Check for tracker-miner-fs: meegotouch, for MeeGo desktop files
 ####################################################################
 
-if test "x$enable_maemo" != "xno"; then
+AC_ARG_ENABLE(meegotouch,
+              AS_HELP_STRING([--enable-meegotouch],
+                             [enable libmeegotouch application extraction [[default=no]]]),
+             [enable_meegotouch="$enableval"],
+             [enable_meegotouch=no])
+
+if test "x$enable_meegotouch" != "xno"; then
    PKG_CHECK_MODULES(MEEGOTOUCH,
                      [meegotouch >= $MEEGOTOUCH_REQUIRED],
                      [have_meegotouch=yes],
@@ -2184,5 +2190,6 @@ Writeback:
 Frameworks / Options:
 
 	Support Maemo                           $enable_maemo
+	Support libmeegotouch                   $have_meegotouch
         Support Guaranteed Metadata             $enable_guarantee_metadata (e.g. guess nie:title from files)
 "



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]