From 7a0fdf5423b537cf7e2d8fffcb5126a8d4b7d438 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 14 Jun 2010 11:26:08 +0200 Subject: [PATCH] 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. --- m4/gst-glib2.m4 | 5 +++++ 1 file changed, 5 insertions(+) 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]),, -- 2.7.4