adium 5953:b018d89d49dc: libpurple 2.12.0 @ r11b8084bcff4
commits at adium.im
commits at adium.im
Tue Mar 21 19:39:08 UTC 2017
details: http://hg.adium.im/adium/rev/b018d89d49dc
revision: 5953:b018d89d49dc
branch: adium-1.5.10.3
author: Thijs Alkemade <me at thijsalkema.de>
date: Tue Mar 21 20:37:34 2017 +0100
libpurple 2.12.0 @ r11b8084bcff4
diffs (truncated from 78975 to 1000 lines):
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgcrypt.framework/Versions/1.6.2/libgcrypt
Binary file Frameworks/libgcrypt.framework/Versions/1.6.2/libgcrypt has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libglib.framework/Versions/2.42.1/Headers/glibconfig.h
--- a/Frameworks/libglib.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:36:54 2017 +0100
+++ b/Frameworks/libglib.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:37:34 2017 +0100
@@ -48,40 +48,19 @@
#define G_GUINT32_FORMAT "u"
#define G_HAVE_GINT64 1 /* deprecated, always true */
-#ifdef __LP64__
typedef signed long gint64;
typedef unsigned long guint64;
#define G_GINT64_CONSTANT(val) (val##L)
#define G_GUINT64_CONSTANT(val) (val##UL)
-#else
-typedef signed long long gint64;
-typedef unsigned long long guint64;
-
-#define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
-#define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
-#endif
-#ifdef __LP64__
#define G_GINT64_MODIFIER "l"
#define G_GINT64_FORMAT "li"
#define G_GUINT64_FORMAT "lu"
-#else
-#define G_GINT64_MODIFIER "ll"
-#define G_GINT64_FORMAT "lli"
-#define G_GUINT64_FORMAT "llu"
-#endif
-#ifdef __LP64__
#define GLIB_SIZEOF_VOID_P 8
#define GLIB_SIZEOF_LONG 8
#define GLIB_SIZEOF_SIZE_T 8
#define GLIB_SIZEOF_SSIZE_T 8
-#else
-#define GLIB_SIZEOF_VOID_P 4
-#define GLIB_SIZEOF_LONG 4
-#define GLIB_SIZEOF_SIZE_T 4
-#define GLIB_SIZEOF_SSIZE_T 4
-#endif
typedef signed long gssize;
typedef unsigned long gsize;
@@ -103,7 +82,6 @@
#define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
-#ifdef __LP64__
#define GPOINTER_TO_INT(p) ((gint) (glong) (p))
#define GPOINTER_TO_UINT(p) ((guint) (gulong) (p))
@@ -116,20 +94,6 @@
#define G_GINTPTR_MODIFIER "l"
#define G_GINTPTR_FORMAT "li"
#define G_GUINTPTR_FORMAT "lu"
-#else
-#define GPOINTER_TO_INT(p) ((gint) (p))
-#define GPOINTER_TO_UINT(p) ((guint) (p))
-
-#define GINT_TO_POINTER(i) ((gpointer) (i))
-#define GUINT_TO_POINTER(u) ((gpointer) (u))
-
-typedef signed int gintptr;
-typedef unsigned int guintptr;
-
-#define G_GINTPTR_MODIFIER ""
-#define G_GINTPTR_FORMAT "i"
-#define G_GUINTPTR_FORMAT "u"
-#endif
#ifndef G_DISABLE_DEPRECATED
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
@@ -143,9 +107,7 @@
#define G_VA_COPY va_copy
-#ifdef __LP64__
#define G_VA_COPY_AS_ARRAY 1
-#endif
#ifdef __cplusplus
#define G_HAVE_INLINE 1
@@ -194,70 +156,31 @@
#define G_ATOMIC_LOCK_FREE
-#ifdef __BIG_ENDIAN__
-#define GINT16_TO_BE(val) ((gint16) (val))
-#define GUINT16_TO_BE(val) ((guint16) (val))
-#define GINT16_TO_LE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
-#define GUINT16_TO_LE(val) (GUINT16_SWAP_LE_BE (val))
-#else
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))
#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT32_TO_BE(val) ((gint32) (val))
-#define GUINT32_TO_BE(val) ((guint32) (val))
-#define GINT32_TO_LE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
-#define GUINT32_TO_LE(val) (GUINT32_SWAP_LE_BE (val))
-#else
#define GINT32_TO_LE(val) ((gint32) (val))
#define GUINT32_TO_LE(val) ((guint32) (val))
#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT64_TO_BE(val) ((gint64) (val))
-#define GUINT64_TO_BE(val) ((guint64) (val))
-#define GINT64_TO_LE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
-#define GUINT64_TO_LE(val) (GUINT64_SWAP_LE_BE (val))
-#else
#define GINT64_TO_LE(val) ((gint64) (val))
#define GUINT64_TO_LE(val) ((guint64) (val))
#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
-#endif
-#ifdef __LP64__
#define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val))
#define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val))
#define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val))
#define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val))
-#else
-#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val))
-#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val))
-#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val))
-#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val))
-#endif
#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
-#ifdef __LP64__
#define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val))
#define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val))
#define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val))
#define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val))
-#else
-#define GSIZE_TO_LE(val) ((gsize) GUINT32_TO_LE (val))
-#define GSSIZE_TO_LE(val) ((gssize) GINT32_TO_LE (val))
-#define GSIZE_TO_BE(val) ((gsize) GUINT32_TO_BE (val))
-#define GSSIZE_TO_BE(val) ((gssize) GINT32_TO_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define G_BYTE_ORDER G_BIG_ENDIAN
-#else
#define G_BYTE_ORDER G_LITTLE_ENDIAN
-#endif
#define GLIB_SYSDEF_POLLIN =1
#define GLIB_SYSDEF_POLLOUT =4
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libglib.framework/Versions/2.42.1/libglib
Binary file Frameworks/libglib.framework/Versions/2.42.1/libglib has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgmodule.framework/Versions/2.42.1/Headers/glibconfig.h
--- a/Frameworks/libgmodule.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:36:54 2017 +0100
+++ b/Frameworks/libgmodule.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:37:34 2017 +0100
@@ -48,40 +48,19 @@
#define G_GUINT32_FORMAT "u"
#define G_HAVE_GINT64 1 /* deprecated, always true */
-#ifdef __LP64__
typedef signed long gint64;
typedef unsigned long guint64;
#define G_GINT64_CONSTANT(val) (val##L)
#define G_GUINT64_CONSTANT(val) (val##UL)
-#else
-typedef signed long long gint64;
-typedef unsigned long long guint64;
-
-#define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
-#define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
-#endif
-#ifdef __LP64__
#define G_GINT64_MODIFIER "l"
#define G_GINT64_FORMAT "li"
#define G_GUINT64_FORMAT "lu"
-#else
-#define G_GINT64_MODIFIER "ll"
-#define G_GINT64_FORMAT "lli"
-#define G_GUINT64_FORMAT "llu"
-#endif
-#ifdef __LP64__
#define GLIB_SIZEOF_VOID_P 8
#define GLIB_SIZEOF_LONG 8
#define GLIB_SIZEOF_SIZE_T 8
#define GLIB_SIZEOF_SSIZE_T 8
-#else
-#define GLIB_SIZEOF_VOID_P 4
-#define GLIB_SIZEOF_LONG 4
-#define GLIB_SIZEOF_SIZE_T 4
-#define GLIB_SIZEOF_SSIZE_T 4
-#endif
typedef signed long gssize;
typedef unsigned long gsize;
@@ -103,7 +82,6 @@
#define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
-#ifdef __LP64__
#define GPOINTER_TO_INT(p) ((gint) (glong) (p))
#define GPOINTER_TO_UINT(p) ((guint) (gulong) (p))
@@ -116,20 +94,6 @@
#define G_GINTPTR_MODIFIER "l"
#define G_GINTPTR_FORMAT "li"
#define G_GUINTPTR_FORMAT "lu"
-#else
-#define GPOINTER_TO_INT(p) ((gint) (p))
-#define GPOINTER_TO_UINT(p) ((guint) (p))
-
-#define GINT_TO_POINTER(i) ((gpointer) (i))
-#define GUINT_TO_POINTER(u) ((gpointer) (u))
-
-typedef signed int gintptr;
-typedef unsigned int guintptr;
-
-#define G_GINTPTR_MODIFIER ""
-#define G_GINTPTR_FORMAT "i"
-#define G_GUINTPTR_FORMAT "u"
-#endif
#ifndef G_DISABLE_DEPRECATED
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
@@ -143,9 +107,7 @@
#define G_VA_COPY va_copy
-#ifdef __LP64__
#define G_VA_COPY_AS_ARRAY 1
-#endif
#ifdef __cplusplus
#define G_HAVE_INLINE 1
@@ -194,70 +156,31 @@
#define G_ATOMIC_LOCK_FREE
-#ifdef __BIG_ENDIAN__
-#define GINT16_TO_BE(val) ((gint16) (val))
-#define GUINT16_TO_BE(val) ((guint16) (val))
-#define GINT16_TO_LE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
-#define GUINT16_TO_LE(val) (GUINT16_SWAP_LE_BE (val))
-#else
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))
#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT32_TO_BE(val) ((gint32) (val))
-#define GUINT32_TO_BE(val) ((guint32) (val))
-#define GINT32_TO_LE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
-#define GUINT32_TO_LE(val) (GUINT32_SWAP_LE_BE (val))
-#else
#define GINT32_TO_LE(val) ((gint32) (val))
#define GUINT32_TO_LE(val) ((guint32) (val))
#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT64_TO_BE(val) ((gint64) (val))
-#define GUINT64_TO_BE(val) ((guint64) (val))
-#define GINT64_TO_LE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
-#define GUINT64_TO_LE(val) (GUINT64_SWAP_LE_BE (val))
-#else
#define GINT64_TO_LE(val) ((gint64) (val))
#define GUINT64_TO_LE(val) ((guint64) (val))
#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
-#endif
-#ifdef __LP64__
#define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val))
#define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val))
#define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val))
#define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val))
-#else
-#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val))
-#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val))
-#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val))
-#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val))
-#endif
#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
-#ifdef __LP64__
#define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val))
#define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val))
#define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val))
#define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val))
-#else
-#define GSIZE_TO_LE(val) ((gsize) GUINT32_TO_LE (val))
-#define GSSIZE_TO_LE(val) ((gssize) GINT32_TO_LE (val))
-#define GSIZE_TO_BE(val) ((gsize) GUINT32_TO_BE (val))
-#define GSSIZE_TO_BE(val) ((gssize) GINT32_TO_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define G_BYTE_ORDER G_BIG_ENDIAN
-#else
#define G_BYTE_ORDER G_LITTLE_ENDIAN
-#endif
#define GLIB_SYSDEF_POLLIN =1
#define GLIB_SYSDEF_POLLOUT =4
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgmodule.framework/Versions/2.42.1/libgmodule
Binary file Frameworks/libgmodule.framework/Versions/2.42.1/libgmodule has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgobject.framework/Versions/2.42.1/Headers/glibconfig.h
--- a/Frameworks/libgobject.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:36:54 2017 +0100
+++ b/Frameworks/libgobject.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:37:34 2017 +0100
@@ -48,40 +48,19 @@
#define G_GUINT32_FORMAT "u"
#define G_HAVE_GINT64 1 /* deprecated, always true */
-#ifdef __LP64__
typedef signed long gint64;
typedef unsigned long guint64;
#define G_GINT64_CONSTANT(val) (val##L)
#define G_GUINT64_CONSTANT(val) (val##UL)
-#else
-typedef signed long long gint64;
-typedef unsigned long long guint64;
-
-#define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
-#define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
-#endif
-#ifdef __LP64__
#define G_GINT64_MODIFIER "l"
#define G_GINT64_FORMAT "li"
#define G_GUINT64_FORMAT "lu"
-#else
-#define G_GINT64_MODIFIER "ll"
-#define G_GINT64_FORMAT "lli"
-#define G_GUINT64_FORMAT "llu"
-#endif
-#ifdef __LP64__
#define GLIB_SIZEOF_VOID_P 8
#define GLIB_SIZEOF_LONG 8
#define GLIB_SIZEOF_SIZE_T 8
#define GLIB_SIZEOF_SSIZE_T 8
-#else
-#define GLIB_SIZEOF_VOID_P 4
-#define GLIB_SIZEOF_LONG 4
-#define GLIB_SIZEOF_SIZE_T 4
-#define GLIB_SIZEOF_SSIZE_T 4
-#endif
typedef signed long gssize;
typedef unsigned long gsize;
@@ -103,7 +82,6 @@
#define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
-#ifdef __LP64__
#define GPOINTER_TO_INT(p) ((gint) (glong) (p))
#define GPOINTER_TO_UINT(p) ((guint) (gulong) (p))
@@ -116,20 +94,6 @@
#define G_GINTPTR_MODIFIER "l"
#define G_GINTPTR_FORMAT "li"
#define G_GUINTPTR_FORMAT "lu"
-#else
-#define GPOINTER_TO_INT(p) ((gint) (p))
-#define GPOINTER_TO_UINT(p) ((guint) (p))
-
-#define GINT_TO_POINTER(i) ((gpointer) (i))
-#define GUINT_TO_POINTER(u) ((gpointer) (u))
-
-typedef signed int gintptr;
-typedef unsigned int guintptr;
-
-#define G_GINTPTR_MODIFIER ""
-#define G_GINTPTR_FORMAT "i"
-#define G_GUINTPTR_FORMAT "u"
-#endif
#ifndef G_DISABLE_DEPRECATED
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
@@ -143,9 +107,7 @@
#define G_VA_COPY va_copy
-#ifdef __LP64__
#define G_VA_COPY_AS_ARRAY 1
-#endif
#ifdef __cplusplus
#define G_HAVE_INLINE 1
@@ -194,70 +156,31 @@
#define G_ATOMIC_LOCK_FREE
-#ifdef __BIG_ENDIAN__
-#define GINT16_TO_BE(val) ((gint16) (val))
-#define GUINT16_TO_BE(val) ((guint16) (val))
-#define GINT16_TO_LE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
-#define GUINT16_TO_LE(val) (GUINT16_SWAP_LE_BE (val))
-#else
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))
#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT32_TO_BE(val) ((gint32) (val))
-#define GUINT32_TO_BE(val) ((guint32) (val))
-#define GINT32_TO_LE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
-#define GUINT32_TO_LE(val) (GUINT32_SWAP_LE_BE (val))
-#else
#define GINT32_TO_LE(val) ((gint32) (val))
#define GUINT32_TO_LE(val) ((guint32) (val))
#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT64_TO_BE(val) ((gint64) (val))
-#define GUINT64_TO_BE(val) ((guint64) (val))
-#define GINT64_TO_LE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
-#define GUINT64_TO_LE(val) (GUINT64_SWAP_LE_BE (val))
-#else
#define GINT64_TO_LE(val) ((gint64) (val))
#define GUINT64_TO_LE(val) ((guint64) (val))
#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
-#endif
-#ifdef __LP64__
#define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val))
#define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val))
#define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val))
#define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val))
-#else
-#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val))
-#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val))
-#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val))
-#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val))
-#endif
#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
-#ifdef __LP64__
#define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val))
#define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val))
#define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val))
#define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val))
-#else
-#define GSIZE_TO_LE(val) ((gsize) GUINT32_TO_LE (val))
-#define GSSIZE_TO_LE(val) ((gssize) GINT32_TO_LE (val))
-#define GSIZE_TO_BE(val) ((gsize) GUINT32_TO_BE (val))
-#define GSSIZE_TO_BE(val) ((gssize) GINT32_TO_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define G_BYTE_ORDER G_BIG_ENDIAN
-#else
#define G_BYTE_ORDER G_LITTLE_ENDIAN
-#endif
#define GLIB_SYSDEF_POLLIN =1
#define GLIB_SYSDEF_POLLOUT =4
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgobject.framework/Versions/2.42.1/libgobject
Binary file Frameworks/libgobject.framework/Versions/2.42.1/libgobject has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgpgerror.framework/Versions/1.17/libgpgerror
Binary file Frameworks/libgpgerror.framework/Versions/1.17/libgpgerror has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgthread.framework/Versions/2.42.1/Headers/glibconfig.h
--- a/Frameworks/libgthread.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:36:54 2017 +0100
+++ b/Frameworks/libgthread.framework/Versions/2.42.1/Headers/glibconfig.h Tue Mar 21 20:37:34 2017 +0100
@@ -48,40 +48,19 @@
#define G_GUINT32_FORMAT "u"
#define G_HAVE_GINT64 1 /* deprecated, always true */
-#ifdef __LP64__
typedef signed long gint64;
typedef unsigned long guint64;
#define G_GINT64_CONSTANT(val) (val##L)
#define G_GUINT64_CONSTANT(val) (val##UL)
-#else
-typedef signed long long gint64;
-typedef unsigned long long guint64;
-
-#define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
-#define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
-#endif
-#ifdef __LP64__
#define G_GINT64_MODIFIER "l"
#define G_GINT64_FORMAT "li"
#define G_GUINT64_FORMAT "lu"
-#else
-#define G_GINT64_MODIFIER "ll"
-#define G_GINT64_FORMAT "lli"
-#define G_GUINT64_FORMAT "llu"
-#endif
-#ifdef __LP64__
#define GLIB_SIZEOF_VOID_P 8
#define GLIB_SIZEOF_LONG 8
#define GLIB_SIZEOF_SIZE_T 8
#define GLIB_SIZEOF_SSIZE_T 8
-#else
-#define GLIB_SIZEOF_VOID_P 4
-#define GLIB_SIZEOF_LONG 4
-#define GLIB_SIZEOF_SIZE_T 4
-#define GLIB_SIZEOF_SSIZE_T 4
-#endif
typedef signed long gssize;
typedef unsigned long gsize;
@@ -103,7 +82,6 @@
#define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
-#ifdef __LP64__
#define GPOINTER_TO_INT(p) ((gint) (glong) (p))
#define GPOINTER_TO_UINT(p) ((guint) (gulong) (p))
@@ -116,20 +94,6 @@
#define G_GINTPTR_MODIFIER "l"
#define G_GINTPTR_FORMAT "li"
#define G_GUINTPTR_FORMAT "lu"
-#else
-#define GPOINTER_TO_INT(p) ((gint) (p))
-#define GPOINTER_TO_UINT(p) ((guint) (p))
-
-#define GINT_TO_POINTER(i) ((gpointer) (i))
-#define GUINT_TO_POINTER(u) ((gpointer) (u))
-
-typedef signed int gintptr;
-typedef unsigned int guintptr;
-
-#define G_GINTPTR_MODIFIER ""
-#define G_GINTPTR_FORMAT "i"
-#define G_GUINTPTR_FORMAT "u"
-#endif
#ifndef G_DISABLE_DEPRECATED
#define g_ATEXIT(proc) (atexit (proc))
#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END
@@ -143,9 +107,7 @@
#define G_VA_COPY va_copy
-#ifdef __LP64__
#define G_VA_COPY_AS_ARRAY 1
-#endif
#ifdef __cplusplus
#define G_HAVE_INLINE 1
@@ -194,70 +156,31 @@
#define G_ATOMIC_LOCK_FREE
-#ifdef __BIG_ENDIAN__
-#define GINT16_TO_BE(val) ((gint16) (val))
-#define GUINT16_TO_BE(val) ((guint16) (val))
-#define GINT16_TO_LE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
-#define GUINT16_TO_LE(val) (GUINT16_SWAP_LE_BE (val))
-#else
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))
#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT32_TO_BE(val) ((gint32) (val))
-#define GUINT32_TO_BE(val) ((guint32) (val))
-#define GINT32_TO_LE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
-#define GUINT32_TO_LE(val) (GUINT32_SWAP_LE_BE (val))
-#else
#define GINT32_TO_LE(val) ((gint32) (val))
#define GUINT32_TO_LE(val) ((guint32) (val))
#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define GINT64_TO_BE(val) ((gint64) (val))
-#define GUINT64_TO_BE(val) ((guint64) (val))
-#define GINT64_TO_LE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
-#define GUINT64_TO_LE(val) (GUINT64_SWAP_LE_BE (val))
-#else
#define GINT64_TO_LE(val) ((gint64) (val))
#define GUINT64_TO_LE(val) ((guint64) (val))
#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
-#endif
-#ifdef __LP64__
#define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val))
#define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val))
#define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val))
#define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val))
-#else
-#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val))
-#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val))
-#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val))
-#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val))
-#endif
#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
-#ifdef __LP64__
#define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val))
#define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val))
#define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val))
#define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val))
-#else
-#define GSIZE_TO_LE(val) ((gsize) GUINT32_TO_LE (val))
-#define GSSIZE_TO_LE(val) ((gssize) GINT32_TO_LE (val))
-#define GSIZE_TO_BE(val) ((gsize) GUINT32_TO_BE (val))
-#define GSSIZE_TO_BE(val) ((gssize) GINT32_TO_BE (val))
-#endif
-#ifdef __BIG_ENDIAN__
-#define G_BYTE_ORDER G_BIG_ENDIAN
-#else
#define G_BYTE_ORDER G_LITTLE_ENDIAN
-#endif
#define GLIB_SYSDEF_POLLIN =1
#define GLIB_SYSDEF_POLLOUT =4
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libgthread.framework/Versions/2.42.1/libgthread
Binary file Frameworks/libgthread.framework/Versions/2.42.1/libgthread has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libintl.framework/Versions/0.19.3/libintl
Binary file Frameworks/libintl.framework/Versions/0.19.3/libintl has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libmeanwhile.framework/Versions/1.0.2/libmeanwhile
Binary file Frameworks/libmeanwhile.framework/Versions/1.0.2/libmeanwhile has changed
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libpurple.framework/Headers
--- a/Frameworks/libpurple.framework/Headers Tue Mar 21 20:36:54 2017 +0100
+++ b/Frameworks/libpurple.framework/Headers Tue Mar 21 20:37:34 2017 +0100
@@ -1,1 +1,1 @@
-Versions/2.10.12r8d2874a79747/Headers
\ No newline at end of file
+Versions/2.12.0r11b8084bcff4/Headers
\ No newline at end of file
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libpurple.framework/Resources
--- a/Frameworks/libpurple.framework/Resources Tue Mar 21 20:36:54 2017 +0100
+++ b/Frameworks/libpurple.framework/Resources Tue Mar 21 20:37:34 2017 +0100
@@ -1,1 +1,1 @@
-Versions/2.10.12r8d2874a79747/Resources
\ No newline at end of file
+Versions/2.12.0r11b8084bcff4/Resources
\ No newline at end of file
diff -r 395e617c3bdc -r b018d89d49dc Frameworks/libpurple.framework/Versions/2.10.12r8d2874a79747/Headers/account.h
--- a/Frameworks/libpurple.framework/Versions/2.10.12r8d2874a79747/Headers/account.h Tue Mar 21 20:36:54 2017 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1194 +0,0 @@
-/**
- * @file account.h Account API
- * @ingroup core
- * @see @ref account-signals
- */
-
-/* purple
- *
- * Purple is the legal property of its developers, whose names are too numerous
- * to list here. Please refer to the COPYRIGHT file distributed with this
- * source distribution.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
- */
-#ifndef _PURPLE_ACCOUNT_H_
-#define _PURPLE_ACCOUNT_H_
-
-#include <glib.h>
-#include <glib-object.h>
-
-/** @copydoc _PurpleAccountUiOps */
-typedef struct _PurpleAccountUiOps PurpleAccountUiOps;
-/** @copydoc _PurpleAccount */
-typedef struct _PurpleAccount PurpleAccount;
-
-typedef gboolean (*PurpleFilterAccountFunc)(PurpleAccount *account);
-typedef void (*PurpleAccountRequestAuthorizationCb)(void *);
-typedef void (*PurpleAccountRegistrationCb)(PurpleAccount *account, gboolean succeeded, void *user_data);
-typedef void (*PurpleAccountUnregistrationCb)(PurpleAccount *account, gboolean succeeded, void *user_data);
-typedef void (*PurpleSetPublicAliasSuccessCallback)(PurpleAccount *account, const char *new_alias);
-typedef void (*PurpleSetPublicAliasFailureCallback)(PurpleAccount *account, const char *error);
-typedef void (*PurpleGetPublicAliasSuccessCallback)(PurpleAccount *account, const char *alias);
-typedef void (*PurpleGetPublicAliasFailureCallback)(PurpleAccount *account, const char *error);
-
-#include "connection.h"
-#include "log.h"
-#include "privacy.h"
-#include "proxy.h"
-#include "prpl.h"
-#include "status.h"
-
-/**
- * Account request types.
- */
-typedef enum
-{
- PURPLE_ACCOUNT_REQUEST_AUTHORIZATION = 0 /* Account authorization request */
-} PurpleAccountRequestType;
-
-/**
- * Account request response types
- */
-typedef enum
-{
- PURPLE_ACCOUNT_RESPONSE_IGNORE = -2,
- PURPLE_ACCOUNT_RESPONSE_DENY = -1,
- PURPLE_ACCOUNT_RESPONSE_PASS = 0,
- PURPLE_ACCOUNT_RESPONSE_ACCEPT = 1
-} PurpleAccountRequestResponse;
-
-/** Account UI operations, used to notify the user of status changes and when
- * buddies add this account to their buddy lists.
- */
-struct _PurpleAccountUiOps
-{
- /** A buddy who is already on this account's buddy list added this account
- * to their buddy list.
- */
- void (*notify_added)(PurpleAccount *account,
- const char *remote_user,
- const char *id,
- const char *alias,
- const char *message);
-
- /** This account's status changed. */
- void (*status_changed)(PurpleAccount *account,
- PurpleStatus *status);
-
- /** Someone we don't have on our list added us; prompt to add them. */
- void (*request_add)(PurpleAccount *account,
- const char *remote_user,
- const char *id,
- const char *alias,
- const char *message);
-
- /** Prompt for authorization when someone adds this account to their buddy
- * list. To authorize them to see this account's presence, call \a
- * authorize_cb (\a user_data); otherwise call \a deny_cb (\a user_data);
- * @return a UI-specific handle, as passed to #close_account_request.
- */
- void *(*request_authorize)(PurpleAccount *account,
- const char *remote_user,
- const char *id,
- const char *alias,
- const char *message,
- gboolean on_list,
- PurpleAccountRequestAuthorizationCb authorize_cb,
- PurpleAccountRequestAuthorizationCb deny_cb,
- void *user_data);
-
- /** Close a pending request for authorization. \a ui_handle is a handle
- * as returned by #request_authorize.
- */
- void (*close_account_request)(void *ui_handle);
-
- void (*_purple_reserved1)(void);
- void (*_purple_reserved2)(void);
- void (*_purple_reserved3)(void);
- void (*_purple_reserved4)(void);
-};
-
-/** Structure representing an account.
- */
-struct _PurpleAccount
-{
- char *username; /**< The username. */
- char *alias; /**< How you appear to yourself. */
- char *password; /**< The account password. */
- char *user_info; /**< User information. */
-
- char *buddy_icon_path; /**< The buddy icon's non-cached path. */
-
- gboolean remember_pass; /**< Remember the password. */
-
- char *protocol_id; /**< The ID of the protocol. */
-
- PurpleConnection *gc; /**< The connection handle. */
- gboolean disconnecting; /**< The account is currently disconnecting */
-
- GHashTable *settings; /**< Protocol-specific settings. */
- GHashTable *ui_settings; /**< UI-specific settings. */
-
- PurpleProxyInfo *proxy_info; /**< Proxy information. This will be set */
- /* to NULL when the account inherits */
- /* proxy settings from global prefs. */
-
- /*
- * TODO: Supplementing the next two linked lists with hash tables
- * should help performance a lot when these lists are long. This
- * matters quite a bit for protocols like MSN, where all your
- * buddies are added to your permit list. Currently we have to
- * iterate through the entire list if we want to check if someone
- * is permitted or denied. We should do this for 3.0.0.
- * Or maybe use a GTree.
- */
- GSList *permit; /**< Permit list. */
- GSList *deny; /**< Deny list. */
- PurplePrivacyType perm_deny; /**< The permit/deny setting. */
-
- GList *status_types; /**< Status types. */
-
- PurplePresence *presence; /**< Presence. */
- PurpleLog *system_log; /**< The system log */
-
- void *ui_data; /**< The UI can put data here. */
- PurpleAccountRegistrationCb registration_cb;
- void *registration_cb_user_data;
-
- gpointer priv; /**< Pointer to opaque private data. */
-};
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**************************************************************************/
-/** @name Account API */
-/**************************************************************************/
-/*@{*/
-
-/**
- * Creates a new account.
- *
- * @param username The username.
- * @param protocol_id The protocol ID.
- *
- * @return The new account.
- */
-PurpleAccount *purple_account_new(const char *username, const char *protocol_id);
-
-/**
- * Destroys an account.
- *
- * @param account The account to destroy.
- */
-void purple_account_destroy(PurpleAccount *account);
-
-/**
- * Connects to an account.
- *
- * @param account The account to connect to.
- */
-void purple_account_connect(PurpleAccount *account);
-
-/**
- * Sets the callback for successful registration.
- *
- * @param account The account for which this callback should be used
- * @param cb The callback
- * @param user_data The user data passed to the callback
- */
-void purple_account_set_register_callback(PurpleAccount *account, PurpleAccountRegistrationCb cb, void *user_data);
-
-/**
- * Registers an account.
- *
- * @param account The account to register.
- */
-void purple_account_register(PurpleAccount *account);
-
-/**
- * Unregisters an account (deleting it from the server).
- *
- * @param account The account to unregister.
- * @param cb Optional callback to be called when unregistration is complete
- * @param user_data user data to pass to the callback
- */
-void purple_account_unregister(PurpleAccount *account, PurpleAccountUnregistrationCb cb, void *user_data);
-
-/**
- * Disconnects from an account.
- *
- * @param account The account to disconnect from.
- */
-void purple_account_disconnect(PurpleAccount *account);
-
-/**
- * Notifies the user that the account was added to a remote user's
- * buddy list.
- *
- * This will present a dialog informing the user that he was added to the
- * remote user's buddy list.
- *
- * @param account The account that was added.
- * @param remote_user The name of the user that added this account.
- * @param id The optional ID of the local account. Rarely used.
- * @param alias The optional alias of the user.
- * @param message The optional message sent from the user adding you.
- */
-void purple_account_notify_added(PurpleAccount *account, const char *remote_user,
- const char *id, const char *alias,
- const char *message);
-
-/**
- * Notifies the user that the account was addded to a remote user's buddy
- * list and asks ther user if they want to add the remote user to their buddy
- * list.
- *
- * This will present a dialog informing the local user that the remote user
- * added them to the remote user's buddy list and will ask if they want to add
- * the remote user to the buddy list.
- *
- * @param account The account that was added.
- * @param remote_user The name of the user that added this account.
- * @param id The optional ID of the local account. Rarely used.
- * @param alias The optional alias of the user.
- * @param message The optional message sent from the user adding you.
- */
-void purple_account_request_add(PurpleAccount *account, const char *remote_user,
- const char *id, const char *alias,
- const char *message);
-
-/**
- * Notifies the user that a remote user has wants to add the local user
- * to his or her buddy list and requires authorization to do so.
- *
- * This will present a dialog informing the user of this and ask if the
- * user authorizes or denies the remote user from adding him.
- *
- * @param account The account that was added
- * @param remote_user The name of the user that added this account.
- * @param id The optional ID of the local account. Rarely used.
- * @param alias The optional alias of the remote user.
- * @param message The optional message sent by the user wanting to add you.
- * @param on_list Is the remote user already on the buddy list?
- * @param auth_cb The callback called when the local user accepts
- * @param deny_cb The callback called when the local user rejects
- * @param user_data Data to be passed back to the above callbacks
- *
- * @return A UI-specific handle.
- */
-void *purple_account_request_authorization(PurpleAccount *account, const char *remote_user,
- const char *id, const char *alias, const char *message, gboolean on_list,
- PurpleAccountRequestAuthorizationCb auth_cb, PurpleAccountRequestAuthorizationCb deny_cb, void *user_data);
-
-/**
- * Close account requests registered for the given PurpleAccount
- *
- * @param account The account for which requests should be closed
- */
-void purple_account_request_close_with_account(PurpleAccount *account);
-
-/**
- * Close the account request for the given ui handle
- *
- * @param ui_handle The ui specific handle for which requests should be closed
- */
-void purple_account_request_close(void *ui_handle);
-
-/**
- * Requests a password from the user for the account. Does not set the
- * account password on success; do that in ok_cb if desired.
- *
- * @param account The account to request the password for.
- * @param ok_cb The callback for the OK button.
- * @param cancel_cb The callback for the cancel button.
- * @param user_data User data to be passed into callbacks.
- */
-void purple_account_request_password(PurpleAccount *account, GCallback ok_cb,
- GCallback cancel_cb, void *user_data);
-
-/**
- * Requests information from the user to change the account's password.
- *
- * @param account The account to change the password on.
- */
-void purple_account_request_change_password(PurpleAccount *account);
-
-/**
- * Requests information from the user to change the account's
- * user information.
- *
- * @param account The account to change the user information on.
- */
-void purple_account_request_change_user_info(PurpleAccount *account);
-
-/**
- * Sets the account's username.
- *
- * @param account The account.
- * @param username The username.
- */
-void purple_account_set_username(PurpleAccount *account, const char *username);
-
-/**
- * Sets the account's password.
More information about the commits
mailing list