⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 88185 in webkit


Ignore:
Timestamp:
Jun 6, 2011, 1:18:58 PM (15 years ago)
Author:
Martin Robinson
Message:

2011-06-06 Martin Robinson <mrobinson@igalia.com>

Fix the GTK+ build by ensuring that the autogenerated sources
necessary for libWebCoreInternals are recorded in a predeclared
variable before assigning to BUILT_SOURCES.

  • GNUmakefile.am: Assign libWebCoreInternals built sources to libwebcoreinternals_built_sources before adding to the source list and to BUILT_SOURCES.

2011-06-06 Martin Robinson <mrobinson@igalia.com>

Fix the GTK+ build by ensuring that the autogenerated sources
necessary for libWebCoreInternals are recorded in a predeclared
variable before assigning to BUILT_SOURCES.

  • GNUmakefile.am: Predeclare libwebcoreinternals_built_sources.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r88145 r88185  
     12011-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
    1112011-06-06  Carlos Garcia Campos  <cgarcia@igalia.com>
    212
  • trunk/GNUmakefile.am

    r88145 r88185  
    7474webkitgtk_built_nosources :=
    7575webkit2_built_sources :=
     76libwebcoreinternals_built_sources :=
    7677global_cppflags :=
    7778global_cflags :=
  • trunk/Tools/ChangeLog

    r88179 r88185  
     12011-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
    192011-06-06  Yong Li  <yoli@rim.com>
    210
  • trunk/Tools/GNUmakefile.am

    r88145 r88185  
    4848        Source/WebCore/testing/js/WebCoreTestSupport.h
    4949
    50 nodist_libWebCoreInternals_la_SOURCES = \
     50libwebcoreinternals_built_sources += \
    5151        DerivedSources/WebCore/JSInternals.cpp \
    5252        DerivedSources/WebCore/JSInternals.h
    53 BUILT_SOURCES += $(nodist_libWebCoreInternals_la_SOURCES)
     53nodist_libWebCoreInternals_la_SOURCES = $(libwebcoreinternals_built_sources)
     54BUILT_SOURCES += $(libwebcoreinternals_built_sources)
    5455
    5556libWebCoreInternals_la_CPPFLAGS = \
Note: See TracChangeset for help on using the changeset viewer.