From 6d62beef13fbb6aaa3dbfa9e27ba5d7eb00bde40 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Mon, 17 Oct 2011 18:54:34 +0200 Subject: [PATCH] Revert "build: Strip out G/GDK/GTK_DISABLE_DEPRECATED" We still depend on GTK+ 2.x which doesn't have the warnings, and don't want deprecated API being used by accident. This reverts commit f9e61620868ed4c3642a80081ec97ae5e1ac45d5. --- configure.ac | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/configure.ac b/configure.ac index e597345e87..6bdea8e15b 100644 --- a/configure.ac +++ b/configure.ac @@ -1943,6 +1943,26 @@ AC_SUBST(MIME_TYPES) CPPFLAGS="${CPPFLAGS} -DGIMP_DISABLE_DEPRECATED -DBABL_DISABLE_DEPRECATED -DGSEAL_ENABLE" +# Make sure not to disable deprecated APIs for unreleased versions. +# We must build without problems with future releases of libraries +# and disabling deprecated API risks breaking the build + +if test "x$have_glib_2_30" != "xyes"; then + CPPFLAGS="${CPPFLAGS} -DG_DISABLE_DEPRECATED" +fi + +if test "x$have_gtk_2_26" != "xyes"; then + CPPFLAGS="${CPPFLAGS} -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" +fi + +if test "x$have_gdk_pixbuf_2_26" != "xyes"; then + CPPFLAGS="${CPPFLAGS} -DGDK_PIXBUF_DISABLE_DEPRECATED" +fi + +if test "x$have_pango_1_32" != "xyes"; then + CPPFLAGS="${CPPFLAGS} -DPANGO_DISABLE_DEPRECATED" +fi + ############################ # Require multihead safe API