Changeset 222727 in webkit


Ignore:
Timestamp:
Oct 2, 2017 11:58:07 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[WPE] Do not require XSLT if disabled
https://bugs.webkit.org/show_bug.cgi?id=177752

Patch by Olivier Blin <Olivier Blin> on 2017-10-02
Reviewed by Michael Catanzaro.

  • Source/cmake/OptionsWPE.cmake: libxslt is not a hard dep
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r222704 r222727  
     12017-10-02  Olivier Blin  <olivier.blin@softathome.com>
     2
     3        [WPE] Do not require XSLT if disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=177752
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Source/cmake/OptionsWPE.cmake: libxslt is not a hard dep
     9
    1102017-10-02  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/cmake/OptionsWPE.cmake

    r222704 r222727  
    7070find_package(LibSoup 2.42.0 REQUIRED)
    7171find_package(LibXml2 2.8.0 REQUIRED)
    72 find_package(LibXslt 1.1.7 REQUIRED)
    7372find_package(PNG REQUIRED)
    7473find_package(Sqlite REQUIRED)
     
    7675
    7776find_package(WPEBackend REQUIRED)
     77
     78if (ENABLE_XSLT)
     79    find_package(LibXslt 1.1.7 REQUIRED)
     80endif ()
    7881
    7982set(USE_CAIRO ON)
Note: See TracChangeset for help on using the changeset viewer.