diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2011-03-10 23:33:06 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-03-11 02:10:47 +0100 |
commit | 3890de6815290df5de1ae520ec6a2fbe64ca9c31 (patch) | |
tree | f3d5b136f66fed1224dd9d5720e26d19db8fd305 /configure.ac | |
parent | 7486e2fd589c4e6e571132b63bc9491c62b6e19f (diff) | |
download | connman-3890de6815290df5de1ae520ec6a2fbe64ca9c31.tar.gz connman-3890de6815290df5de1ae520ec6a2fbe64ca9c31.tar.bz2 connman-3890de6815290df5de1ae520ec6a2fbe64ca9c31.zip |
tist: Initial plugin implementation
This is a plugin to support TI's shared transport driver.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bae9ce83..3452e9c0 100644 --- a/configure.ac +++ b/configure.ac @@ -280,6 +280,12 @@ AC_ARG_ENABLE(nmcompat, AM_CONDITIONAL(NMCOMPAT, test "${enable_nmcompat}" != "no") AM_CONDITIONAL(NMCOMPAT_BUILTIN, test "${enable_nmcompat}" = "builtin") +AC_ARG_ENABLE(tist, + AC_HELP_STRING([--enable-tist], [enable TI Shared Transport support]), + [enable_tist=${enableval}], [enable_tist="no"]) +AM_CONDITIONAL(TIST, test "${enable_tist}" != "no") +AM_CONDITIONAL(TIST_BUILTIN, test "${enable_tist}" = "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]), [stats_max_file_size=${withval}]) |