summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2011-03-26 12:27:09 +0100
committerJohan Hedberg <johan.hedberg@nokia.com>2011-03-27 22:58:13 +0300
commitd812870321fb4b7f7f22363b226d3498d817d9fb (patch)
tree30ebc919542a557fad4c97e1d1a99ff87d73a4e5 /acinclude.m4
parent23586efc94e7b04f002c103b2f6bd8068fff6ca9 (diff)
downloadbluez-d812870321fb4b7f7f22363b226d3498d817d9fb.tar.gz
Add D-Bus OOB plugin
A sample OOB plugin that directly exposes OOB functionality over D-Bus.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m46
1 files changed, 6 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index faa7f7cb1..69e07405d 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -206,6 +206,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
telephony_driver=dummy
maemo6_enable=no
sap_driver=dummy
+ dbusoob_enable=no
AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization], [disable code optimization]), [
optimization_enable=${enableval}
@@ -338,6 +339,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
maemo6_enable=${enableval}
])
+ AC_ARG_ENABLE(dbusoob, AC_HELP_STRING([--enable-dbusoob], [compile with D-Bus OOB plugin]), [
+ dbusoob_enable=${enableval}
+ ])
+
AC_ARG_ENABLE(hal, AC_HELP_STRING([--enable-hal], [Use HAL to determine adapter class]), [
hal_enable=${enableval}
])
@@ -396,4 +401,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AM_CONDITIONAL(UDEVRULES, test "${udevrules_enable}" = "yes")
AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes")
AM_CONDITIONAL(MAEMO6PLUGIN, test "${maemo6_enable}" = "yes")
+ AM_CONDITIONAL(DBUSOOBPLUGIN, test "${dbusoob_enable}" = "yes")
])