[Webkit-unassigned] [Bug 36332] New: Compilation error, when not enabling plugins

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 18 15:49:11 PDT 2010


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

           Summary: Compilation error, when not enabling plugins
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Other
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Plug-ins
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: yuvalt at boxee.tv


Building with QT without plugins, you get an error of a method which has no
declaration. This will fix it:

Index: WebCore/plugins/PluginView.cpp
===================================================================
--- WebCore/plugins/PluginView.cpp    (revision 56179)
+++ WebCore/plugins/PluginView.cpp    (working copy)
@@ -1298,6 +1298,7 @@
 }
 #endif

+#if ENABLE(NETSCAPE_PLUGIN_API)
 NPError PluginView::getValueStatic(NPNVariable variable, void* value)
 {
     LOG(Plugins, "PluginView::getValueStatic(%s)",
prettyNameForNPNVariable(variable).data());
@@ -1308,6 +1309,7 @@

     return NPERR_GENERIC_ERROR;
 }
+#endif

 NPError PluginView::getValue(NPNVariable variable, void* value)
 {

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list