summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2010-01-21 12:57:41 +0000
committerWill Thompson <will.thompson@collabora.co.uk>2010-01-21 12:57:41 +0000
commit8a4eb423bbf6196cfb93cc06463cfa7e8eb640cd (patch)
treeab36c30f0b0deacb3a8586f7da2aa14a29250388 /plugins
parent40768280a76471e4fd6784c52eafa5ff40b3c6f4 (diff)
Add a version to the gateways plugin.
I'm deliberately not setting a version on the test plugin to make sure Gabble copes with it being NULL.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gateways.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/gateways.c b/plugins/gateways.c
index 5f648e026..e5699dcf2 100644
--- a/plugins/gateways.c
+++ b/plugins/gateways.c
@@ -19,6 +19,8 @@
#include "gateways.h"
+#include "config.h"
+
#include <telepathy-glib/dbus.h>
#include <telepathy-glib/util.h>
#include <telepathy-glib/errors.h>
@@ -104,6 +106,7 @@ plugin_iface_init (
GabblePluginInterface *iface = g_iface;
iface->name = "Gateway registration plugin";
+ iface->version = PACKAGE_VERSION;
iface->sidecar_interfaces = sidecar_interfaces;
iface->create_sidecar = gabble_gateway_plugin_create_sidecar;
}