Title: [236327] releases/WebKitGTK/webkit-2.22/Tools
Revision
236327
Author
[email protected]
Date
2018-09-21 10:04:23 -0700 (Fri, 21 Sep 2018)

Log Message

Merge r236309 - [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: releases/WebKitGTK/webkit-2.22/Tools/ChangeLog (236326 => 236327)


--- releases/WebKitGTK/webkit-2.22/Tools/ChangeLog	2018-09-21 17:04:18 UTC (rev 236326)
+++ releases/WebKitGTK/webkit-2.22/Tools/ChangeLog	2018-09-21 17:04:23 UTC (rev 236327)
@@ -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  Michael Catanzaro  <[email protected]>
 
         [WPE] fails to build on ARM arches complaining about undefined reference to `epoxy_eglMakeCurrent'

Modified: releases/WebKitGTK/webkit-2.22/Tools/wpe/backends/CMakeLists.txt (236326 => 236327)


--- releases/WebKitGTK/webkit-2.22/Tools/wpe/backends/CMakeLists.txt	2018-09-21 17:04:18 UTC (rev 236326)
+++ releases/WebKitGTK/webkit-2.22/Tools/wpe/backends/CMakeLists.txt	2018-09-21 17:04:23 UTC (rev 236327)
@@ -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

Reply via email to