From fd1e9c58527f60a1c783d0031c0fa4693df8dd11 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 3 Oct 2012 15:18:29 +0200 Subject: Add initial neard plugin implementation Initial implementation. Only register and unregister support. --- acinclude.m4 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'acinclude.m4') 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") ]) -- cgit v1.2.1