From: Luiz Augusto von Dentz Date: Sun, 5 Jan 2014 16:02:56 +0000 (+0200) Subject: plugins: Add initial code for service plugin X-Git-Tag: accepted/tizen/common/20140930.092521~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b444f8930a2635d52a676f0600e80828cc876c9;p=platform%2Fupstream%2Fbluez.git plugins: Add initial code for service plugin This plugin will be used to control services individually. --- diff --git a/Makefile.plugins b/Makefile.plugins index f0eada9..3ab27e2 100644 --- a/Makefile.plugins +++ b/Makefile.plugins @@ -119,3 +119,11 @@ plugins_sixaxis_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version \ -no-undefined @UDEV_LIBS@ plugins_sixaxis_la_CFLAGS = $(AM_CFLAGS) -fvisibility=hidden @UDEV_CFLAGS@ endif + +if SERVICE +plugin_LTLIBRARIES += plugins/service.la +plugins_service_la_SOURCES = plugins/service.c +plugins_service_la_LDFLAGS = $(AM_LDFLAGS) -module -avoid-version \ + -no-undefined +plugins_service_la_CFLAGS = $(AM_CFLAGS) -fvisibility=hidden +endif diff --git a/configure.ac b/configure.ac index d858ff6..6d31dd3 100644 --- a/configure.ac +++ b/configure.ac @@ -221,6 +221,10 @@ AC_ARG_ENABLE(sixaxis, AC_HELP_STRING([--enable-sixaxis], AM_CONDITIONAL(SIXAXIS, test "${enable_sixaxis}" = "yes" && test "${enable_udev}" != "no") +AC_ARG_ENABLE(service, AC_HELP_STRING([--enable-service], + [enable service plugin]), [enable_service=${enableval}]) +AM_CONDITIONAL(SERVICE, test "${enable_service}" = "yes") + if (test "${prefix}" = "NONE"); then dnl no prefix and no localstatedir, so default to /var if (test "$localstatedir" = '${prefix}/var'); then diff --git a/plugins/service.c b/plugins/service.c new file mode 100644 index 0000000..e63d8a8 --- /dev/null +++ b/plugins/service.c @@ -0,0 +1,44 @@ +/* + * + * BlueZ - Bluetooth protocol stack for Linux + * + * Copyright (C) 2014 Intel Corporation. + * + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "src/plugin.h" +#include "src/log.h" + +static int service_init(void) +{ + DBG(""); + + return 0; +} + +static void service_exit(void) +{ + DBG(""); +} + +BLUETOOTH_PLUGIN_DEFINE(service, VERSION, BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, + service_init, service_exit)