Changeset 207668 in webkit


Ignore:
Timestamp:
Oct 21, 2016 6:27:10 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

[EFL] REGRESSION(r207616): Build is broken due to missing libgeoclue-dev package
https://bugs.webkit.org/show_bug.cgi?id=163733

Reviewed by Gyuyoung Kim.

.:

  • Source/cmake/OptionsEfl.cmake: Expose USE_GEOCLUE2 to the build properly.

Tools:

  • efl/install-dependencies: Added geoclue-2.0 package.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r207665 r207668  
     12016-10-21  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] REGRESSION(r207616): Build is broken due to missing libgeoclue-dev package
     4        https://bugs.webkit.org/show_bug.cgi?id=163733
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * Source/cmake/OptionsEfl.cmake: Expose USE_GEOCLUE2 to the build properly.
     9
    1102016-10-21  Adam Bergkvist  <adam.bergkvist@ericsson.com>
    211
  • trunk/Source/cmake/OptionsEfl.cmake

    r207279 r207668  
    187187    find_package(GeoClue2 2.1.5)
    188188    if (GEOCLUE2_FOUND)
    189       set(USE_GEOCLUE2 1)
     189        SET_AND_EXPOSE_TO_BUILD(USE_GEOCLUE2 ${GEOCLUE2_FOUND})
    190190    else ()
    191       find_package(GeoClue)
    192       set(USE_GEOCLUE2 0)
     191        find_package(GeoClue)
     192        if (NOT GEOCLUE_FOUND)
     193            message(FATAL_ERROR "Geoclue is needed for ENABLE_GEOLOCATION.")
     194        endif ()
    193195    endif ()
    194196endif ()
  • trunk/Tools/ChangeLog

    r207664 r207668  
     12016-10-21  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] REGRESSION(r207616): Build is broken due to missing libgeoclue-dev package
     4        https://bugs.webkit.org/show_bug.cgi?id=163733
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * efl/install-dependencies: Added geoclue-2.0 package.
     9
    1102016-10-21  Commit Queue  <commit-queue@webkit.org>
    211
  • trunk/Tools/efl/install-dependencies

    r205538 r207668  
    6767        flex \
    6868        g++ \
     69        geoclue-2.0 \
    6970        gperf \
    7071        gtk-doc-tools \
Note: See TracChangeset for help on using the changeset viewer.