Changeset 150073 in webkit


Ignore:
Timestamp:
May 14, 2013 10:31:35 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] libPlatform, libPlatformGtk must depend on the related GNUmakefiles
https://bugs.webkit.org/show_bug.cgi?id=115937

Reviewed by Martin Robinson.

Source/Platform:

  • GNUmakefile.am: Set up an artifical dependency so that libPlatform and libPlatformGtk

libraries take into account any changes in this GNUmakefile.am and the GNUmakefile.list.am
located under Source/WebCore. The latter is included due to all the build targets for the
two libraries being listed there.

Source/WebCore:

No new tests - no new functionality.

  • GNUmakefile.am: Fix typos in two libraries' names - Webcore -> WebCore.
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/Platform/ChangeLog

    r149588 r150073  
     12013-05-14  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] libPlatform, libPlatformGtk must depend on the related GNUmakefiles
     4        https://bugs.webkit.org/show_bug.cgi?id=115937
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: Set up an artifical dependency so that libPlatform and libPlatformGtk
     9        libraries take into account any changes in this GNUmakefile.am and the GNUmakefile.list.am
     10        located under Source/WebCore. The latter is included due to all the build targets for the
     11        two libraries being listed there.
     12
    1132013-05-06  Zan Dobersek  <zdobersek@igalia.com>
    214
  • trunk/Source/Platform/GNUmakefile.am

    r149588 r150073  
    4949        libPlatformGtk.la
    5050
     51# Artificial dependencies to try to force a relink of the Platform libraries when their makefile changes.
     52platform_lib_for_dep = libPlatform.la
     53$(platform_lib_for_dep): $(srcdir)/Source/Platform/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
     54
     55platformgtk_lib_for_dep = libPlatformGtk.la
     56$(platformgtk_lib_for_dep): $(srcdir)/Source/Platform/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
     57
    5158libPlatform_la_SOURCES = \
    5259        $(platform_sources)
  • trunk/Source/WebCore/ChangeLog

    r150072 r150073  
     12013-05-14  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] libPlatform, libPlatformGtk must depend on the related GNUmakefiles
     4        https://bugs.webkit.org/show_bug.cgi?id=115937
     5
     6        Reviewed by Martin Robinson.
     7
     8        No new tests - no new functionality.
     9
     10        * GNUmakefile.am: Fix typos in two libraries' names - Webcore -> WebCore.
     11
    1122013-05-13  Ryosuke Niwa  <rniwa@webkit.org>
    213
  • trunk/Source/WebCore/GNUmakefile.am

    r149887 r150073  
    451451endif
    452452
    453 # Artificial dependency to try to force a relink of the WebCore libraries
    454 # When their makefiles change.
     453# Artificial dependencies to try to force a relink of the WebCore libraries when their makefiles change.
    455454webcore_lib_for_dep = libWebCore.la
    456455$(webcore_lib_for_dep): $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am $(srcdir)/Source/autotools/symbols.filter
    457456
    458 webcoremodules_lib_for_dep = libWebcoreModules.la
     457webcoremodules_lib_for_dep = libWebCoreModules.la
    459458$(webcoremodules_lib_for_dep): $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
    460459
    461 webcoreplatform_lib_for_dep = libWebcorePlatform.la
     460webcoreplatform_lib_for_dep = libWebCorePlatform.la
    462461$(webcoreplatform_lib_for_dep): $(srcdir)/Source/WebCore/GNUmakefile.am $(srcdir)/Source/WebCore/GNUmakefile.list.am
    463462
Note: See TracChangeset for help on using the changeset viewer.