Changeset 145738 in webkit


Ignore:
Timestamp:
Mar 13, 2013 12:46:12 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Build fixes after 145552
https://bugs.webkit.org/show_bug.cgi?id=112267

Patch by Zan Dobersek <zdobersek@igalia.com> on 2013-03-13
Reviewed by Gustavo Noronha Silva.

Source/Platform:

  • GNUmakefile.am: Include the same-level GNUmakefile.list.am.

Fix a typo in the inline visibility compiler flag.

Source/WebKit2:

  • GNUmakefile.am: Narrow down the dependency CFLAGS list to only ones that are actually needed

to build the platformgtk_sources into libPlatformGtk2.la. At the moment this means only
GTK+-2.0 CFLAGS are used.

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/Platform/ChangeLog

    r145623 r145738  
     12013-03-13  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Build fixes after 145552
     4        https://bugs.webkit.org/show_bug.cgi?id=112267
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * GNUmakefile.am: Include the same-level GNUmakefile.list.am.
     9        Fix a typo in the inline visibility compiler flag.
     10
    1112013-03-12  Adam Barth  <abarth@webkit.org>
    212
  • trunk/Source/Platform/GNUmakefile.am

    r145552 r145738  
    66# For now we only build the libPlatformGtk library as there are no source files in place yet
    77# that could be built into libPlatform.
     8
     9include $(srcdir)/Source/Platform/GNUmakefile.list.am
    810
    911platformgtk_cppflags += \
     
    1820
    1921libPlatformGtk_la_CXXFLAGS = \
    20         -fvisibility-inlines-hidder \
     22        -fvisibility-inlines-hidden \
    2123        $(global_cxxflags)
    2224
  • trunk/Source/WebKit2/ChangeLog

    r145731 r145738  
     12013-03-13  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Build fixes after 145552
     4        https://bugs.webkit.org/show_bug.cgi?id=112267
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * GNUmakefile.am: Narrow down the dependency CFLAGS list to only ones that are actually needed
     9        to build the platformgtk_sources into libPlatformGtk2.la. At the moment this means only
     10        GTK+-2.0 CFLAGS are used.
     11
    1122013-03-13  Antoine Quint  <graouts@apple.com>
    213
  • trunk/Source/WebKit2/GNUmakefile.am

    r145561 r145738  
    508508        $(javascriptcore_cppflags) \
    509509        -fno-strict-aliasing \
    510         $(CAIRO_CFLAGS) \
    511         $(CLUTTER_CFLAGS) \
    512         $(COVERAGE_CFLAGS) \
    513         $(ENCHANT_CFLAGS) \
    514         $(FREETYPE_CFLAGS) \
    515         $(GAIL_CFLAGS) \
    516         $(GAMEPAD_CFLAGS) \
    517         $(GEOCLUE_CFLAGS) \
    518         $(GLIB_CFLAGS) \
    519         $(GSTREAMER_CFLAGS) \
    520         $(GTK_CFLAGS) \
    521         $(LIBSECRET_CFLAGS) \
    522         $(LIBSOUP_CFLAGS) \
    523         $(LIBXML_CFLAGS) \
    524         $(LIBXSLT_CFLAGS) \
    525         $(SQLITE3_CFLAGS) \
    526         $(UNICODE_CFLAGS) \
    527         $(XCOMPOSITE_CFLAGS) \
    528         $(XDAMAGE_CFLAGS) \
    529         $(XRENDER_CFLAGS) \
    530         $(XT_CFLAGS)
     510        $(GTK2_CFLAGS)
    531511
    532512# Injected Bundle
Note: See TracChangeset for help on using the changeset viewer.