Source/JavaScriptCore: Unreviewed, further build fixing on the GTK port.
* GNUmakefile.list.am: Add CompilationResult source files to the build.
Source/WTF: Unreviewed, further GTK build fixing.
* GNUmakefile.am: Make libWTF.la depend on any changes made to the build targets list.
* GNUmakefile.list.am: Add SixCharacterHash source files to the build.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@153312 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index 1cca063..aeaff3e 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,5 +1,11 @@
2013-07-25 Zan Dobersek <zdobersek@igalia.com>
+ Unreviewed, further build fixing on the GTK port.
+
+ * GNUmakefile.list.am: Add CompilationResult source files to the build.
+
+2013-07-25 Zan Dobersek <zdobersek@igalia.com>
+
Unreviewed GTK build fixing.
* GNUmakefile.am: Make the shared libjsc library depend on any changes to the build target list.
diff --git a/Source/JavaScriptCore/GNUmakefile.list.am b/Source/JavaScriptCore/GNUmakefile.list.am
index 1559499..0248890 100644
--- a/Source/JavaScriptCore/GNUmakefile.list.am
+++ b/Source/JavaScriptCore/GNUmakefile.list.am
@@ -664,6 +664,8 @@
Source/JavaScriptCore/runtime/CommonIdentifiers.h \
Source/JavaScriptCore/runtime/CommonSlowPaths.cpp \
Source/JavaScriptCore/runtime/CommonSlowPaths.h \
+ Source/JavaScriptCore/runtime/CompilationResult.cpp \
+ Source/JavaScriptCore/runtime/CompilationResult.h \
Source/JavaScriptCore/runtime/Completion.cpp \
Source/JavaScriptCore/runtime/Completion.h \
Source/JavaScriptCore/runtime/ConstructData.cpp \
diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog
index 40b532b..fcefbcc 100644
--- a/Source/WTF/ChangeLog
+++ b/Source/WTF/ChangeLog
@@ -1,3 +1,10 @@
+2013-07-25 Zan Dobersek <zdobersek@igalia.com>
+
+ Unreviewed, further GTK build fixing.
+
+ * GNUmakefile.am: Make libWTF.la depend on any changes made to the build targets list.
+ * GNUmakefile.list.am: Add SixCharacterHash source files to the build.
+
2013-07-25 Csaba Osztrogonác <ossy@webkit.org>
[GTK] Similar fix to r153304.
diff --git a/Source/WTF/GNUmakefile.am b/Source/WTF/GNUmakefile.am
index 7eab5c6..64a376e 100644
--- a/Source/WTF/GNUmakefile.am
+++ b/Source/WTF/GNUmakefile.am
@@ -3,6 +3,9 @@
noinst_LTLIBRARIES += \
libWTF.la
+wtf_lib_for_dep = libWTF.la
+$(wtf_lib_for_dep): $(srcdir)/Source/WTF/GNUmakefile.list.am
+
libWTF_la_LDFLAGS = \
$(no_undefined)
diff --git a/Source/WTF/GNUmakefile.list.am b/Source/WTF/GNUmakefile.list.am
index 9cf3792..6ee5773 100644
--- a/Source/WTF/GNUmakefile.list.am
+++ b/Source/WTF/GNUmakefile.list.am
@@ -149,6 +149,8 @@
Source/WTF/wtf/SentinelLinkedList.h \
Source/WTF/wtf/SimpleStats.h \
Source/WTF/wtf/SinglyLinkedList.h \
+ Source/WTF/wtf/SixCharacterHash.cpp \
+ Source/WTF/wtf/SixCharacterHash.h \
Source/WTF/wtf/Spectrum.h \
Source/WTF/wtf/StackBounds.cpp \
Source/WTF/wtf/StackBounds.h \