gobject-introspection: add libffi dependency (#30601)

This commit is contained in:
Gregory Lee 2022-05-11 04:29:54 -07:00 committed by GitHub
parent a12c638224
commit 2d823dcf90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,9 @@ class GobjectIntrospection(Package):
depends_on("bison", type="build")
depends_on("flex", type="build")
depends_on("pkgconfig", type="build")
depends_on('libffi')
# https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/283
depends_on('libffi@:3.3', when='@:1.70') # libffi 3.4 caused seg faults
# GobjectIntrospection does not build with sed from darwin:
depends_on('sed', when='platform=darwin', type='build')