From 0bd4488d78264a310ed6a47e7f5a9e7056c64b96 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Tue, 1 Nov 2016 21:08:31 +0100 Subject: [PATCH] Update scripts to reference freetds-devel. I'm not sure if anyone is using those scripts anymore, but I suppose keeping them known broken isn't helping anyone either. This is a blind fix in reaction to latest comment in bug #131. --- bootstrap-centos7.sh | 2 +- bootstrap-debian.sh | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/bootstrap-centos7.sh b/bootstrap-centos7.sh index 5313fed..2b4c51a 100644 --- a/bootstrap-centos7.sh +++ b/bootstrap-centos7.sh @@ -8,7 +8,7 @@ sudo yum -y install epel-release sudo yum -y install sbcl # Missing dependency -sudo yum install freetds -y +sudo yum install freetds freetds-devel -y sudo ln -s /usr/lib64/libsybdb.so.5 /usr/lib64/libsybdb.so # prepare the rpmbuild setup diff --git a/bootstrap-debian.sh b/bootstrap-debian.sh index e1d2f17..6ac3dc0 100644 --- a/bootstrap-debian.sh +++ b/bootstrap-debian.sh @@ -32,7 +32,7 @@ sudo apt-get install -y postgresql-9.3 postgresql-contrib-9.3 \ sbcl \ git patch unzip \ devscripts pandoc \ - libsqlite3-dev \ + freetds-dev libsqlite3-dev \ gnupg gnupg-agent sudo DEBIAN_FRONTEND=noninteractive \ @@ -40,11 +40,9 @@ sudo DEBIAN_FRONTEND=noninteractive \ # SBCL # -# we need to backport SBCL from sid to have a recent enough version of the -# compiler and run time we depend on -sudo apt-get -y build-dep sbcl -sudo apt-get source -b sbcl > /dev/null 2>&1 # too verbose -sudo dpkg -i *.deb +# we used to need to backport SBCL, it's only the case now in wheezy, all +# the later distributions are uptodate enough for our needs here. +sudo apt-get -y install sbcl HBA=/etc/postgresql/9.3/main/pg_hba.conf echo "local all all trust" | sudo tee $HBA