From 15a568be159409be4138ca20bcfb4fe214c50bb9 Mon Sep 17 00:00:00 2001 From: kanoi Date: Thu, 8 Sep 2016 15:46:29 +1000 Subject: [PATCH] Update build dependencies --- README | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README b/README index 0d06c3c5..a8ad8e70 100644 --- a/README +++ b/README @@ -75,7 +75,7 @@ BUILDING: Building ckpool standalone without ckdb has no dependencies outside of the basic build tools on any linux installation. -sudo apt-get install build-essential +sudo apt-get install build-essential yasm ./configure --without-ckdb make @@ -83,16 +83,19 @@ make Building with ckdb requires installation of the postgresql, gsl and ssl development libraries. -sudo apt-get install build-essential libpq-dev libgsl0ldbl libgsl0-dev +sudo apt-get install build-essential yasm libpq-dev libgsl-dev ./configure make +older distributions may instead require a different version of gsl: + sudo apt-get install build-essential libpq-dev libgsl0ldbl libgsl0-dev yasm + N.B. ckdb also requires libssl-dev but libpq-dev depends on it and installs it Building from git also requires autoconf and automake -sudo apt-get install build-essential libpq-dev autoconf automake libtool +sudo apt-get install build-essential yasm libpq-dev libgsl-dev autoconf automake libtool ./autogen.sh ./configure make