mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
package/webkitgtk: add gobject-introspection optional dependency
Enable introspection when GObject Introspection is enabled. Midori 9.0 requires webkitgtk built with gobject-introspection support. Signed-off-by: Adam Duskett <aduskett@gmail.com> Reviewed-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
6379da58bf
commit
b134c8a240
@ -21,7 +21,6 @@ WEBKITGTK_CONF_OPTS = \
|
||||
-DENABLE_GAMEPAD=OFF \
|
||||
-DENABLE_GEOLOCATION=OFF \
|
||||
-DENABLE_GTKDOC=OFF \
|
||||
-DENABLE_INTROSPECTION=OFF \
|
||||
-DENABLE_MINIBROWSER=ON \
|
||||
-DENABLE_SPELLCHECK=ON \
|
||||
-DPORT=GTK \
|
||||
@ -59,6 +58,13 @@ else
|
||||
WEBKITGTK_CONF_OPTS += -DENABLE_WEBDRIVER=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
||||
WEBKITGTK_CONF_OPTS += -DENABLE_INTROSPECTION=ON
|
||||
WEBKITGTK_DEPENDENCIES += gobject-introspection
|
||||
else
|
||||
WEBKITGTK_CONF_OPTS += -DENABLE_INTROSPECTION=OFF
|
||||
endif
|
||||
|
||||
# Only one target platform can be built, assume X11 > Wayland
|
||||
|
||||
# GTK3-X11 target gives OpenGL from newer libgtk3 versions
|
||||
|
Loading…
Reference in New Issue
Block a user