summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorSantiago Carot-Nemesio <sancane@gmail.com>2010-09-18 09:58:32 +0200
committerJohan Hedberg <johan.hedberg@nokia.com>2010-09-19 10:37:07 +0300
commitc253e8445376db0c94cca1bdbf95d1f707bc5813 (patch)
treedf3c9147053bc1b2a6dfda0a647c9c2ac30c88b9 /acinclude.m4
parent73d16df5fccdfbeee8564bb4a6d22cb7d8442220 (diff)
downloadbluez-c253e8445376db0c94cca1bdbf95d1f707bc5813.tar.gz
Remove --enable-mcap from configure command line options
Only plugins are in charge of switch on MCAP if they require it to work.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m47
1 files changed, 1 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 1df93dba3..287f07df5 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -176,7 +176,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [
network_enable=yes
service_enable=yes
health_enable=no
- mcap_enable=no
pnat_enable=no
attrib_enable=no
tracer_enable=no
@@ -231,10 +230,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [
health_enable=${enableval}
])
- AC_ARG_ENABLE(mcap, AC_HELP_STRING([--enable-mcap], [enable mcap support]), [
- mcap_enable=${enableval}
- ])
-
AC_ARG_ENABLE(pnat, AC_HELP_STRING([--enable-pnat], [enable pnat plugin]), [
pnat_enable=${enableval}
])
@@ -358,7 +353,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AM_CONDITIONAL(NETWORKPLUGIN, test "${network_enable}" = "yes")
AM_CONDITIONAL(SERVICEPLUGIN, test "${service_enable}" = "yes")
AM_CONDITIONAL(HEALTHPLUGIN, test "${health_enable}" = "yes")
- AM_CONDITIONAL(MCAP, test "${mcap_enable}" = "yes" || test "${health_enable}" = "yes")
+ AM_CONDITIONAL(MCAP, test "${health_enable}" = "yes")
AM_CONDITIONAL(HAL, test "${hal_enable}" = "yes")
AM_CONDITIONAL(ATTRIBPLUGIN, test "${attrib_enable}" = "yes")
AM_CONDITIONAL(ECHOPLUGIN, test "no" = "yes")