endif
endif
+if MOBLIN
+if MOBLIN_BUILTIN
+builtin_modules += moblin
+builtin_sources += plugins/moblin.c
+else
+plugin_LTLIBRARIES += plugins/moblin.la
+plugin_objects += $(plugins_moblin_la_OBJECTS)
+plugins_moblin_la_CFLAGS = $(plugin_cflags)
+plugins_moblin_la_LDFLAGS = $(plugin_ldflags)
+endif
+endif
+
if POLKIT
if POLKIT_BUILTIN
builtin_modules += polkit
AM_CONDITIONAL(GOOGLE, test "${enable_google}" != "no")
AM_CONDITIONAL(GOOGLE_BUILTIN, test "${enable_google}" = "builtin")
+AC_ARG_ENABLE(moblin,
+ AC_HELP_STRING([--enable-moblin], [enable Moblin features support]),
+ [enable_moblin=${enableval}], [enable_moblin="no"])
+AM_CONDITIONAL(MOBLIN, test "${enable_moblin}" != "no")
+AM_CONDITIONAL(MOBLIN_BUILTIN, test "${enable_moblin}" = "builtin")
+
AC_ARG_ENABLE(hso,
AC_HELP_STRING([--enable-hso], [enable HSO support]),
[enable_hso=${enableval}], [enable_hso="no"])
--- /dev/null
+/*
+ *
+ * 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>
+
+static int moblin_init(void)
+{
+ return 0;
+}
+
+static void moblin_exit(void)
+{
+}
+
+CONNMAN_PLUGIN_DEFINE(moblin, "Moblin features plugin", VERSION,
+ CONNMAN_PLUGIN_PRIORITY_LOW, moblin_init, moblin_exit)