diff options
author | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-05-01 10:19:32 +0100 |
---|---|---|
committer | Raul Infante-Sainz <infantesainz@gmail.com> | 2019-05-01 10:19:32 +0100 |
commit | 8a4d6d223b555a0a1660feeb23db070b10feec4d (patch) | |
tree | 8568c2b3e6845c243a9bd3765c0d5b24508affec /reproduce/software | |
parent | ff74e8567a4674d555b471a1746cc71852dccf28 (diff) |
Disabled X Window System in Cairo installation
Until this commit, we were installing `cairo' without disabling the X
Windows System. That is the default option in the configure step of
`cairo'. However, we are not installing the necessaries libraries (X11)
and headers for that. As a consecuence, when testing in a system where
we don't have these libraries/headers (Ubuntu 14.04), it crashes.
With this commit, we disable the X Windows System option in `cairo'
configure step by setting the option `--with-x=no'.
Diffstat (limited to 'reproduce/software')
-rw-r--r-- | reproduce/software/make/high-level.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk index ee3c85c..64f1197 100644 --- a/reproduce/software/make/high-level.mk +++ b/reproduce/software/make/high-level.mk @@ -269,7 +269,8 @@ $(ibidir)/cairo: $(tdir)/cairo-$(cairo-version).tar.xz \ $(ibidir)/freetype \ $(ibidir)/libpng \ $(ibidir)/pixman - $(call gbuild, $<, cairo-$(cairo-version), static) \ + $(call gbuild, $<, cairo-$(cairo-version), static, \ + --with-x=no) \ && echo "Cairo $(cairo-version)" > $@ $(ibidir)/gsl: $(tdir)/gsl-$(gsl-version).tar.gz |