pidgin/pidgin

Merged in default (pull request #645)

2019-11-15, Gary Kramlich
e05cc93b11f9
Merged in default (pull request #645)

The clang version of G_GNUC_{BEGIN,END}_IGNORE_DEPRECATIONS was added in glib 2.41.4 and we depend on glib 2.44.0

Approved-by: Elliott Sales de Andrade
--- a/libpurple/glibcompat.h Thu Nov 14 22:45:12 2019 -0600
+++ b/libpurple/glibcompat.h Fri Nov 15 05:10:23 2019 +0000
@@ -49,21 +49,6 @@
# define g_stat purple_g_stat
#endif
-
-#ifdef __clang__
-
-#undef G_GNUC_BEGIN_IGNORE_DEPRECATIONS
-#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
- _Pragma ("clang diagnostic push") \
- _Pragma ("clang diagnostic ignored \"-Wdeprecated-declarations\"")
-
-#undef G_GNUC_END_IGNORE_DEPRECATIONS
-#define G_GNUC_END_IGNORE_DEPRECATIONS \
- _Pragma ("clang diagnostic pop")
-
-#endif /* __clang__ */
-
-
/******************************************************************************
* g_assert_* macros
*****************************************************************************/