From 96f61294525e88cd3cb9553731eeb63e74107e77 Mon Sep 17 00:00:00 2001 From: Math Date: Tue, 15 Oct 2019 23:07:54 +0200 Subject: [PATCH 1/3] add missing packages info --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d60508..aea897a 100644 --- a/README.md +++ b/README.md @@ -53,16 +53,23 @@ If you see a message like this: compiler at the preprocessing stage. In this case, you can re-run configure with the verbosity flag -v3 to see the error messages. -it means that you need to install lzma library on your operating -system. The same might go for pkg-config. On macOS (it's more likely +it means that you need to install `lzma` library on your operating +system. The same might go for `pkg-config`. On macOS (it's more likely to happen on macOS, as these packages are usually installed out of the box on Linux), you need to run: brew install xz brew install pkg-config -In case the lzma package is not installed on your Linux, you need to run (assuming Debian/Ubuntu): +In case the `lzma` package is not installed on your Linux, you need to run (assuming Debian/Ubuntu): sudo apt-get install pkg-config liblzma-dev libpq-dev libpcre3-dev + +For some Linux distributions, installation of the following packages might be required as well: + + apt-get install pkg-config # in case of missing "pkg-config" in error log (most probably while building pcre-light) + apt-get install libcairo2-dev # in case of failure while building cairo + apt-get install libbz2-dev # in case of failure while building bz2 + ### Plan B — just download the GEval binary From bb49395c217a4bbb84a71e69e32b1a55e4a222e5 Mon Sep 17 00:00:00 2001 From: Mateusz Hinc Date: Wed, 30 Oct 2019 08:53:12 +0000 Subject: [PATCH 2/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index aea897a..905c6ce 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,6 @@ In case the `lzma` package is not installed on your Linux, you need to run (assu For some Linux distributions, installation of the following packages might be required as well: - apt-get install pkg-config # in case of missing "pkg-config" in error log (most probably while building pcre-light) apt-get install libcairo2-dev # in case of failure while building cairo apt-get install libbz2-dev # in case of failure while building bz2 From afccb8e5953ecc346aa36c8bcaa22ec36df82012 Mon Sep 17 00:00:00 2001 From: Mateusz Hinc Date: Wed, 30 Oct 2019 08:59:03 +0000 Subject: [PATCH 3/3] Update README.md --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 905c6ce..7d0c813 100644 --- a/README.md +++ b/README.md @@ -62,14 +62,8 @@ to happen on macOS, as these packages are usually installed out of the box on Li In case the `lzma` package is not installed on your Linux, you need to run (assuming Debian/Ubuntu): - sudo apt-get install pkg-config liblzma-dev libpq-dev libpcre3-dev + sudo apt-get install pkg-config liblzma-dev libpq-dev libpcre3-dev libcairo2-dev libbz2-dev -For some Linux distributions, installation of the following packages might be required as well: - - apt-get install libcairo2-dev # in case of failure while building cairo - apt-get install libbz2-dev # in case of failure while building bz2 - - ### Plan B — just download the GEval binary (Assuming you have a 64-bit Linux.)