[evolution] Check for gtk version below 2.21.1 for comptability with gseal changes
- From: Chenthill Palanisamy <pchen src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Check for gtk version below 2.21.1 for comptability with gseal changes
- Date: Thu, 10 Jun 2010 09:23:58 +0000 (UTC)
commit c209ecc49865fc3f4d5574e6e5f8585baf12795f
Author: Chenthill Palanisamy <pchenthill novell com>
Date: Thu Jun 10 12:15:14 2010 +0530
Check for gtk version below 2.21.1 for comptability with gseal changes
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 2bcdf9f..635540b 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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]