summaryrefslogtreecommitdiff
path: root/rsvg-compat.h
blob: 897e4c277ebf66603f9af3c635d33613687855fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* rsvg-compat.h: miscellaneous compatibility functions to deal with deprecations in the platform */

#ifndef RSVG_COMPAT_H
#define RSVG_COMPAT_H

/* g_type_init() was deprecated in glib 2.36.0 */
#if !GLIB_CHECK_VERSION (2, 36, 0)
#  define RSVG_G_TYPE_INIT g_type_init ()
#else
#  define RSVG_G_TYPE_INIT {}
#endif

#endif /* RSVG_COMPAT_H */