# HG changeset patch # User Matt Johnston # Date 1430578306 -28800 # Node ID a988f7db337c8f796956b5abdd739480ccdd3500 # Parent acf444bcb115d2c48f82bb1ccd181a4573457a0a add no-writev build diff -r acf444bcb115 -r a988f7db337c .travis.yml --- a/.travis.yml Sat May 02 22:47:25 2015 +0800 +++ b/.travis.yml Sat May 02 22:51:46 2015 +0800 @@ -3,7 +3,9 @@ - gcc script: - - autoconf && autoheader && ./configure $BUNDLEDLIBTOM CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install + - autoconf && autoheader && ./configure $BUNDLEDLIBTOM CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst + - [ "$NOWRITEV" == 1 ] && sed -i s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h + - make install - ~/inst/bin/dropbearkey -t rsa -f testrsa - ~/inst/bin/dropbearkey -t dss -f testdss - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 @@ -18,3 +20,4 @@ - BUNDLEDLIBTOM=--disable-bundled-libtom - BUNDLEDLIBTOM=--enable-bundled-libtom - MULTI=1 + - NOWRITEV=1