pidgin/pidgin

Parents 2f8dcd37835c
Children c17762e0a388
Add a compat version of g_date_time_format_iso8601 and install glibcompat.h
--- a/libpurple/glibcompat.h Wed Jun 17 08:59:55 2020 +0000
+++ b/libpurple/glibcompat.h Wed Jun 17 04:45:22 2020 -0500
@@ -49,4 +49,32 @@
# define g_stat purple_g_stat
#endif
+#if !GLIB_CHECK_VERSION(2, 62, 0)
+gchar *
+g_date_time_format_iso8601(GDateTime *datetime) {
+ GString *outstr = NULL;
+ gchar *main_date = NULL;
+ gint64 offset;
+
+ /* Main date and time. */
+ main_date = g_date_time_format(datetime, "%Y-%m-%dT%H:%M:%S");
+ outstr = g_string_new (main_date);
+ g_free (main_date);
+
+ /* Timezone. Format it as `%:::z` unless the offset is zero, in which case
+ * we can simply use `Z`. */
+ offset = g_date_time_get_utc_offset(datetime);
+
+ if (offset == 0) {
+ g_string_append_c(outstr, 'Z');
+ } else {
+ gchar *time_zone = g_date_time_format(datetime, "%:::z");
+ g_string_append(outstr, time_zone);
+ g_free(time_zone);
+ }
+
+ return g_string_free(outstr, FALSE);
+}
+#endif /* GLIB_CHECK_VERSION(2, 62, 0) */
+
#endif /* PURPLE_GLIBCOMPAT_H */
--- a/libpurple/meson.build Wed Jun 17 08:59:55 2020 +0000
+++ b/libpurple/meson.build Wed Jun 17 04:45:22 2020 -0500
@@ -101,6 +101,7 @@
'countingnode.h',
'debug.h',
'eventloop.h',
+ 'glibcompat.h',
'group.h',
'idle.h',
'image.h',