summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2018-08-27 23:45:44 +1000
committerMatthew Waters <matthew@centricular.com>2018-09-03 13:55:57 +1000
commit6545e7558c458b83806d80f781c31a86344911b2 (patch)
tree3c7532d28af07e69581bd0a1745ab3ac5cc03fdd
parent2a34e66daf92269e288abcd2de3ead7e41a72a40 (diff)
downloadglib-6545e7558c458b83806d80f781c31a86344911b2.tar.gz
gversionmacros: add version macros for GLib 2.60
-rw-r--r--glib/gversionmacros.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/glib/gversionmacros.h b/glib/gversionmacros.h
index 9d2995828..0ba8f635b 100644
--- a/glib/gversionmacros.h
+++ b/glib/gversionmacros.h
@@ -205,6 +205,16 @@
*/
#define GLIB_VERSION_2_58 (G_ENCODE_VERSION (2, 58))
+/**
+ * GLIB_VERSION_2_60:
+ *
+ * A macro that evaluates to the 2.60 version of GLib, in a format
+ * that can be used by the C pre-processor.
+ *
+ * Since: 2.60
+ */
+#define GLIB_VERSION_2_60 (G_ENCODE_VERSION (2, 60))
+
/* evaluates to the current stable version; for development cycles,
* this means the next stable target
*/
@@ -534,4 +544,18 @@
# define GLIB_AVAILABLE_IN_2_58 _GLIB_EXTERN
#endif
+#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_60
+# define GLIB_DEPRECATED_IN_2_60 GLIB_DEPRECATED
+# define GLIB_DEPRECATED_IN_2_60_FOR(f) GLIB_DEPRECATED_FOR(f)
+#else
+# define GLIB_DEPRECATED_IN_2_60 _GLIB_EXTERN
+# define GLIB_DEPRECATED_IN_2_60_FOR(f) _GLIB_EXTERN
+#endif
+
+#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_60
+# define GLIB_AVAILABLE_IN_2_60 GLIB_UNAVAILABLE(2, 60)
+#else
+# define GLIB_AVAILABLE_IN_2_60 _GLIB_EXTERN
+#endif
+
#endif /* __G_VERSION_MACROS_H__ */