Changeset 160490 in webkit


Ignore:
Timestamp:
Dec 12, 2013 9:21:34 AM (10 years ago)
Author:
zandobersek@gmail.com
Message:

[Autotools] Prepend the WebCore layer archives' names with 'lib'
https://bugs.webkit.org/show_bug.cgi?id=125627

Reviewed by Martin Robinson.

Source/WebKit2:

  • GNUmakefile.am: Libtool can complain about the WebCore layer archives not being prepended with 'lib'

when they are used during linking, so the prefix is now added to avoid such issues.

Tools:

  • TestWebKitAPI/GNUmakefile.am: Libtool can complain about the WebCore layer archives not being prepended

with 'lib' when they are used during linking, so the prefix is now added to avoid such issues.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160487 r160490  
     12013-12-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Prepend the WebCore layer archives' names with 'lib'
     4        https://bugs.webkit.org/show_bug.cgi?id=125627
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: Libtool can complain about the WebCore layer archives not being prepended with 'lib'
     9        when they are used during linking, so the prefix is now added to avoid such issues.
     10
    1112013-12-12  Csaba Osztrogonác  <ossy@webkit.org>
    212
  • trunk/Source/WebKit2/GNUmakefile.am

    r160482 r160490  
    665665webcore_layer_gtk2_archives = $(foreach lib, $(webcore_layer_gtk2_deps), $(shell echo $(lib) | sed "s/\(.*\)\.la/.libs\/\1.a/"))
    666666
    667 WebCoreLayerGtk2.a: $(webcore_layer_gtk2_deps)
     667libWebCoreLayerGtk2.a: $(webcore_layer_gtk2_deps)
    668668        $(AM_V_GEN)
    669669        $(AM_V_at)$(shell rm -f $@)
     
    673673
    674674DISTCLEANFILES += \
    675         $(top_builddir)/WebCoreLayerGtk2.a
     675        $(top_builddir)/libWebCoreLayerGtk2.a
    676676
    677677Programs_WebKitPluginProcess_CPPFLAGS = \
     
    734734        -lpthread \
    735735        libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
    736         WebCoreLayerGtk2.a \
     736        libWebCoreLayerGtk2.a \
    737737        libWebKit2Platform.la \
    738738        $(CAIRO_LIBS) \
  • trunk/Tools/ChangeLog

    r160486 r160490  
     12013-12-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Prepend the WebCore layer archives' names with 'lib'
     4        https://bugs.webkit.org/show_bug.cgi?id=125627
     5
     6        Reviewed by Martin Robinson.
     7
     8        * TestWebKitAPI/GNUmakefile.am: Libtool can complain about the WebCore layer archives not being prepended
     9        with 'lib' when they are used during linking, so the prefix is now added to avoid such issues.
     10
    1112013-12-12  Commit Queue  <commit-queue@webkit.org>
    212
  • trunk/Tools/TestWebKitAPI/GNUmakefile.am

    r160482 r160490  
    122122webcore_layer_archives = $(foreach lib, $(webcore_layer_deps), $(shell echo $(lib) | sed "s/\(.*\)\.la/.libs\/\1.a/"))
    123123
    124 WebCoreLayer.a: $(webcore_layer_deps)
     124libWebCoreLayer.a: $(webcore_layer_deps)
    125125        $(AM_V_GEN)
    126126        $(AM_V_at)$(shell rm -f $@)
     
    130130
    131131DISTCLEANFILES += \
    132         $(top_builddir)/WebCoreLayer.a
     132        $(top_builddir)/libWebCoreLayer.a
    133133
    134134Programs_TestWebKitAPI_TestWebCore_CPPFLAGS = \
     
    145145        libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
    146146        libWTF.la \
    147         WebCoreLayer.a \
     147        libWebCoreLayer.a \
    148148        $(CAIRO_LIBS) \
    149149        $(FREETYPE_LIBS) \
Note: See TracChangeset for help on using the changeset viewer.