[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

paroga at webkit.org paroga at webkit.org
Wed Dec 22 14:56:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 13ab28d067bb07f390cded13e0aaa90508f9415a
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 25 20:08:06 2010 +0000

    2010-10-25  Patrick Gansterer  <paroga at webkit.org>
    
            Reviewed by Adam Roben.
    
            [WINCE] Buildfix for NetworkStateNotifier
            https://bugs.webkit.org/show_bug.cgi?id=48240
    
            WinCE does not support RegisterWaitForSingleObject, so disable it for now.
    
            * platform/network/win/NetworkStateNotifierWin.cpp:
            (WebCore::NetworkStateNotifier::NetworkStateNotifier):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70483 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0635ec4..f907c0a 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-25  Patrick Gansterer  <paroga at webkit.org>
+
+        Reviewed by Adam Roben.
+
+        [WINCE] Buildfix for NetworkStateNotifier
+        https://bugs.webkit.org/show_bug.cgi?id=48240
+
+        WinCE does not support RegisterWaitForSingleObject, so disable it for now.
+
+        * platform/network/win/NetworkStateNotifierWin.cpp:
+        (WebCore::NetworkStateNotifier::NetworkStateNotifier):
+
 2010-10-25  David Hyatt  <hyatt at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/WebCore/platform/network/win/NetworkStateNotifierWin.cpp b/WebCore/platform/network/win/NetworkStateNotifierWin.cpp
index 1620669..e600e41 100644
--- a/WebCore/platform/network/win/NetworkStateNotifierWin.cpp
+++ b/WebCore/platform/network/win/NetworkStateNotifierWin.cpp
@@ -109,11 +109,14 @@ NetworkStateNotifier::NetworkStateNotifier()
 
     memset(&m_overlapped, 0, sizeof(m_overlapped));
 
+// FIXME: Check m_overlapped on WinCE.
+#if !OS(WINCE)
     m_overlapped.hEvent = ::CreateEvent(0, false, false, 0);
 
     ::RegisterWaitForSingleObject(&m_waitHandle, m_overlapped.hEvent, addrChangeCallback, this, INFINITE, 0);
 
     registerForAddressChange();
+#endif
 }
 
-}
+} // namespace WebCore

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list