about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-09-21 21:40:04 +0100
committerJames Booth <boothj5@gmail.com>2015-09-21 21:40:04 +0100
commit2b88e2f1bffca2800b521214df6009da673a0835 (patch)
tree5b47f219c6c8bb52fed4d7eb319383d9f812d324 /src/main.c
parent14edbe17701e764ff36f2440b4143af8c522380a (diff)
downloadprofani-tty-2b88e2f1bffca2800b521214df6009da673a0835.tar.gz
Check for libmesode, fall back to libstrophe
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index ea8f0cea..49e1defc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -98,6 +98,13 @@ main(int argc, char **argv)
 
         g_print("Build information:\n");
 
+#ifdef HAVE_LIBMESODE
+        g_print("XMPP library: libmesode\n");
+#endif
+#ifdef HAVE_LIBSTROPHE
+        g_print("XMPP library: libstrophe\n");
+#endif
+
         gboolean notify_enabled = FALSE;
 
 #ifdef HAVE_OSXNOTIFY