aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorVinicius Costa Gomes <vinicius.gomes@openbossa.org>2010-05-25 19:01:23 -0300
committerJohan Hedberg <johan.hedberg@nokia.com>2010-08-09 18:06:43 -0400
commitc0abb9dc3926fb58aea28544b8aab724038bd358 (patch)
tree0ba34775b88ddacd1b742ede3bcca970f3e7b204 /acinclude.m4
parentdf3c8e1ebb8d6cdf0e3cfe1cde16d2db8a75871c (diff)
downloadbluez-c0abb9dc3926fb58aea28544b8aab724038bd358.tar.gz
Add stubs for the attribute server
This plugin will have the implementation of a Generic Attribute Protocol server over Bluetooth Basic Rate and BLE. For BR/EDR this plugin will register the service record. GATT database will be located in the BlueZ "core", this plugin will contain only calls to add and change attributes.
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 f5fdd666..22c2e2c0 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -168,6 +168,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
network_enable=yes
service_enable=yes
pnat_enable=no
+ attrib_enable=no
tracer_enable=no
tools_enable=yes
hidd_enable=no
@@ -220,6 +221,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
pnat_enable=${enableval}
])
+ AC_ARG_ENABLE(attrib, AC_HELP_STRING([--enable-attrib], [enable attrib plugin]), [
+ attrib_enable=${enableval}
+ ])
+
AC_ARG_ENABLE(gstreamer, AC_HELP_STRING([--enable-gstreamer], [enable GStreamer support]), [
gstreamer_enable=${enableval}
])
@@ -330,6 +335,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AM_CONDITIONAL(SERIALPLUGIN, test "${serial_enable}" = "yes")
AM_CONDITIONAL(NETWORKPLUGIN, test "${network_enable}" = "yes")
AM_CONDITIONAL(SERVICEPLUGIN, test "${service_enable}" = "yes")
+ AM_CONDITIONAL(ATTRIBPLUGIN, test "${attrib_enable}" = "yes")
AM_CONDITIONAL(ECHOPLUGIN, test "no" = "yes")
AM_CONDITIONAL(PNATPLUGIN, test "${pnat_enable}" = "yes")
AM_CONDITIONAL(TRACER, test "${tracer_enable}" = "yes")