From 8a4d6d223b555a0a1660feeb23db070b10feec4d Mon Sep 17 00:00:00 2001 From: Raul Infante-Sainz Date: Wed, 1 May 2019 10:19:32 +0100 Subject: 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'. --- reproduce/software/make/high-level.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'reproduce/software/make/high-level.mk') 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 -- cgit v1.2.1