GCC won't allow "IMPORT" on the definition of a function, in this case an inline function - added to bug 2962
The error message is "function 'void KJS::DebuggerImp::abort()' definition is marked dllimport"
--- a/webengine/osswebengine/JavaScriptCore/kjs/internal.h Thu Jul 22 16:44:19 2010 +0100
+++ b/webengine/osswebengine/JavaScriptCore/kjs/internal.h Fri Jul 23 12:08:17 2010 +0100
@@ -135,7 +135,7 @@
isAborted = false;
}
-IMPORT void abort() { isAborted = true; }
+ void abort() { isAborted = true; }
bool aborted() const { return isAborted; }
AttachedInterpreter *interps;