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

andersca at apple.com andersca at apple.com
Wed Dec 22 11:32:54 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1af31434a634d82f7a10eb7c23342fa2d657e9e1
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 29 00:51:27 2010 +0000

    Fix 64-bit build.
    
    * WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:
    (WebKit::NPN_GetValue):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64248 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index fc36a1f..bca74f7 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,10 @@
+2010-07-28  Anders Carlsson  <andersca at apple.com>
+
+        Fix 64-bit build.
+
+        * WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:
+        (WebKit::NPN_GetValue):
+
 2010-07-28  Brady Eidson  <beidson at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp b/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp
index 3a396ec..6c931b7 100644
--- a/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp
+++ b/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp
@@ -420,11 +420,14 @@ static NPError NPN_GetValue(NPP npp, NPNVariable variable, void *value)
             *(NPBool*)value = true;
             break;
 
+#ifndef NP_NO_CARBON
        case NPNVsupportsCarbonBool:
             // FIXME: We should support the Carbon event model.
             *(NPBool*)value = false;
             break;
 #endif
+
+#endif
         default:
             notImplemented();
             return NPERR_GENERIC_ERROR;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list