From 694f01921120bb2584b09b4ba502703cd8afd3f6 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 2 Sep 2008 19:17:55 -0300 Subject: Make methods related to external services into service plugin. --- acinclude.m4 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'acinclude.m4') diff --git a/acinclude.m4 b/acinclude.m4 index ff404bef..1991e4aa 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -181,6 +181,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [ input_enable=yes serial_enable=yes network_enable=yes + service_enable=yes tools_enable=yes hidd_enable=no pand_enable=no @@ -220,6 +221,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [ audio_enable=${enableval} ]) + AC_ARG_ENABLE(service, AC_HELP_STRING([--disable-service], [disable service plugin]), [ + service_enable=${enableval} + ]) + AC_ARG_ENABLE(gstreamer, AC_HELP_STRING([--enable-gstreamer], [enable GStreamer support]), [ gstreamer_enable=${enableval} ]) @@ -334,6 +339,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [ AM_CONDITIONAL(INPUTPLUGIN, test "${input_enable}" = "yes") AM_CONDITIONAL(SERIALPLUGIN, test "${serial_enable}" = "yes") AM_CONDITIONAL(NETWORKPLUGIN, test "${network_enable}" = "yes") + AM_CONDITIONAL(SERVICEPLUGIN, test "${service_enable}" = "yes") AM_CONDITIONAL(HIDD, test "${hidd_enable}" = "yes") AM_CONDITIONAL(PAND, test "${pand_enable}" = "yes") AM_CONDITIONAL(DUND, test "${dund_enable}" = "yes") -- cgit