summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2012-10-03 15:18:29 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2012-10-03 22:44:51 +0300
commitfd1e9c58527f60a1c783d0031c0fa4693df8dd11 (patch)
treef5e52ff225dc3480d570b8e918f165987f292efa /acinclude.m4
parent94667c8290663eb79f4c6026fa5a278a89b6730d (diff)
downloadbluez-fd1e9c58527f60a1c783d0031c0fa4693df8dd11.tar.gz
Add initial neard plugin implementation
Initial implementation. Only register and unregister support.
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 9f4b11f11..4bac3f00d 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -189,6 +189,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [
dbusoob_enable=no
wiimote_enable=no
gatt_enable=no
+ neard_enable=no
AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization], [disable code optimization]), [
optimization_enable=${enableval}
@@ -299,6 +300,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [
gatt_enable=${enableval}
])
+ AC_ARG_ENABLE(neard, AC_HELP_STRING([--enable-neard], [compile with neard plugin]), [
+ neard_enable=${enableval}
+ ])
+
misc_cflags=""
misc_ldflags=""
@@ -350,4 +355,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [
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(NEARDPLUGIN, test "${neard_enable}" = "yes")
])