From: Sebastian Dröge Date: Mon, 14 Jun 2010 09:26:08 +0000 (+0200) Subject: gst-glib.m4: Define G_DISABLE_DEPRECATED for GIT versions X-Git-Tag: upstream/20130618~125 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a0fdf5423b537cf7e2d8fffcb5126a8d4b7d438;p=platform%2Fupstream%2Fgst-common.git gst-glib.m4: Define G_DISABLE_DEPRECATED for GIT versions If deprecated API is found, for which the replacement is in a newer version of GLib than we currently depend on, use the new API in a #if GLIB_CHECK_VERSION block and remove that block after depending on a new enougb GLib version. Fixes bug #605100. --- diff --git a/m4/gst-glib2.m4 b/m4/gst-glib2.m4 index ddf5e40..1a94309 100644 --- a/m4/gst-glib2.m4 +++ b/m4/gst-glib2.m4 @@ -27,6 +27,11 @@ AC_DEFUN([AG_GST_GLIB_CHECK], dnl when using threading primitives) GLIB_CFLAGS="$GLIB_CFLAGS -DG_THREADS_MANDATORY" + dnl Define G_DISABLE_DEPRECATED for GIT versions + if test "x$PACKAGE_VERSION_NANO" = "x1"; then + GLIB_CFLAGS="$GLIB_CFLAGS -DG_DISABLE_DEPRECATED" + fi + AC_ARG_ENABLE(gobject-cast-checks, AS_HELP_STRING([--enable-gobject-cast-checks[=@<:@no/auto/yes@:>@]], [Enable GObject cast checks]),,