X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/e44504ebf154d69972f45f881daaaca282ff2d55..4ce7eaefd47bfebbd04a4d8858a740793dbebf1e:/.travis.yml diff --git a/.travis.yml b/.travis.yml index bd5d36c0..06426716 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-4.8'] + 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'] + 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'] + packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-5 - os: linux @@ -37,12 +37,13 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7'] - packages: ['clang-3.7'] + packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=clang-3.7 - os: osx compiler: clang - env: COMPILER=clang + env: COMPILER=clang LIBTOOLIZE=glibtoolize + osx_image: xcode7.3 @@ -51,9 +52,7 @@ cache: ccache: script: - - aclocal -I m4 - - autoconf - - automake - - CC=$COMPILER ./configure + - bash autogen.sh + - CC=$COMPILER ./configure --with-shared-sqlite - make -j4 - make install