Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgeboski <jgeboski@gmail.com>2015-12-25 23:50:15 +0300
committerjgeboski <jgeboski@gmail.com>2015-12-25 23:50:15 +0300
commitfb34f49bbc5c11000dd495539a76711c1e3cf0e2 (patch)
tree6aa0fc2065fdd3dc34fa7cf2a0a425bc1480d363
parentb5223915c21f88c0c37aa41d1cce5dcf7590bc70 (diff)
VERSION: update to 1852eb9052a01852eb9052a0
-rw-r--r--ChangeLog4
-rw-r--r--VERSION2
-rw-r--r--patches/02-glibcompat.patch37
-rw-r--r--patches/03-plugin.patch (renamed from patches/02-plugin.patch)0
4 files changed, 42 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e3389ce..11137d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+purple-facebook-1852eb9052a0 (2015-12-25):
+ - Fixed broken contact counting with non-friends
+ - Trivial documentation fixes
+
purple-facebook-078fbf8d1a4e (2015-12-21):
- Fixed missing link to libgio-2.0 with Windows
diff --git a/VERSION b/VERSION
index 7ab418f..995316d 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-078fbf8d1a4e
+1852eb9052a0
diff --git a/patches/02-glibcompat.patch b/patches/02-glibcompat.patch
new file mode 100644
index 0000000..4669b77
--- /dev/null
+++ b/patches/02-glibcompat.patch
@@ -0,0 +1,37 @@
+diff -r 1852eb9052a0 libpurple/glibcompat.h
+--- a/libpurple/glibcompat.h Fri Dec 25 15:20:41 2015 -0500
++++ b/libpurple/glibcompat.h Fri Dec 25 15:49:07 2015 -0500
+@@ -61,6 +61,33 @@
+ return FALSE;
+ }
+
++#if !GLIB_CHECK_VERSION(2, 32, 0)
++
++static inline GByteArray * g_byte_array_new_take(guint8 *data, gsize len)
++{
++ GByteArray *array;
++
++ array = g_byte_array_new();
++ g_byte_array_append(array, data, len);
++ g_free(data);
++
++ return array;
++}
++
++static inline void g_queue_free_full(GQueue *queue, GDestroyNotify free_func)
++{
++ g_queue_foreach(queue, (GFunc)free_func, NULL);
++ g_queue_free(queue);
++}
++
++#if !GLIB_CHECK_VERSION(2, 30, 0)
++
++#define G_VALUE_INIT {0, {{0}}}
++
++#endif /* < 2.30.0 */
++
++#endif /* < 2.32.0 */
++
+ #endif /* < 2.36.0 */
+
+
diff --git a/patches/02-plugin.patch b/patches/03-plugin.patch
index 90569aa..90569aa 100644
--- a/patches/02-plugin.patch
+++ b/patches/03-plugin.patch