backports: Backport G_OPTION_FLAG_NONE, G_OPTION_ENTRY_NULL

These make tables of options a bit clearer to write.

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie
2022-07-27 15:43:15 +01:00
parent fabcdb3bd8
commit b5658723ff

View File

@@ -68,6 +68,14 @@ gboolean glnx_set_object (GObject **object_ptr,
#define G_SPAWN_DEFAULT ((GSpawnFlags) 0)
#endif
#if !GLIB_CHECK_VERSION(2, 42, 0)
#define G_OPTION_FLAG_NONE ((GOptionFlags) 0)
#endif
#if !GLIB_CHECK_VERSION(2, 70, 0)
#define G_OPTION_ENTRY_NULL { NULL, 0, 0, 0, NULL, NULL, NULL }
#endif
#ifndef g_assert_nonnull
#define g_assert_nonnull(x) g_assert (x != NULL)
#endif