diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/gobject-introspection/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/gtkplus/package.py | 1 |
2 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 02ec87826d..952ec21661 100644 --- a/var/spack/repos/builtin/packages/gobject-introspection/package.py +++ b/var/spack/repos/builtin/packages/gobject-introspection/package.py @@ -39,6 +39,8 @@ class GobjectIntrospection(Package): depends_on("glib@2.48.1") depends_on("python") depends_on("cairo") + depends_on("bison", type="build") + depends_on("flex", type="build") def install(self, spec, prefix): configure("--prefix=%s" % prefix) diff --git a/var/spack/repos/builtin/packages/gtkplus/package.py b/var/spack/repos/builtin/packages/gtkplus/package.py index c85bbe4094..183662dd0e 100644 --- a/var/spack/repos/builtin/packages/gtkplus/package.py +++ b/var/spack/repos/builtin/packages/gtkplus/package.py @@ -37,6 +37,7 @@ class Gtkplus(Package): depends_on("atk") depends_on("gdk-pixbuf") depends_on("pango") + depends_on("glib") def patch(self): # remove disable deprecated flag. |