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.
This commit is contained in:
Dimitri Fontaine 2016-11-01 21:08:31 +01:00
parent 43bb87943f
commit 0bd4488d78
2 changed files with 5 additions and 7 deletions

View File

@ -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

View File

@ -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