From 959afb514aa176e73d1f672bbff15f7076cbbc56 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 12 Nov 2012 13:02:12 +0000 Subject: [PATCH] define XCB_ATOM_NONE if not defined because opensuse sucks ticket #1722 this commit brought to you by the recipient of the 2012 E-Devel "Hater" award SVN revision: 79157 --- src/bin/e_alert_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/e_alert_main.c b/src/bin/e_alert_main.c index 71344bd26..cbb27f0c3 100644 --- a/src/bin/e_alert_main.c +++ b/src/bin/e_alert_main.c @@ -19,6 +19,10 @@ #define WINDOW_WIDTH 320 #define WINDOW_HEIGHT 240 +#ifndef XCB_ATOM_NONE +# define XCB_ATOM_NONE = 0 +#endif + /* local function prototypes */ static int _e_alert_connect(void); static void _e_alert_create(void);