Skip to content

Commit 0bd4488

Browse files
committed
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 dimitri#131.
1 parent 43bb879 commit 0bd4488

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

bootstrap-centos7.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sudo yum -y install epel-release
88
sudo yum -y install sbcl
99

1010
# Missing dependency
11-
sudo yum install freetds -y
11+
sudo yum install freetds freetds-devel -y
1212
sudo ln -s /usr/lib64/libsybdb.so.5 /usr/lib64/libsybdb.so
1313

1414
# prepare the rpmbuild setup

bootstrap-debian.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,17 @@ sudo apt-get install -y postgresql-9.3 postgresql-contrib-9.3 \
3232
sbcl \
3333
git patch unzip \
3434
devscripts pandoc \
35-
libsqlite3-dev \
35+
freetds-dev libsqlite3-dev \
3636
gnupg gnupg-agent
3737

3838
sudo DEBIAN_FRONTEND=noninteractive \
3939
apt-get install -y --allow-unauthenticated mariadb-server
4040

4141
# SBCL
4242
#
43-
# we need to backport SBCL from sid to have a recent enough version of the
44-
# compiler and run time we depend on
45-
sudo apt-get -y build-dep sbcl
46-
sudo apt-get source -b sbcl > /dev/null 2>&1 # too verbose
47-
sudo dpkg -i *.deb
43+
# we used to need to backport SBCL, it's only the case now in wheezy, all
44+
# the later distributions are uptodate enough for our needs here.
45+
sudo apt-get -y install sbcl
4846

4947
HBA=/etc/postgresql/9.3/main/pg_hba.conf
5048
echo "local all all trust" | sudo tee $HBA

0 commit comments

Comments
 (0)