From 501a9e0270afefea7b4f790e4efc291b2d2bcedd Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Tue, 18 Feb 2014 14:47:04 +0100 Subject: Add compatibility layer for new thread API --- src/compat.h | 8 ++++++++ src/uca-camera.c | 1 + 2 files changed, 9 insertions(+) create mode 100644 src/compat.h (limited to 'src') 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 #include #include "config.h" +#include "compat.h" #include "uca-camera.h" #include "uca-ring-buffer.h" #include "uca-enums.h" -- cgit v1.2.3