- diff --git a/Source/JavaScriptCore/runtime/JSLock.cpp b/Source/JavaScriptCore/runtime/JSLock.cpp
- index 2d3a1ad..9309ddc 100644
- --- a/Source/JavaScriptCore/runtime/JSLock.cpp
- +++ b/Source/JavaScriptCore/runtime/JSLock.cpp
- @@ -98,7 +98,7 @@ void JSLock::willDestroyVM(VM* vm)
- void JSLock::setExclusiveThread(std::thread::id threadId)
- {
- - RELEASE_ASSERT(!m_lockCount && m_ownerThreadID == std::thread::id());
- +// RELEASE_ASSERT(!m_lockCount && m_ownerThreadID == std::thread::id());
- m_hasExclusiveThread = (threadId != std::thread::id());
- m_ownerThreadID = threadId;
- }
- diff --git a/Source/WebCore/PlatformHaiku.cmake b/Source/WebCore/PlatformHaiku.cmake
- index 3d4514f..614b583 100644
- --- a/Source/WebCore/PlatformHaiku.cmake
- +++ b/Source/WebCore/PlatformHaiku.cmake
- @@ -81,7 +81,7 @@ LIST(APPEND WebCore_SOURCES
- platform/network/haiku/ResourceRequestHaiku.cpp
- platform/network/haiku/CookieJarHaiku.cpp
- - platform/network/curl/SocketStreamHandleCurl.cpp # not implemented
- + platform/network/haiku/SocketStreamHandleHaiku.cpp # not implemented
- platform/network/NetworkStorageSessionStub.cpp
- platform/posix/FileSystemPOSIX.cpp
- diff --git a/Source/WebCore/platform/network/haiku/SocketStreamHandle.h b/Source/WebCore/platform/network/haiku/SocketStreamHandle.h
- index a82319f..2bdea13 100644
- --- a/Source/WebCore/platform/network/haiku/SocketStreamHandle.h
- +++ b/Source/WebCore/platform/network/haiku/SocketStreamHandle.h
- @@ -33,7 +33,7 @@
- #define SocketStreamHandle_h
- #include "SocketStreamHandleBase.h"
- -
- +#include <Socket.h>
- #include <wtf/PassRefPtr.h>
- #include <wtf/RefCounted.h>
- @@ -48,19 +48,23 @@ namespace WebCore {
- static PassRefPtr<SocketStreamHandle> create(const URL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
- virtual ~SocketStreamHandle();
- -
- + int async_read_push(const char * data, int length);
- + int async_sendPendingData();
- + BSocket * sock;
- protected:
- virtual int platformSend(const char* data, int length);
- virtual void platformClose();
- private:
- SocketStreamHandle(const URL&, SocketStreamHandleClient*);
- -
- + BNetworkAddress *peer;
- + int rd_thread, wr_thread;
- // No authentication for streams per se, but proxy may ask for credentials.
- void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
- void receivedCredential(const AuthenticationChallenge&, const Credential&);
- void receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&);
- void receivedCancellation(const AuthenticationChallenge&);
- +
- };
- } // namespace WebCore
- diff --git a/Source/cmake/FindICU.cmake b/Source/cmake/FindICU.cmake
- index a3fe795..6ef8fc7 100644
- --- a/Source/cmake/FindICU.cmake
- +++ b/Source/cmake/FindICU.cmake
- @@ -22,7 +22,7 @@ find_library(
- NAMES icuuc cygicuuc cygicuuc32
- DOC "Libraries to link against for the common parts of ICU")
- mark_as_advanced(ICU_LIBRARY)
- -
- +message("Helo1 ${PATH}")
- # Copy the results to the output variables.
- if (ICU_INCLUDE_DIR AND ICU_LIBRARY)
- set(ICU_FOUND 1)
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.


