[Webkit-unassigned] [Bug 141022] Enable WebKit disk cache on OS X

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 29 00:03:51 PST 2015


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

Darin Adler <darin at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #245598|review?                     |review-
              Flags|                            |

--- Comment #4 from Darin Adler <darin at apple.com> ---
Comment on attachment 245598
  --> https://bugs.webkit.org/attachment.cgi?id=245598
patch

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

30 tests are failing

> Source/WebKit2/config.h:89
> +#if ENABLE(NETWORK_PROCESS)
> +#if PLATFORM(MAC)
> +#define ENABLE_NETWORK_CACHE 1
> +#endif
>  #endif

I believe what we want is:

    #if ENABLE(NETWORK_PROCESS) && PLATFORM(MAC)
    #define ENABLE_NETWORK_CACHE 1
    #else
    #define ENABLE_NETWORK_CACHE 0
    #endif

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150129/83c64f46/attachment-0002.html>


More information about the webkit-unassigned mailing list