summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap-configure3
-rw-r--r--configure.ac4
-rw-r--r--plugins/Makefile.am6
-rw-r--r--plugins/fake.c37
4 files changed, 49 insertions, 1 deletions
diff --git a/bootstrap-configure b/bootstrap-configure
index ea6d525d..cba03dcc 100755
--- a/bootstrap-configure
+++ b/bootstrap-configure
@@ -15,4 +15,5 @@ fi
--prefix=/usr \
--mandir=/usr/share/man \
--localstatedir=/var \
- --sysconfdir=/etc
+ --sysconfdir=/etc \
+ --enable-fake $*
diff --git a/configure.ac b/configure.ac
index 61e6418c..5857197a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -85,6 +85,10 @@ PKG_CHECK_MODULES(SQLITE, sqlite3, sqlite_found=yes, sqlite_found=no)
AC_SUBST(SQLITE_CFLAGS)
AC_SUBST(SQLITE_LIBS)
+AC_ARG_ENABLE(fake, AC_HELP_STRING([--enable-fake],
+ [enable fake plugin]), [enable_fake=${enableval}])
+AM_CONDITIONAL(FAKE, test "${enable_fake}" = "yes")
+
AC_OUTPUT(Makefile gdbus/Makefile include/Makefile src/Makefile doc/Makefile
test/Makefile plugins/Makefile scripts/Makefile scripts/connman
src/connman.service doc/version.xml connman.pc)
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 7c12a8ef..a19236cc 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -46,6 +46,12 @@ policydir = $(datadir)/PolicyKit/policy
policy_DATA = connman.policy
endif
+if FAKE
+plugin_LTLIBRARIES += fake.la
+
+fake_la_SOURCES = fake.c
+endif
+
AM_LDFLAGS = -no-undefined -module -avoid-version \
-export-symbols-regex connman_plugin_desc
diff --git a/plugins/fake.c b/plugins/fake.c
new file mode 100644
index 00000000..235751c0
--- /dev/null
+++ b/plugins/fake.c
@@ -0,0 +1,37 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2008 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
+
+#include <connman/plugin.h>
+
+static int fake_init(void)
+{
+ return 0;
+}
+
+static void fake_exit(void)
+{
+}
+
+CONNMAN_PLUGIN_DEFINE("fake", "Tesing plugin", VERSION, fake_init, fake_exit)