From 9fdaefb00db2cb24e43200e24c167c610335e583 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Sun, 12 Aug 2012 23:18:52 +0000 Subject: [PATCH] add check at configure, add info to README. SVN revision: 75178 --- README | 19 +++++++++++++++++-- configure.ac | 7 +++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/README b/README index c85cb9b..89a0ec5 100644 --- a/README +++ b/README @@ -3,11 +3,26 @@ ConnMan User Interface in EFL REQUIREMENTS ============ - * Python-Elementary >= 0.7.3 - * Python-E_DBus >= 0.7.3 + * Python-Elementary >= 1.7.0 + * Python-E_DBus >= 1.7.0 * Python >= 2.7 +RUNNING +======= + +Executing econnman without arguments will start it WITHOUT the agent +support. Any requested interaction will be left to existing agents, if +any. This means that if you need to input passwords, it will use +another agent. + +If you do not have another agent and need to type in passwords, then +start econnman with the agent support: + + econnman-bin --agent + + + BUILDING AND INSTALLING ======================= diff --git a/configure.ac b/configure.ac index 1b963aa..4474315 100644 --- a/configure.ac +++ b/configure.ac @@ -9,6 +9,13 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_PATH_PYTHON([2.7]) EFL_WITH_BIN([edje], [edje-cc], [edje_cc]) +# not strictly needed during compile, but let's force this check +PKG_PROG_PKG_CONFIG +PKG_CHECK_MODULES([PY_EFL], [ + python-elementary >= 1.7.0 + python-edbus >= 1.7.0 +]) + AC_CONFIG_FILES([ Makefile ])