From: Jean-Philippe Orsini Date: Mon, 29 Sep 2014 07:40:55 +0000 (+0200) Subject: disable flag because of deprecation of GtkStatusIcon X-Git-Tag: v1.1.3~1 X-Git-Url: https://git.wpitchoune.net/gitweb/?p=psensor.git;a=commitdiff_plain;h=edb36a8bf9b78fdd8f206d1ec7ae38b526c0496a disable flag because of deprecation of GtkStatusIcon --- diff --git a/configure.ac b/configure.ac index e13331b..37fc249 100644 --- a/configure.ac +++ b/configure.ac @@ -66,9 +66,10 @@ PKG_CHECK_MODULES(GTK, AM_CONDITIONAL(GTK, test -n "$GTK_LIBS") # ensure that only allowed headers are included GTK_CFLAGS+=" -DGTK_DISABLE_SINGLE_INCLUDES " -# ensure that no gtk deprecated symbols are used +# ensure that no gtk/dk deprecated symbols are used GTK_CFLAGS+=" -DGDK_DISABLE_DEPRECATED " -GTK_CFLAGS+=" -DGTK_DISABLE_DEPRECATED " +# do not enable flag because GtkStatusIcon is deprecated +#GTK_CFLAGS+=" -DGTK_DISABLE_DEPRECATED " # ensure use of accessors GTK_CFLAGS+=" -DGSEAL_ENABLE " AC_SUBST(GTK_CFLAGS)