Title: [236309] trunk/Tools
- Revision
- 236309
- Author
- [email protected]
- Date
- 2018-09-21 04:42:42 -0700 (Fri, 21 Sep 2018)
Log Message
[WPE] Built RPM of WPE webkit fails to install with "nothing provides libWPEToolingBackends.so()"
https://bugs.webkit.org/show_bug.cgi?id=189797
Reviewed by Žan Doberšek.
* wpe/backends/CMakeLists.txt: Make libWPEToolingBackends a static library to avoid
the need for installing it. This works fine because the library only contains utility
code intended to be reused from other various components (MiniBrowser, WebKitTestRunner).
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (236308 => 236309)
--- trunk/Tools/ChangeLog 2018-09-21 11:28:40 UTC (rev 236308)
+++ trunk/Tools/ChangeLog 2018-09-21 11:42:42 UTC (rev 236309)
@@ -1,3 +1,14 @@
+2018-09-21 Adrian Perez de Castro <[email protected]>
+
+ [WPE] Built RPM of WPE webkit fails to install with "nothing provides libWPEToolingBackends.so()"
+ https://bugs.webkit.org/show_bug.cgi?id=189797
+
+ Reviewed by Žan Doberšek.
+
+ * wpe/backends/CMakeLists.txt: Make libWPEToolingBackends a static library to avoid
+ the need for installing it. This works fine because the library only contains utility
+ code intended to be reused from other various components (MiniBrowser, WebKitTestRunner).
+
2018-09-20 Daniel Bates <[email protected]>
Move IOKitSPI.h from TestRunnerShared to PAL
Modified: trunk/Tools/wpe/backends/CMakeLists.txt (236308 => 236309)
--- trunk/Tools/wpe/backends/CMakeLists.txt 2018-09-21 11:28:40 UTC (rev 236308)
+++ trunk/Tools/wpe/backends/CMakeLists.txt 2018-09-21 11:42:42 UTC (rev 236309)
@@ -49,7 +49,7 @@
COMMAND ${WAYLAND_SCANNER} client-header ${WAYLAND_PROTOCOLS_DATADIR}/unstable/xdg-shell/xdg-shell-unstable-v6.xml ${DERIVED_SOURCES_WPETOOLINGBACKENDS_DIR}/xdg-shell-unstable-v6-client-protocol.h
VERBATIM)
-add_library(WPEToolingBackends ${WPEToolingBackends_SOURCES})
+add_library(WPEToolingBackends STATIC ${WPEToolingBackends_SOURCES})
include_directories(${WPEToolingBackends_INCLUDE_DIRECTORIES})
include_directories(SYSTEM ${WPEToolingBackends_SYSTEM_INCLUDE_DIRECTORIES})
target_link_libraries(WPEToolingBackends ${WPEToolingBackends_LIBRARIES})
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes