Changeset 133432 in webkit


Ignore:
Timestamp:
Nov 4, 2012 9:33:55 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Use _LIBRARIES instead of _LIBRARY
https://bugs.webkit.org/show_bug.cgi?id=101042

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

In CMake Find files, _LIBRARY is intended for internal use, should
use _LIBRARIES instead.

Source/WebCore:

  • PlatformEfl.cmake: s/_LIBRARY}/_LIBRARIES}

Source/WebKit:

  • PlatformEfl.cmake: s/_LIBRARY}/_LIBRARIES}

Source/WebKit2:

  • PlatformEfl.cmake: s/_LIBRARY}/_LIBRARIES}
Location:
trunk/Source
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r133429 r133432  
     12012-11-04  Halton Huo  <halton.huo@intel.com>
     2
     3        [EFL] Use _LIBRARIES instead of _LIBRARY
     4        https://bugs.webkit.org/show_bug.cgi?id=101042
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        In CMake Find files, _LIBRARY is intended for internal use, should
     9        use _LIBRARIES instead.
     10
     11        * PlatformEfl.cmake: s/_LIBRARY}/_LIBRARIES}
     12
    1132012-11-04  MORITA Hajime  <morrita@google.com>
    214
  • trunk/Source/WebCore/PlatformEfl.cmake

    r133177 r133432  
    203203  ${FREETYPE_LIBRARIES}
    204204  ${ICU_LIBRARIES}
    205   ${JPEG_LIBRARY}
     205  ${JPEG_LIBRARIES}
    206206  ${LIBXML2_LIBRARIES}
    207207  ${LIBXSLT_LIBRARIES}
    208   ${PNG_LIBRARY}
     208  ${PNG_LIBRARIES}
    209209  ${SQLITE_LIBRARIES}
    210210  ${GLIB_LIBRARIES}
  • trunk/Source/WebKit/ChangeLog

    r133266 r133432  
     12012-11-04  Halton Huo  <halton.huo@intel.com>
     2
     3        [EFL] Use _LIBRARIES instead of _LIBRARY
     4        https://bugs.webkit.org/show_bug.cgi?id=101042
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        In CMake Find files, _LIBRARY is intended for internal use, should
     9        use _LIBRARIES instead.
     10
     11        * PlatformEfl.cmake: s/_LIBRARY}/_LIBRARIES}
     12
    1132012-11-01  Seonae Kim  <sunaeluv.kim@samsung.com>
    214
  • trunk/Source/WebKit/PlatformEfl.cmake

    r133266 r133432  
    161161    ${SQLITE_LIBRARIES}
    162162    ${FONTCONFIG_LIBRARIES}
    163     ${PNG_LIBRARY}
    164     ${JPEG_LIBRARY}
     163    ${PNG_LIBRARIES}
     164    ${JPEG_LIBRARIES}
    165165    ${CMAKE_DL_LIBS}
    166166    ${GLIB_LIBRARIES}
  • trunk/Source/WebKit2/ChangeLog

    r133425 r133432  
     12012-11-04  Halton Huo  <halton.huo@intel.com>
     2
     3        [EFL] Use _LIBRARIES instead of _LIBRARY
     4        https://bugs.webkit.org/show_bug.cgi?id=101042
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        In CMake Find files, _LIBRARY is intended for internal use, should
     9        use _LIBRARIES instead.
     10
     11        * PlatformEfl.cmake: s/_LIBRARY}/_LIBRARIES}
     12
    1132012-11-04  Jon Lee  <jonlee@apple.com>
    214
  • trunk/Source/WebKit2/PlatformEfl.cmake

    r133304 r133432  
    203203    ${SQLITE_LIBRARIES}
    204204    ${FONTCONFIG_LIBRARIES}
    205     ${PNG_LIBRARY}
    206     ${JPEG_LIBRARY}
     205    ${PNG_LIBRARIES}
     206    ${JPEG_LIBRARIES}
    207207    ${CMAKE_DL_LIBS}
    208208    ${GLIB_LIBRARIES}
Note: See TracChangeset for help on using the changeset viewer.