diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-27 03:51:42 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-27 03:51:42 +0200 |
commit | c4b294c890c28004d33f650b7af5064c4099f608 (patch) | |
tree | 5ea09b812092670243cc186e6233c8483acac7eb /build-aux | |
parent | 6f975248895d0300c6fd8783b1138bdd4be00bcc (diff) | |
download | blogc-c4b294c890c28004d33f650b7af5064c4099f608.tar.gz blogc-c4b294c890c28004d33f650b7af5064c4099f608.tar.bz2 blogc-c4b294c890c28004d33f650b7af5064c4099f608.zip |
blogc-runserver: import external tool to blogc repository
still in the effort to reduce maintenance work, I'm importing
blogc-runserver tool to the main blogc repository.
the tool is build by default, if needed headers and libraries are
found.
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/travis-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/travis-build.sh b/build-aux/travis-build.sh index 4187575..e16e5c7 100755 --- a/build-aux/travis-build.sh +++ b/build-aux/travis-build.sh @@ -13,10 +13,10 @@ if [[ "x${TARGET}" = xw* ]]; then export CHOST="x86_64-w64-mingw32" [[ "x${TARGET}" = "xw32" ]] && export CHOST="i686-w64-mingw32" MAKE_TARGET="all" - CONFIGURE_ARGS="--disable-git-receiver" + CONFIGURE_ARGS="--disable-tests --disable-valgrind --disable-git-receiver --disable-runserver" else export CFLAGS="-Wall -g" - CONFIGURE_ARGS="--enable-tests --enable-valgrind" + CONFIGURE_ARGS="--enable-tests --enable-valgrind --enable-git-receiver --enable-runserver" fi pushd build > /dev/null |