Changeset 88185 in webkit
- Timestamp:
- Jun 6, 2011, 1:18:58 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
GNUmakefile.am (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/GNUmakefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r88145 r88185 1 2011-06-06 Martin Robinson <mrobinson@igalia.com> 2 3 Fix the GTK+ build by ensuring that the autogenerated sources 4 necessary for libWebCoreInternals are recorded in a predeclared 5 variable before assigning to BUILT_SOURCES. 6 7 * GNUmakefile.am: Assign libWebCoreInternals built sources to 8 libwebcoreinternals_built_sources before adding to the source list 9 and to BUILT_SOURCES. 10 1 11 2011-06-06 Carlos Garcia Campos <cgarcia@igalia.com> 2 12 -
trunk/GNUmakefile.am
r88145 r88185 74 74 webkitgtk_built_nosources := 75 75 webkit2_built_sources := 76 libwebcoreinternals_built_sources := 76 77 global_cppflags := 77 78 global_cflags := -
trunk/Tools/ChangeLog
r88179 r88185 1 2011-06-06 Martin Robinson <mrobinson@igalia.com> 2 3 Fix the GTK+ build by ensuring that the autogenerated sources 4 necessary for libWebCoreInternals are recorded in a predeclared 5 variable before assigning to BUILT_SOURCES. 6 7 * GNUmakefile.am: Predeclare libwebcoreinternals_built_sources. 8 1 9 2011-06-06 Yong Li <yoli@rim.com> 2 10 -
trunk/Tools/GNUmakefile.am
r88145 r88185 48 48 Source/WebCore/testing/js/WebCoreTestSupport.h 49 49 50 nodist_libWebCoreInternals_la_SOURCES= \50 libwebcoreinternals_built_sources += \ 51 51 DerivedSources/WebCore/JSInternals.cpp \ 52 52 DerivedSources/WebCore/JSInternals.h 53 BUILT_SOURCES += $(nodist_libWebCoreInternals_la_SOURCES) 53 nodist_libWebCoreInternals_la_SOURCES = $(libwebcoreinternals_built_sources) 54 BUILT_SOURCES += $(libwebcoreinternals_built_sources) 54 55 55 56 libWebCoreInternals_la_CPPFLAGS = \
Note:
See TracChangeset
for help on using the changeset viewer.