Commit 5314b1067145d30acdc5bba3bebb788e8acfdaae

Anthony Green 2018-01-10T07:22:51

test static lib

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/.travis.yml b/.travis.yml
index 5411673..a80cd1f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,6 +13,7 @@ matrix:
     - os: linux
       compiler: gcc
       env: HOST=i386-pc-linux-gnu
+      env: CONFIGURE_OPTIONS=--disable-shared
 
 install:
   - ./.travis/install.sh
@@ -20,7 +21,7 @@ install:
 script:
   - ./autogen.sh
   - if test x"$HOST" = x"i386-pc-linux-gnu"; then CC="$CC -m32"; CXX="$CXX -m32"; fi
-  - ./configure ${HOST+--host=$HOST}
+  - ./configure ${HOST+--host=$HOST} ${CONFIGURE_OPTIONS}
   - make
   - make dist
   - make check