summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/compat.h8
-rw-r--r--src/uca-camera.c1
2 files changed, 9 insertions, 0 deletions
diff --git a/src/compat.h b/src/compat.h
new file mode 100644
index 0000000..d2096f8
--- /dev/null
+++ b/src/compat.h
@@ -0,0 +1,8 @@
+#ifndef COMPAT_H
+#define COMPAT_H
+
+#if !GLIB_CHECK_VERSION(2, 32, 0)
+#define g_thread_new(name, func, data) g_thread_create(func, data, TRUE, NULL)
+#endif
+
+#endif
diff --git a/src/uca-camera.c b/src/uca-camera.c
index 7aa5fb0..503ee7a 100644
--- a/src/uca-camera.c
+++ b/src/uca-camera.c
@@ -26,6 +26,7 @@
#include <glib.h>
#include <string.h>
#include "config.h"
+#include "compat.h"
#include "uca-camera.h"
#include "uca-ring-buffer.h"
#include "uca-enums.h"