summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGregory Lee <lee218@llnl.gov>2022-05-11 04:29:54 -0700
committerGitHub <noreply@github.com>2022-05-11 13:29:54 +0200
commit2d823dcf90d2f23d8be355d338ffe27767bc80e4 (patch)
treec14fa49f0d01d6e0006e47b3d894b0f6d52ce5eb /var
parenta12c6382246e82152a2d6e66ddc1f2c97c331c24 (diff)
downloadspack-2d823dcf90d2f23d8be355d338ffe27767bc80e4.tar.gz
spack-2d823dcf90d2f23d8be355d338ffe27767bc80e4.tar.bz2
spack-2d823dcf90d2f23d8be355d338ffe27767bc80e4.tar.xz
spack-2d823dcf90d2f23d8be355d338ffe27767bc80e4.zip
gobject-introspection: add libffi dependency (#30601)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/gobject-introspection/package.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gobject-introspection/package.py b/var/spack/repos/builtin/packages/gobject-introspection/package.py
index 28b2db804c..511ba07a50 100644
--- a/var/spack/repos/builtin/packages/gobject-introspection/package.py
+++ b/var/spack/repos/builtin/packages/gobject-introspection/package.py
@@ -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')