summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2015-04-22 21:26:09 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2015-04-22 21:26:09 -0400
commit414f9e4a30fd69eee121fad373dd170c5b5586f5 (patch)
treeb0245169d35575db6eaf4785a49756c667498e93
parentd36a42f1e110fe04daaf754fc7dff2d5d022acfa (diff)
downloadlibnice-414f9e4a30fd69eee121fad373dd170c5b5586f5.tar.gz
examples: Make them built on non-win32 with GLib < 2.36
-rw-r--r--examples/sdp-example.c7
-rw-r--r--examples/simple-example.c10
-rw-r--r--examples/threaded-example.c6
3 files changed, 16 insertions, 7 deletions
diff --git a/examples/sdp-example.c b/examples/sdp-example.c
index bf31c5a..342061f 100644
--- a/examples/sdp-example.c
+++ b/examples/sdp-example.c
@@ -44,7 +44,9 @@
#include <agent.h>
+#if GLIB_CHECK_VERSION(2, 36, 0)
#include <gio/gnetworking.h>
+#endif
static GMainLoop *gloop;
static gchar *stun_addr = NULL;
@@ -93,10 +95,11 @@ main(int argc, char *argv[])
g_debug("Using stun server '[%s]:%u'\n", stun_addr, stun_port);
}
-#if !GLIB_CHECK_VERSION(2, 36, 0)
+#if GLIB_CHECK_VERSION(2, 36, 0)
+ g_networking_init();
+#else
g_type_init();
#endif
- g_networking_init();
gloop = g_main_loop_new(NULL, FALSE);
diff --git a/examples/simple-example.c b/examples/simple-example.c
index aa259aa..c28cbb3 100644
--- a/examples/simple-example.c
+++ b/examples/simple-example.c
@@ -42,10 +42,11 @@
#include <string.h>
#include <ctype.h>
-#include <gio/gnetworking.h>
-
#include <agent.h>
+#if GLIB_CHECK_VERSION(2, 36, 0)
+#include <gio/gnetworking.h>
+#endif
static GMainLoop *gloop;
static GIOChannel* io_stdin;
@@ -104,10 +105,11 @@ main(int argc, char *argv[])
g_debug("Using stun server '[%s]:%u'\n", stun_addr, stun_port);
}
-#if !GLIB_CHECK_VERSION(2, 36, 0)
+#if GLIB_CHECK_VERSION(2, 36, 0)
+ g_networking_init();
+#else
g_type_init();
#endif
- g_networking_init();
gloop = g_main_loop_new(NULL, FALSE);
#ifdef G_OS_WIN32
diff --git a/examples/threaded-example.c b/examples/threaded-example.c
index 2564b3a..f1f2750 100644
--- a/examples/threaded-example.c
+++ b/examples/threaded-example.c
@@ -44,7 +44,9 @@
#include <agent.h>
+#if GLIB_CHECK_VERSION(2, 36, 0)
#include <gio/gnetworking.h>
+#endif
static GMainLoop *gloop;
static gchar *stun_addr = NULL;
@@ -102,7 +104,9 @@ main(int argc, char *argv[])
g_debug("Using stun server '[%s]:%u'\n", stun_addr, stun_port);
}
-#if !GLIB_CHECK_VERSION(2, 36, 0)
+#if GLIB_CHECK_VERSION(2, 36, 0)
+ g_networking_init();
+#else
g_type_init();
#endif
g_networking_init();