Title: [276430] trunk/Source/WebKit
Revision
276430
Author
[email protected]
Date
2021-04-22 04:52:14 -0700 (Thu, 22 Apr 2021)

Log Message

[GTK] Build error: Couldn't find include 'Soup-2.4.gir'
https://bugs.webkit.org/show_bug.cgi?id=224926

Reviewed by Philippe Normand.

Use the right soup API version when generating the introspection.

* PlatformGTK.cmake:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (276429 => 276430)


--- trunk/Source/WebKit/ChangeLog	2021-04-22 11:47:40 UTC (rev 276429)
+++ trunk/Source/WebKit/ChangeLog	2021-04-22 11:52:14 UTC (rev 276430)
@@ -1,3 +1,14 @@
+2021-04-22  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] Build error: Couldn't find include 'Soup-2.4.gir'
+        https://bugs.webkit.org/show_bug.cgi?id=224926
+
+        Reviewed by Philippe Normand.
+
+        Use the right soup API version when generating the introspection.
+
+        * PlatformGTK.cmake:
+
 2021-04-22  Myles C. Maxfield  <[email protected]>
 
         [iOS] Web processes recreated after crashing are not created with the right contentSizeCategory

Modified: trunk/Source/WebKit/PlatformGTK.cmake (276429 => 276430)


--- trunk/Source/WebKit/PlatformGTK.cmake	2021-04-22 11:47:40 UTC (rev 276429)
+++ trunk/Source/WebKit/PlatformGTK.cmake	2021-04-22 11:52:14 UTC (rev 276430)
@@ -679,7 +679,7 @@
             --nsversion=${WEBKITGTK_API_VERSION}
             --include=GObject-2.0
             --include=Gtk-${GTK_API_VERSION}.0
-            --include=Soup-2.4
+            --include=Soup-${SOUP_API_VERSION}
             --include-uninstalled=${CMAKE_BINARY_DIR}/_javascript_Core-${WEBKITGTK_API_VERSION}.gir
             --library=webkit2gtk-${WEBKITGTK_API_VERSION}
             --library=_javascript_coregtk-${WEBKITGTK_API_VERSION}
@@ -688,7 +688,7 @@
             --no-libtool
             --pkg=gobject-2.0
             --pkg=${GTK_PKGCONFIG_PACKAGE}
-            --pkg=libsoup-2.4
+            --pkg=libsoup-${SOUP_API_VERSION}
             --pkg-export=webkit2gtk-${WEBKITGTK_API_VERSION}
             --output=${CMAKE_BINARY_DIR}/WebKit2-${WEBKITGTK_API_VERSION}.gir
             ${GIR_SOURCES_TOP_DIRS}
@@ -725,7 +725,7 @@
             --nsversion=${WEBKITGTK_API_VERSION}
             --include=GObject-2.0
             --include=Gtk-${GTK_API_VERSION}.0
-            --include=Soup-2.4
+            --include=Soup-${SOUP_API_VERSION}
             --include-uninstalled=${CMAKE_BINARY_DIR}/_javascript_Core-${WEBKITGTK_API_VERSION}.gir
             --library=webkit2gtk-${WEBKITGTK_API_VERSION}
             --library=_javascript_coregtk-${WEBKITGTK_API_VERSION}
@@ -735,7 +735,7 @@
             --no-libtool
             --pkg=gobject-2.0
             --pkg=${GTK_PKGCONFIG_PACKAGE}
-            --pkg=libsoup-2.4
+            --pkg=libsoup-${SOUP_API_VERSION}
             --pkg-export=webkit2gtk-web-extension-${WEBKITGTK_API_VERSION}
             --output=${CMAKE_BINARY_DIR}/WebKit2WebExtension-${WEBKITGTK_API_VERSION}.gir
             ${GIR_SOURCES_TOP_DIRS}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to