Title: [222727] trunk
- Revision
- 222727
- Author
- [email protected]
- Date
- 2017-10-02 11:58:07 -0700 (Mon, 02 Oct 2017)
Log Message
[WPE] Do not require XSLT if disabled
https://bugs.webkit.org/show_bug.cgi?id=177752
Patch by Olivier Blin <[email protected]> on 2017-10-02
Reviewed by Michael Catanzaro.
* Source/cmake/OptionsWPE.cmake: libxslt is not a hard dep
Modified Paths
Diff
Modified: trunk/ChangeLog (222726 => 222727)
--- trunk/ChangeLog 2017-10-02 18:29:25 UTC (rev 222726)
+++ trunk/ChangeLog 2017-10-02 18:58:07 UTC (rev 222727)
@@ -1,3 +1,12 @@
+2017-10-02 Olivier Blin <[email protected]>
+
+ [WPE] Do not require XSLT if disabled
+ https://bugs.webkit.org/show_bug.cgi?id=177752
+
+ Reviewed by Michael Catanzaro.
+
+ * Source/cmake/OptionsWPE.cmake: libxslt is not a hard dep
+
2017-10-02 Michael Catanzaro <[email protected]>
Remove ENABLE_CSS_REGIONS
Modified: trunk/Source/cmake/OptionsWPE.cmake (222726 => 222727)
--- trunk/Source/cmake/OptionsWPE.cmake 2017-10-02 18:29:25 UTC (rev 222726)
+++ trunk/Source/cmake/OptionsWPE.cmake 2017-10-02 18:58:07 UTC (rev 222727)
@@ -69,7 +69,6 @@
find_package(LibGcrypt 1.6.0 REQUIRED)
find_package(LibSoup 2.42.0 REQUIRED)
find_package(LibXml2 2.8.0 REQUIRED)
-find_package(LibXslt 1.1.7 REQUIRED)
find_package(PNG REQUIRED)
find_package(Sqlite REQUIRED)
find_package(WebP REQUIRED)
@@ -76,6 +75,10 @@
find_package(WPEBackend REQUIRED)
+if (ENABLE_XSLT)
+ find_package(LibXslt 1.1.7 REQUIRED)
+endif ()
+
set(USE_CAIRO ON)
set(USE_XDGMIME ON)
SET_AND_EXPOSE_TO_BUILD(USE_GCRYPT TRUE)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes