From fed9353449e9543e047eaf74486f1dad370be9df Mon Sep 17 00:00:00 2001 From: darin Date: Sat, 1 Jul 2006 01:31:08 +0000 Subject: [PATCH] Reviewed by Darin. Compilation fixes for Linux/Gdk. * JavaScriptCore/kjs/interpreter.cpp: added include of signal.h * JavaScriptCore/kjs/ExecState.h: added missing class declaration * JavaScriptCore/kjs/ExecState.cpp: case wrong on include of context.h * JavaScriptCore/JavaScriptCoreSources.bkl: added Context.cpp and ExecState.cpp git-svn-id: http://svn.webkit.org/repository/webkit/trunk@15118 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- JavaScriptCore/ChangeLog | 11 +++++++++++ JavaScriptCore/JavaScriptCoreSources.bkl | 2 ++ JavaScriptCore/kjs/ExecState.cpp | 2 +- JavaScriptCore/kjs/ExecState.h | 1 + JavaScriptCore/kjs/interpreter.cpp | 1 + 5 files changed, 16 insertions(+), 1 deletion(-) diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog index d3f798f2e8c..aa11adb2aa9 100644 --- a/JavaScriptCore/ChangeLog +++ b/JavaScriptCore/ChangeLog @@ -1,3 +1,14 @@ +2006-06-30 Mike Emmel + + Reviewed by Darin. + + Compilation fixes for Linux/Gdk. + + * JavaScriptCore/kjs/interpreter.cpp: added include of signal.h + * JavaScriptCore/kjs/ExecState.h: added missing class declaration + * JavaScriptCore/kjs/ExecState.cpp: case wrong on include of context.h + * JavaScriptCore/JavaScriptCoreSources.bkl: added Context.cpp and ExecState.cpp + === Safari-521.14 === 2006-06-29 Maciej Stachowiak diff --git a/JavaScriptCore/JavaScriptCoreSources.bkl b/JavaScriptCore/JavaScriptCoreSources.bkl index ebc8c560407..20188cc886f 100644 --- a/JavaScriptCore/JavaScriptCoreSources.bkl +++ b/JavaScriptCore/JavaScriptCoreSources.bkl @@ -6,10 +6,12 @@ kjs/array_object.cpp kjs/bool_object.cpp kjs/collector.cpp + kjs/Context.cpp kjs/date_object.cpp kjs/debugger.cpp kjs/dtoa.cpp kjs/error_object.cpp + kjs/ExecState.cpp kjs/fpconst.cpp kjs/function.cpp kjs/function_object.cpp diff --git a/JavaScriptCore/kjs/ExecState.cpp b/JavaScriptCore/kjs/ExecState.cpp index b4bda15626c..add796269b9 100644 --- a/JavaScriptCore/kjs/ExecState.cpp +++ b/JavaScriptCore/kjs/ExecState.cpp @@ -22,7 +22,7 @@ * */ -#include "Context.h" +#include "context.h" #include "ExecState.h" #include "internal.h" diff --git a/JavaScriptCore/kjs/ExecState.h b/JavaScriptCore/kjs/ExecState.h index 7a6f0cc69ad..153b5f03a28 100644 --- a/JavaScriptCore/kjs/ExecState.h +++ b/JavaScriptCore/kjs/ExecState.h @@ -29,6 +29,7 @@ namespace KJS { class Context; + class Interpreter; /** * Represents the current state of script execution. This object allows you diff --git a/JavaScriptCore/kjs/interpreter.cpp b/JavaScriptCore/kjs/interpreter.cpp index 6ee9ea5f50a..066efc338c5 100644 --- a/JavaScriptCore/kjs/interpreter.cpp +++ b/JavaScriptCore/kjs/interpreter.cpp @@ -57,6 +57,7 @@ #include #include #include +#include namespace KJS { -- GitLab