summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-11-09 20:30:54 +0100
committerMarcel Holtmann <marcel@holtmann.org>2012-11-09 20:30:54 +0100
commitc4858bbf246e266040eb98f81eb076ef796de7d8 (patch)
tree660577369a571d21b22bf5520020c42d37600daf /acinclude.m4
parentfe6a6115059a62af7163f7472b51e99460cc5999 (diff)
downloadbluez-c4858bbf246e266040eb98f81eb076ef796de7d8.tar.gz
build: Always enable GATT support
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m48
1 files changed, 1 insertions, 7 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 0694429e2..7984a0bd3 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -171,7 +171,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [
hog_suspend_driver=dummy
dbusoob_enable=no
wiimote_enable=no
- gatt_enable=no
neard_enable=no
AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization], [disable code optimization]), [
@@ -275,10 +274,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AC_SUBST([HOG_SUSPEND_DRIVER], [suspend-${hog_suspend_driver}.c])
- AC_ARG_ENABLE(gatt, AC_HELP_STRING([--enable-gatt], [enable gatt module]), [
- gatt_enable=${enableval}
- ])
-
AC_ARG_ENABLE(neard, AC_HELP_STRING([--enable-neard], [compile with neard plugin]), [
neard_enable=${enableval}
])
@@ -330,7 +325,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [
AM_CONDITIONAL(DATAFILES, test "${datafiles_enable}" = "yes")
AM_CONDITIONAL(DBUSOOBPLUGIN, test "${dbusoob_enable}" = "yes")
AM_CONDITIONAL(WIIMOTEPLUGIN, test "${wiimote_enable}" = "yes")
- AM_CONDITIONAL(GATTMODULES, test "${gatt_enable}" = "yes")
- AM_CONDITIONAL(HOGPLUGIN, test "${gatt_enable}" = "yes" && test "${input_enable}" = "yes")
+ AM_CONDITIONAL(HOGPLUGIN, test "${input_enable}" = "yes")
AM_CONDITIONAL(NEARDPLUGIN, test "${neard_enable}" = "yes")
])