From 2a1e5de8cb7f23b6b77da56fbdb12f366e5a9d44 Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Tue, 3 May 2016 23:29:27 +0000 Subject: [PATCH] Travis CI: Build against sqlite3 library, don't autogen --- .travis.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9c1ae03e..427037e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool'] + packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-4.8 - os: linux @@ -21,7 +21,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool'] + packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-4.9 - os: linux @@ -29,7 +29,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool'] + packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-5 - os: linux @@ -37,7 +37,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7'] - packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool'] + packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=clang-3.7 - os: osx @@ -52,7 +52,6 @@ cache: ccache: script: - - bash autogen.sh - - CC=$COMPILER ./configure + - CC=$COMPILER ./configure --with-shared-sqlite - make -j4 - make install