Skip to content
Snippets Groups Projects
Commit 1568e64f authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Merge pull request #862 from davydden/glib_libxcb_missing_dependencies

Glib libxcb missing dependencies
parents 5e471719 176b9feb
No related branches found
No related tags found
No related merge requests found
from spack import * from spack import *
import sys
class Glib(Package): class Glib(Package):
"""The GLib package contains a low-level libraries useful for """The GLib package contains a low-level libraries useful for
...@@ -12,6 +13,8 @@ class Glib(Package): ...@@ -12,6 +13,8 @@ class Glib(Package):
depends_on("libffi") depends_on("libffi")
depends_on("zlib") depends_on("zlib")
depends_on("pkg-config")
depends_on('gettext', sys.platform=='darwin')
def install(self, spec, prefix): def install(self, spec, prefix):
configure("--prefix=%s" % prefix) configure("--prefix=%s" % prefix)
......
...@@ -13,6 +13,7 @@ class Libxcb(Package): ...@@ -13,6 +13,7 @@ class Libxcb(Package):
version('1.11.1', '118623c15a96b08622603a71d8789bf3') version('1.11.1', '118623c15a96b08622603a71d8789bf3')
depends_on("python") depends_on("python")
depends_on("xcb-proto") depends_on("xcb-proto")
depends_on("pkg-config")
# depends_on('pthread') # Ubuntu: apt-get install libpthread-stubs0-dev # depends_on('pthread') # Ubuntu: apt-get install libpthread-stubs0-dev
# depends_on('xau') # Ubuntu: apt-get install libxau-dev # depends_on('xau') # Ubuntu: apt-get install libxau-dev
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment