summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2012-05-17 17:57:50 +0100
committerJonny Lamb <jonny.lamb@collabora.co.uk>2012-05-17 18:01:54 +0100
commit4f67d0e00694967c31ab35ab6eec0a325bc19d5d (patch)
treef85bf0dbc32427f7448f8b959780e4dd848575ac /plugins
parentb7eaf004dd62f4425cc6027420533b493640d70d (diff)
downloadtelepathy-gabble-4f67d0e00694967c31ab35ab6eec0a325bc19d5d.tar.gz
configure: ignore post 0.18 deprecations so we can build against tp-glib master
Gabble still uses emit_new_channels and tp_handle_{,un}ref, but for now we can ignore it with this. config.h had to be included in the right place for a lot of source files. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/console.c4
-rw-r--r--plugins/test.c3
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/console.c b/plugins/console.c
index 69dd1e1e3..8ec2894ac 100644
--- a/plugins/console.c
+++ b/plugins/console.c
@@ -17,10 +17,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include "console.h"
-
#include "config.h"
+#include "console.h"
+
#include <string.h>
#include <telepathy-glib/telepathy-glib.h>
diff --git a/plugins/test.c b/plugins/test.c
index 92c08335d..bb6b71959 100644
--- a/plugins/test.c
+++ b/plugins/test.c
@@ -1,6 +1,7 @@
-#include "test.h"
#include "config.h"
+#include "test.h"
+
#include <stdio.h>
#include <telepathy-glib/telepathy-glib.h>