From 14c11be1ccdba6609801c287544b264017e61816 Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Fri, 12 Jun 2009 18:39:35 +0300 Subject: [PATCH] core: configure option to enable maemo support Currently it doesn't do anything. --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 3bdc0ed..69ae244 100644 --- a/configure.ac +++ b/configure.ac @@ -104,6 +104,11 @@ fi AC_SUBST(VAPIDIR) +# Maemo support +AC_ARG_ENABLE(maemo, + [ --enable-maemo enable maemo support],, + enable_maemo=no) + # Debugging AC_ARG_ENABLE(debug, [ --enable-debug enable debugging],, @@ -206,6 +211,7 @@ AC_ARG_ENABLE(mediathek-plugin, AC_SUBST(abs_top_builddir) AM_CONDITIONAL([UNINSTALLED], [test "x$enable_uninstalled" = "xyes"]) +AM_CONDITIONAL([ENABLE_MAEMO], [test "x$enable_maemo" = "xyes"]) AM_CONDITIONAL([BUILD_TEST_PLUGIN], [test "x$enable_test_plugin" = "xyes"]) AM_CONDITIONAL([BUILD_TRACKER_PLUGIN], [test "x$enable_tracker_plugin" = "xyes"]) -- 2.7.4