From 8681dffa91a0d5767b7c1eb3d5c2acbf7f7dd7ba Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Tue, 27 Oct 2015 15:44:00 +0100 Subject: [PATCH] glib: add compatibility interface for g_hash_table_add() The next commit will use it. Signed-off-by: Markus Armbruster Reviewed-by: Eric Blake --- include/glib-compat.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/glib-compat.h b/include/glib-compat.h index fb25f437b4..03d8b12675 100644 --- a/include/glib-compat.h +++ b/include/glib-compat.h @@ -165,6 +165,14 @@ static inline GThread *g_thread_new(const char *name, #define CompatGCond GCond #endif /* glib 2.31 */ +#if !GLIB_CHECK_VERSION(2, 32, 0) +/* Beware, function returns gboolean since 2.39.2, see GLib commit 9101915 */ +static inline void g_hash_table_add(GHashTable *hash_table, gpointer key) +{ + g_hash_table_replace(hash_table, key, key); +} +#endif + #ifndef g_assert_true #define g_assert_true(expr) \ do { \