X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgversionmacros.h;h=403fca0afb1e4601aa7ec9fe284ed6b826501e49;hb=30ed5f53e205e6bfc35126a9d3c62dac8a9c5dad;hp=19d58a07ee915557a46a39aef69e2478cb1fe80a;hpb=fbe3ce89a8a3696393d504fdd4372b86837eac6a;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gversionmacros.h b/glib/gversionmacros.h index 19d58a0..403fca0 100644 --- a/glib/gversionmacros.h +++ b/glib/gversionmacros.h @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library; if not, see . */ /* @@ -110,13 +108,23 @@ /** * GLIB_VERSION_2_40: * - * A macro that evaluates to the 2.38 version of GLib, in a format + * A macro that evaluates to the 2.40 version of GLib, in a format * that can be used by the C pre-processor. * * Since: 2.40 */ #define GLIB_VERSION_2_40 (G_ENCODE_VERSION (2, 40)) +/** + * GLIB_VERSION_2_42: + * + * A macro that evaluates to the 2.42 version of GLib, in a format + * that can be used by the C pre-processor. + * + * Since: 2.42 + */ +#define GLIB_VERSION_2_42 (G_ENCODE_VERSION (2, 42)) + /* evaluates to the current stable version; for development cycles, * this means the next stable target */ @@ -320,4 +328,18 @@ # define GLIB_AVAILABLE_IN_2_40 _GLIB_EXTERN #endif +#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_42 +# define GLIB_DEPRECATED_IN_2_42 GLIB_DEPRECATED +# define GLIB_DEPRECATED_IN_2_42_FOR(f) GLIB_DEPRECATED_FOR(f) +#else +# define GLIB_DEPRECATED_IN_2_42 _GLIB_EXTERN +# define GLIB_DEPRECATED_IN_2_42_FOR(f) _GLIB_EXTERN +#endif + +#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_42 +# define GLIB_AVAILABLE_IN_2_42 GLIB_UNAVAILABLE(2, 42) +#else +# define GLIB_AVAILABLE_IN_2_42 _GLIB_EXTERN +#endif + #endif /* __G_VERSION_MACROS_H__ */