Changeset 123774 in webkit


Ignore:
Timestamp:
Jul 26, 2012 11:18:09 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][WK2] Regression(r123731): Linking errors due to efreet functions
https://bugs.webkit.org/show_bug.cgi?id=92378

Unreviewed build fix.

The library list created by PlatformEfl.cmake was being erased by a
SET called after including the platform specific file. Luckily the
dependencies were fulfilled by other targets until efreet was add.

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-26

  • CMakeLists.txt:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/CMakeLists.txt

    r123769 r123774  
    545545)
    546546
     547SET(WebKit2_LIBRARIES
     548    ${WebCore_LIBRARY_NAME}
     549)
     550
    547551WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS()
    548552
     
    561565ENDFOREACH ()
    562566
    563 SET(WebKit2_LIBRARIES
    564     ${WebCore_LIBRARY_NAME}
    565 )
    566 
    567567ADD_DEFINITIONS(-DBUILDING_WEBKIT)
    568568INCLUDE_DIRECTORIES(${WebKit2_INCLUDE_DIRECTORIES})
  • trunk/Source/WebKit2/ChangeLog

    r123772 r123774  
     12012-07-26  Thiago Marcos P. Santos  <thiago.santos@intel.com>
     2
     3        [EFL][WK2] Regression(r123731): Linking errors due to efreet functions
     4        https://bugs.webkit.org/show_bug.cgi?id=92378
     5
     6        Unreviewed build fix.
     7
     8        The library list created by PlatformEfl.cmake was being erased by a
     9        SET called after including the platform specific file. Luckily the
     10        dependencies were fulfilled by other targets until efreet was add.
     11
     12        * CMakeLists.txt:
     13
    1142012-07-26  Christophe Dumez  <christophe.dumez@intel.com>
    215
Note: See TracChangeset for help on using the changeset viewer.