[Webkit-unassigned] [Bug 117895] [v2.1.2] GTK2 build fails for undefined GDK_IS_X11_DISPLAY

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jul 10 10:09:27 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=117895





--- Comment #16 from Martin Robinson <mrobinson at webkit.org>  2013-07-10 10:11:28 PST ---
(From update of attachment 206394)
View in context: https://bugs.webkit.org/attachment.cgi?id=206394&action=review

> Source/WebCore/platform/gtk/GtkVersioning.h:53
> +#if defined(GDK_WINDOWING_X11) && !defined(GDK_IS_X11_DISPLAY)
> +#define GDK_IS_X11_DISPLAY(dpy) 1
> +#endif
> +

Perhaps this should be 
#if defined(GDK_WINDOWING_X11) && !defined(GDK_IS_X11_DISPLAY)
#define GDK_IS_X11_DISPLAY(display) 1
#else
#define GDK_IS_X11_DISPLAY(display) 0
#endif

for Windows and Mac?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list