This email list is read-only. Emails sent to this list will be discarded ---------------------------------- bootstrap-configure | 1 + configure.ac | 4 ++++ plugins/Makefile.am | 7 +++++++ plugins/ospm.c | 40 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 52 insertions(+), 0 deletions(-)
New commits: commit 8be7c88e4db7281e2660e0b04bc015e7ad696481 Author: Marcel Holtmann <[email protected]> Date: Fri Jan 30 15:45:06 2009 +0100 Add skeleton for OSPM plugin Diff in this email is a maximum of 400 lines. diff --git a/bootstrap-configure b/bootstrap-configure index 3264b32..90e6947 100755 --- a/bootstrap-configure +++ b/bootstrap-configure @@ -31,5 +31,6 @@ fi --enable-hso \ --enable-ppp \ --enable-udev \ + --enable-ospm \ --enable-polkit \ --enable-client $* diff --git a/configure.ac b/configure.ac index 846ddcb..eeaa3d7 100644 --- a/configure.ac +++ b/configure.ac @@ -203,6 +203,10 @@ AC_SUBST(UDEV_CFLAGS) AC_SUBST(UDEV_LIBS) AM_CONDITIONAL(UDEV, test "${enable_udev}" = "yes") +AC_ARG_ENABLE(ospm, AC_HELP_STRING([--enable-ospm], + [enable OSPM support]), [enable_ospm=${enableval}]) +AM_CONDITIONAL(OSPM, test "${enable_ospm}" = "yes") + AC_ARG_ENABLE(polkit, AC_HELP_STRING([--enable-polkit], [enable PolicyKit support]), [enable_polkit=${enableval}]) if (test "${enable_polkit}" = "yes"); then diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 0bda028..4c43ea5 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -103,6 +103,13 @@ policy_DATA = connman.policy endif endif +if OSPM +plugin_LTLIBRARIES += ospm.la + +polkit_la_SOURCES = ospm.c +polkit_la_CFLAGS = @GDBUS_CFLAGS@ +endif + if FAKE plugin_LTLIBRARIES += fake.la diff --git a/plugins/ospm.c b/plugins/ospm.c new file mode 100644 index 0000000..87f18c6 --- /dev/null +++ b/plugins/ospm.c @@ -0,0 +1,40 @@ +/* + * + * Connection Manager + * + * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * 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 <config.h> +#endif + +#define CONNMAN_API_SUBJECT_TO_CHANGE +#include <connman/plugin.h> +#include <connman/log.h> + +static int ospm_init(void) +{ + return 0; +} + +static void ospm_exit(void) +{ +} + +CONNMAN_PLUGIN_DEFINE(ospm, "OSPM notification plugin", VERSION, + ospm_init, ospm_exit) _______________________________________________ Commits mailing list [email protected] https://lists.moblin.org/mailman/listinfo/commits
