summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-06-14 11:26:08 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-06-14 11:26:08 +0200
commit7a0fdf5423b537cf7e2d8fffcb5126a8d4b7d438 (patch)
tree3e2422e22329065453774bbb1c987e40c0fc88db
parent6da3bab57fee7e0e340247f5183572d6edc7e525 (diff)
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.
-rw-r--r--m4/gst-glib2.m45
1 files changed, 5 insertions, 0 deletions
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]),,