From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Luiz Augusto von Dentz To: linux-bluetooth@vger.kernel.org Subject: [PATCH BlueZ 02/10] build: Add option to enable SAP profile Date: Fri, 11 Nov 2016 19:22:36 +0200 Message-Id: <1478884964-7543-3-git-send-email-luiz.dentz@gmail.com> In-Reply-To: <1478884964-7543-1-git-send-email-luiz.dentz@gmail.com> References: <1478884964-7543-1-git-send-email-luiz.dentz@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Luiz Augusto von Dentz This adds --enable-sap option dedicated to enabled sap plugin so it is no longer enabled with --enable-experimental leaving it to just enable experimental tools. --- Makefile.plugins | 2 +- configure.ac | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.plugins b/Makefile.plugins index 495cb88..39eb3a0 100644 --- a/Makefile.plugins +++ b/Makefile.plugins @@ -16,7 +16,7 @@ builtin_modules += neard builtin_sources += plugins/neard.c endif -if EXPERIMENTAL +if SAP builtin_modules += sap builtin_sources += profiles/sap/main.c profiles/sap/manager.h \ profiles/sap/manager.c profiles/sap/server.h \ diff --git a/configure.ac b/configure.ac index e1aa20a..ce57b63 100644 --- a/configure.ac +++ b/configure.ac @@ -144,6 +144,10 @@ AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-nfc], [enable NFC paring]), [enable_nfc=${enableval}]) AM_CONDITIONAL(NFC, test "${enable_nfc}" = "yes") +AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-sap], + [enable SAP profile]), [enable_sap=${enableval}]) +AM_CONDITIONAL(SAP, test "${enable_sap}" = "yes") + AC_ARG_ENABLE(tools, AC_HELP_STRING([--disable-tools], [disable Bluetooth tools]), [enable_tools=${enableval}]) AM_CONDITIONAL(TOOLS, test "${enable_tools}" != "no") -- 2.7.4