Title: [119981] trunk
Revision
119981
Author
[email protected]
Date
2012-06-11 08:31:19 -0700 (Mon, 11 Jun 2012)

Log Message

Unreviewed. Fix make distcheck issues.

.:

* GNUmakefile.am: Initialize jscore nosource variables.

Source/_javascript_Core:

* GNUmakefile.list.am: Remove non existent header file.

Source/WebCore:

* GNUmakefile.am: Add idl files in editing dir to EXTRA_DIST.
* GNUmakefile.list.am: Add missing header file.

Source/WTF:

* GNUmakefile.list.am: Add missing header file.

Modified Paths

Diff

Modified: trunk/ChangeLog (119980 => 119981)


--- trunk/ChangeLog	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/ChangeLog	2012-06-11 15:31:19 UTC (rev 119981)
@@ -1,3 +1,9 @@
+2012-06-11  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck issues.
+
+        * GNUmakefile.am: Initialize jscore nosource variables.
+
 2012-06-10  Darin Adler  <[email protected]>
 
         Remove unneeded callRemovedLastRef function from TreeShared refactoring

Modified: trunk/GNUmakefile.am (119980 => 119981)


--- trunk/GNUmakefile.am	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/GNUmakefile.am	2012-06-11 15:31:19 UTC (rev 119981)
@@ -67,6 +67,8 @@
 _javascript_core_sources :=
 _javascript_core_built_sources :=
 _javascript_core_built_nosources :=
+llint_nosources :=
+offlineasm_nosources :=
 webcore_cppflags :=
 webcore_modules_sources :=
 webcore_sources :=

Modified: trunk/Source/_javascript_Core/ChangeLog (119980 => 119981)


--- trunk/Source/_javascript_Core/ChangeLog	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-06-11 15:31:19 UTC (rev 119981)
@@ -1,3 +1,9 @@
+2012-06-11  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck issues.
+
+        * GNUmakefile.list.am: Remove non existent header file.
+
 2012-06-10  Patrick Gansterer  <[email protected]>
 
         Unreviewed. Build fix for !ENABLE(JIT) after r119844 and r119925.

Modified: trunk/Source/_javascript_Core/GNUmakefile.list.am (119980 => 119981)


--- trunk/Source/_javascript_Core/GNUmakefile.list.am	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/_javascript_Core/GNUmakefile.list.am	2012-06-11 15:31:19 UTC (rev 119981)
@@ -641,12 +641,12 @@
 	Source/_javascript_Core/jit/ExecutableAllocatorFixedVMPool.cpp
 endif
 
-llint_nosources = \
+llint_nosources += \
 	Source/_javascript_Core/llint/LowLevelInterpreter32_64.asm \
 	Source/_javascript_Core/llint/LowLevelInterpreter64.asm \
 	Source/_javascript_Core/llint/LowLevelInterpreter.asm
 
-offlineasm_nosources = \
+offlineasm_nosources += \
 	Source/_javascript_Core/offlineasm/armv7.rb \
 	Source/_javascript_Core/offlineasm/asm.rb \
 	Source/_javascript_Core/offlineasm/ast.rb \
@@ -675,8 +675,7 @@
 	Source/_javascript_Core/API/tests/minidom.c
 
 Programs_LLIntOffsetsExtractor_SOURCES = \
-	Source/_javascript_Core/llint/LLIntOffsetsExtractor.cpp \
-	Source/_javascript_Core/llint/LLIntOffsetsExtractor.h
+	Source/_javascript_Core/llint/LLIntOffsetsExtractor.cpp
 
 Programs_jsc_@WEBKITGTK_API_MAJOR_VERSION@_SOURCES = \
 	Source/_javascript_Core/JSCTypedArrayStubs.h \

Modified: trunk/Source/WTF/ChangeLog (119980 => 119981)


--- trunk/Source/WTF/ChangeLog	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/WTF/ChangeLog	2012-06-11 15:31:19 UTC (rev 119981)
@@ -1,3 +1,9 @@
+2012-06-11  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck issues.
+
+        * GNUmakefile.list.am: Add missing header file.
+
 2012-06-09  Dominic Cooney  <[email protected]>
 
         [Chromium] Remove _javascript_Core dependencies from gyp

Modified: trunk/Source/WTF/GNUmakefile.list.am (119980 => 119981)


--- trunk/Source/WTF/GNUmakefile.list.am	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/WTF/GNUmakefile.list.am	2012-06-11 15:31:19 UTC (rev 119981)
@@ -133,6 +133,7 @@
     Source/WTF/wtf/StackBounds.h \
     Source/WTF/wtf/StaticConstructors.h \
     Source/WTF/wtf/StdLibExtras.h \
+    Source/WTF/wtf/StreamBuffer.h \
     Source/WTF/wtf/StringExtras.h \
     Source/WTF/wtf/StringHasher.h \
     Source/WTF/wtf/TCPackedCache.h \

Modified: trunk/Source/WebCore/ChangeLog (119980 => 119981)


--- trunk/Source/WebCore/ChangeLog	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/WebCore/ChangeLog	2012-06-11 15:31:19 UTC (rev 119981)
@@ -1,3 +1,10 @@
+2012-06-11  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck issues.
+
+        * GNUmakefile.am: Add idl files in editing dir to EXTRA_DIST.
+        * GNUmakefile.list.am: Add missing header file.
+
 2012-06-11  Dan Bernstein  <[email protected]>
 
         Reverted r119940 because it caused multiple media tests to fail on Lion.

Modified: trunk/Source/WebCore/GNUmakefile.am (119980 => 119981)


--- trunk/Source/WebCore/GNUmakefile.am	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/WebCore/GNUmakefile.am	2012-06-11 15:31:19 UTC (rev 119981)
@@ -1010,6 +1010,7 @@
 	$(shell ls $(srcdir)/Source/WebCore/Modules/websockets/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/css/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/dom/*.idl) \
+	$(shell ls $(srcdir)/Source/WebCore/editing/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/fileapi/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/html/canvas/*.idl) \
 	$(shell ls $(srcdir)/Source/WebCore/html/shadow/*.idl) \

Modified: trunk/Source/WebCore/GNUmakefile.list.am (119980 => 119981)


--- trunk/Source/WebCore/GNUmakefile.list.am	2012-06-11 14:59:42 UTC (rev 119980)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2012-06-11 15:31:19 UTC (rev 119981)
@@ -3354,6 +3354,7 @@
 	Source/WebCore/platform/graphics/TextRenderingMode.h \
 	Source/WebCore/platform/graphics/TextRun.cpp \
 	Source/WebCore/platform/graphics/TextRun.h \
+	Source/WebCore/platform/graphics/TiledBacking.h \
 	Source/WebCore/platform/graphics/transforms/AffineTransform.cpp \
 	Source/WebCore/platform/graphics/transforms/AffineTransform.h \
 	Source/WebCore/platform/graphics/transforms/IdentityTransformOperation.h \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to