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

Changeset 136212 in webkit


Ignore:
Timestamp:
Nov 30, 2012, 12:54:40 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] libwebcore_efl.a fail to link when enable webgl
​https://bugs.webkit.org/show_bug.cgi?id=103610

Patch by Halton Huo <​halton.huo@intel.com> on 2012-11-30
Reviewed by Gyuyoung Kim.

libwebcore_efl.a should link to X11, Xcomposite and Xrender libraries when ENABLE_WEBGL is ON

No new tests, no behavior change for layout tests.

  • PlatformEfl.cmake: Append ${X11_X11_LIB}, ${X11_Xcomposite_LIB} and ${X11_Xrender_LIB} to WebCore_LIBRARIES
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r136211 r136212  
     12012-11-30  Halton Huo  <halton.huo@intel.com>
     2
     3        [EFL] libwebcore_efl.a fail to link when enable webgl
     4        https://bugs.webkit.org/show_bug.cgi?id=103610
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        libwebcore_efl.a should link to X11, Xcomposite and Xrender libraries when ENABLE_WEBGL is ON
     9
     10        No new tests, no behavior change for layout tests.
     11
     12        * PlatformEfl.cmake: Append ${X11_X11_LIB}, ${X11_Xcomposite_LIB} and ${X11_Xrender_LIB} to WebCore_LIBRARIES
     13
    1142012-11-30  Tim Horton  <timothy_horton@apple.com>
    215
  • trunk/Source/WebCore/PlatformEfl.cmake

    r135569 r136212  
    298298    platform/graphics/texmap/TextureMapperShaderManager.cpp
    299299  )
     300  LIST(APPEND WebCore_LIBRARIES
     301    ${X11_X11_LIB}
     302    ${X11_Xcomposite_LIB}
     303    ${X11_Xrender_LIB}
     304  )
    300305ENDIF ()
    301306
Note: See TracChangeset for help on using the changeset viewer.