diff options
author | Daniel Wagner <daniel.wagner@bmw-carit.de> | 2012-12-05 11:44:59 +0200 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-12-05 12:47:48 +0200 |
commit | c4b7e443238e371cf4a13f0ebcde44b8161655ce (patch) | |
tree | ccacfe7529e51ae6a098ab7c22347a25713836e8 /configure.ac | |
parent | cb523a7775ed1b5f116e738711c27b623f347531 (diff) | |
download | connman-c4b7e443238e371cf4a13f0ebcde44b8161655ce.tar.gz connman-c4b7e443238e371cf4a13f0ebcde44b8161655ce.tar.bz2 connman-c4b7e443238e371cf4a13f0ebcde44b8161655ce.zip |
session_policy_local: Rename session_policy_ivi
On popular request the plugin is renamed. The plugin is reading
local files and has nothing to do with IVI.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 76c1a18d..4d71f9c4 100644 --- a/configure.ac +++ b/configure.ac @@ -258,11 +258,11 @@ AC_ARG_ENABLE(session-policy, AM_CONDITIONAL(SESSION_POLICY, test "${enable_session_policy}" != "no") AM_CONDITIONAL(SESSION_POLICY_BUILTIN, test "${enable_session_policy}" = "builtin") -AC_ARG_ENABLE(session-policy-ivi, - AC_HELP_STRING([--enable-session-policy-ivi], [enable IVI Session policy configuration support]), - [enable_session_policy_ivi=${enableval}], [enable_session_policy_ivi="no"]) -AM_CONDITIONAL(SESSION_POLICY_IVI, test "${enable_session_policy_ivi}" != "no") -AM_CONDITIONAL(SESSION_POLICY_IVI_BUILTIN, test "${enable_session_policy_ivi}" = "builtin") +AC_ARG_ENABLE(session-policy-local, + AC_HELP_STRING([--enable-session-policy-local], [enable local file Session policy configuration support]), + [enable_session_policy_local=${enableval}], [enable_session_policy_local="no"]) +AM_CONDITIONAL(SESSION_POLICY_LOCAL, test "${enable_session_policy_local}" != "no") +AM_CONDITIONAL(SESSION_POLICY_LOCAL_BUILTIN, test "${enable_session_policy_local}" = "builtin") AC_ARG_WITH(stats-max-file-size, AC_HELP_STRING([--with-stats-max-file-size=SIZE], [Maximal size of a statistics round robin file]), |