[Webkit-unassigned] [Bug 126433] webkit-gtk 2.3.3 fails to build on OS X - Conflicting type "Fixed"

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 14 10:02:23 PDT 2015


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

--- Comment #8 from Csaba Osztrogonác <ossy at webkit.org> ---
Comment on attachment 252684
  --> https://bugs.webkit.org/attachment.cgi?id=252684
Patch that fixes the problem

View in context: https://bugs.webkit.org/attachment.cgi?id=252684&action=review

> b/Source/JavaScriptCore/API/WebKitAvailability.h:31
> -#ifdef __APPLE__
> +#include <wtf/Platform.h>
> +
> +#if defined(__APPLE__) && !PLATFORM(GTK)

Including Platform.h is incorrect in an API header, you can 
simply use #if defined(__APPLE__) && !defined(BUILDING_GTK__).

Otherwise I'm not sure if it is the proper fix here.
Darin, what do you think about this strange build issue?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150514/3a4c6603/attachment.html>


More information about the webkit-unassigned mailing list