Title: [261814] trunk
Revision
261814
Author
commit-qu...@webkit.org
Date
2020-05-18 09:20:08 -0700 (Mon, 18 May 2020)

Log Message

[GTK] Allow gtk-doc and introspection in cross builds
https://bugs.webkit.org/show_bug.cgi?id=212026

Patch by Michael Catanzaro <mcatanz...@gnome.org> on 2020-05-18
Reviewed by Adrian Perez de Castro.

Stop disabling these options in cross builds.

* Source/cmake/OptionsGTK.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (261813 => 261814)


--- trunk/ChangeLog	2020-05-18 16:04:24 UTC (rev 261813)
+++ trunk/ChangeLog	2020-05-18 16:20:08 UTC (rev 261814)
@@ -1,3 +1,14 @@
+2020-05-18  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        [GTK] Allow gtk-doc and introspection in cross builds
+        https://bugs.webkit.org/show_bug.cgi?id=212026
+
+        Reviewed by Adrian Perez de Castro.
+
+        Stop disabling these options in cross builds.
+
+        * Source/cmake/OptionsGTK.cmake:
+
 2020-05-18  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Update OptionsGTK.cmake and NEWS for 2.29.1 release

Modified: trunk/Source/cmake/OptionsGTK.cmake (261813 => 261814)


--- trunk/Source/cmake/OptionsGTK.cmake	2020-05-18 16:04:24 UTC (rev 261813)
+++ trunk/Source/cmake/OptionsGTK.cmake	2020-05-18 16:20:08 UTC (rev 261814)
@@ -425,12 +425,6 @@
     set(ENABLE_INTROSPECTION OFF)
 endif ()
 
-# Override the cached variables, gtk-doc and gobject-introspection do not really work when cross-building.
-if (CMAKE_CROSSCOMPILING)
-    set(ENABLE_GTKDOC OFF)
-    set(ENABLE_INTROSPECTION OFF)
-endif ()
-
 # Override the cached variable, gtk-doc does not really work when building on Mac.
 if (APPLE)
     set(ENABLE_GTKDOC OFF)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to