Sha256: a1a3aba0a4eac3dfc005611eccf930be41c98f99bf1b6c2804b1c4fa3a2be09a

Contents?: true

Size: 398 Bytes

Versions: 54

Compression:

Stored size: 398 Bytes

Contents

#!/usr/bin/env bash

set -x
set -e

FREETDS_VERSION=1.00.21

wget http://www.freetds.org/files/stable/freetds-$FREETDS_VERSION.tar.gz
tar -xzf freetds-$FREETDS_VERSION.tar.gz
cd freetds-$FREETDS_VERSION
./configure --prefix=/opt/local \
            --with-openssl=/opt/local \
            --with-tdsver=7.3
make
make install
cd ..
rm -rf freetds-$FREETDS_VERSION
rm freetds-$FREETDS_VERSION.tar.gz

Version data entries

54 entries across 54 versions & 2 rubygems

Version Path
activerecord-sqlserver-adapter-8.0.5 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-8.0.4 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.2.5 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-8.0.3 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.11 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.2.4 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-8.0.2 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.10 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.2.3 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-8.0.1 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-8.0.0 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.2.2 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.9 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.8 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.2.1 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.2.0 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.7 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.6 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.5 test/bin/install-freetds.sh
activerecord-sqlserver-adapter-7.1.4 test/bin/install-freetds.sh