diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/gtk-compat.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/e-util/gtk-compat.h b/e-util/gtk-compat.h index 2bcdf9fd86..635540bb3e 100644 --- a/e-util/gtk-compat.h +++ b/e-util/gtk-compat.h @@ -4,10 +4,11 @@ #include <gtk/gtk.h> /* Provide a compatibility layer for accessor functions introduced - * in GTK+ 2.22 which we need to build with sealed GDK. That way it + * in GTK+ 2.21.1 which we need to build with sealed GDK. That way it * is still possible to build with GTK+ 2.20. */ -#if !GTK_CHECK_VERSION(2,21,2) +#if (GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION < 21) \ + || (GTK_MINOR_VERSION == 21 && GTK_MICRO_VERSION < 1) #define gdk_drag_context_get_actions(context) (context)->actions #define gdk_drag_context_get_suggested_action(context) (context)->suggested_action |