Changeset 101079 in webkit


Ignore:
Timestamp:
Nov 23, 2011 6:25:45 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Add zlib depend when freetype is used.
https://bugs.webkit.org/show_bug.cgi?id=66365

Unreviewed build fix.

When freetype is enabled, uncompress() function is used by
WOFFFileFormat.cpp. Since zlib is not required by freetype, we need to
add libz as dependency for fix linking issue.

.:

Patch by Halton Huo <halton.huo@intel.com> on 2011-11-23

  • Source/cmake/OptionsEfl.cmake: search for ZLIB

Source/WebCore:

No new test because this change is only to fix linking issue.

Patch by Halton Huo <halton.huo@intel.com> on 2011-11-23

  • PlatformEfl.cmake: add ZLIB as dependency when using freetype
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r101060 r101079  
     12011-11-23  Halton Huo  <halton.huo@intel.com>
     2
     3        [EFL] Add zlib depend when freetype is used.
     4        https://bugs.webkit.org/show_bug.cgi?id=66365
     5
     6        Unreviewed build fix.
     7
     8        When freetype is enabled, uncompress() function is used by
     9        WOFFFileFormat.cpp. Since zlib is not required by freetype, we need to
     10        add libz as dependency for fix linking issue.
     11
     12        * Source/cmake/OptionsEfl.cmake: search for ZLIB
     13
    1142011-10-08  Martin Robinson  <mrobinson@igalia.com>
    215
  • trunk/Source/WebCore/ChangeLog

    r101078 r101079  
     12011-11-23  Halton Huo  <halton.huo@intel.com>
     2
     3        [EFL] Add zlib depend when freetype is used.
     4        https://bugs.webkit.org/show_bug.cgi?id=66365
     5
     6        Unreviewed build fix.
     7
     8        When freetype is enabled, uncompress() function is used by
     9        WOFFFileFormat.cpp. Since zlib is not required by freetype, we need to
     10        add libz as dependency for fix linking issue.
     11
     12        No new test because this change is only to fix linking issue.
     13
     14        * PlatformEfl.cmake: add ZLIB as dependency when using freetype
     15
    1162011-11-23  Mihnea Ovidenie  <mihnea@adobe.com>
    217
  • trunk/Source/WebCore/PlatformEfl.cmake

    r100726 r101079  
    118118      platform/graphics/freetype/SimpleFontDataFreeType.cpp
    119119    )
     120    LIST(APPEND WebCore_LIBRARIES
     121      ${ZLIB_LIBRARIES}
     122    )
    120123  ENDIF ()
    121124
  • trunk/Source/cmake/OptionsEfl.cmake

    r100722 r101079  
    125125IF (FONT_BACKEND STREQUAL "freetype")
    126126  FIND_PACKAGE(Freetype REQUIRED)
     127  FIND_PACKAGE(ZLIB REQUIRED)
    127128  SET(WTF_USE_FREETYPE 1)
    128129  ADD_DEFINITIONS(-DWTF_USE_FREETYPE=1)
Note: See TracChangeset for help on using the changeset viewer.