Ticket #62842: patch-Source_WebKit_Platform_IPC_Connection.cpp.diff

File patch-Source_WebKit_Platform_IPC_Connection.cpp.diff, 1.4 KB (added by cooljeanius (Eric Gallager), 3 years ago)

patch I had to apply to webkit2-gtk sources to get it to build for me

  • /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_www_webkit2-gtk/webkit2-gtk/work/webkitgtk-2.28.2/Source/WebKit/Platform/IPC/Connection.cpp

    old new  
    3636#include <wtf/text/WTFString.h>
    3737#include <wtf/threads/BinarySemaphore.h>
    3838
     39#include <unistd.h>
     40
    3941#if PLATFORM(COCOA)
    4042#include "MachMessage.h"
    4143#endif
     
    669671    }
    670672
    671673#if OS(DARWIN)
    672     RELEASE_LOG_ERROR(IPC, "Connection::waitForSyncReply: Timed-out while waiting for reply for %{public}s::%{public}s from process %d, id = %" PRIu64, messageReceiverName.toString().data(), messageName.toString().data(), remoteProcessID(), syncRequestID);
     674    RELEASE_LOG_ERROR(IPC, "Connection::waitForSyncReply: Timed-out while waiting for reply for %{public}s::%{public}s from process %d, id = %" PRIu64, messageReceiverName.toString().data(), messageName.toString().data(), (int)getpid(), syncRequestID);
    673675#else
    674676    RELEASE_LOG_ERROR(IPC, "Connection::waitForSyncReply: Timed-out while waiting for reply for %s::%s, id = %" PRIu64, messageReceiverName.toString().data(), messageName.toString().data(), syncRequestID);
    675677#endif