Return-Path: From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= To: linux-bluetooth@vger.kernel.org Cc: vinicius.gomes@openbossa.org, claudio.takahasi@openbossa.org, =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= Subject: [PATCH BlueZ] hog: Fix selecting suspend backend Date: Fri, 26 Oct 2012 12:05:33 -0300 Message-Id: <1351263933-21676-1-git-send-email-jprvita@openbossa.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: The dummy backend was always being compiled and the --with-hog-suspend option was not being accepted by configure. Now the backend can be selected with --with-hog-suspend and the suspend implementation file is generated during compile time. --- .gitignore | 1 + Makefile.am | 5 ++++- acinclude.m4 | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b5c7356..27c4687 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ scripts/bluetooth.rules scripts/97-bluetooth.rules scripts/97-bluetooth-hid2hci.rules +profiles/input/suspend.c profiles/sap/sap.c profiles/cups/bluetooth diff --git a/Makefile.am b/Makefile.am index 35b1520..f4bc96f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -184,7 +184,10 @@ if HOGPLUGIN builtin_modules += hog builtin_sources += profiles/input/hog_manager.c profiles/input/hog_device.h \ profiles/input/hog_device.c profiles/input/uhid_copy.h \ - profiles/input/suspend-dummy.c profiles/input/suspend.h + profiles/input/suspend.h +builtin_nodist += profiles/input/suspend.c + +EXTRA_DIST += profiles/input/suspend-dummy.c endif if NETWORKPLUGIN diff --git a/acinclude.m4 b/acinclude.m4 index 4bac3f0..ddc8183 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -290,7 +290,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [ wiimote_enable=${enableval} ]) - AC_ARG_WITH(gatt, AC_HELP_STRING([--with-hog-suspend=DRIVER], [select HoG suspend driver]), [ + AC_ARG_WITH(hog_suspend, AC_HELP_STRING([--with-hog-suspend=DRIVER], [select HoG suspend driver]), [ hog_suspend_driver=${withval} ]) -- 1.7.11.7