summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorBruna Moreira <bruna.moreira@openbossa.org>2011-09-21 08:46:10 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2011-09-22 20:05:06 +0900
commitd7925ed6c4bdca24140abe49a114dda0061d134e (patch)
tree067152f5d90ffb5de7e52695a8e08d4c4abc4b79 /acinclude.m4
parent8f769e9565430580a641302eefbcc20f6aa1b175 (diff)
downloadbluez-d7925ed6c4bdca24140abe49a114dda0061d134e.tar.gz
Add Phone Alert Server skeleton plugin
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 115cd903f..2097d7707 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -195,6 +195,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
sap_enable=no
proximity_enable=no
time_enable=no
+ alert_enable=no
service_enable=yes
health_enable=no
pnat_enable=no
@@ -251,6 +252,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
time_enable=${enableval}
])
+ AC_ARG_ENABLE(alert, AC_HELP_STRING([--enable-alert], [enable Phone Alert Profile plugin]), [
+ alert_enable=${enableval}
+ ])
+
AC_ARG_ENABLE(serial, AC_HELP_STRING([--disable-serial], [disable serial plugin]), [
serial_enable=${enableval}
])
@@ -403,6 +408,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AM_CONDITIONAL(SAPPLUGIN, test "${sap_enable}" = "yes")
AM_CONDITIONAL(PROXIMITYPLUGIN, test "${proximity_enable}" = "yes")
AM_CONDITIONAL(TIMEPLUGIN, test "${time_enable}" = "yes")
+ AM_CONDITIONAL(ALERTPLUGIN, test "${alert_enable}" = "yes")
AM_CONDITIONAL(SERVICEPLUGIN, test "${service_enable}" = "yes")
AM_CONDITIONAL(HEALTHPLUGIN, test "${health_enable}" = "yes")
AM_CONDITIONAL(MCAP, test "${health_enable}" = "yes")