Add static build.

This commit is contained in:
Nicholas Marriott
2020-05-03 11:09:36 +01:00
parent daef6f6b67
commit 955d9d22b9
3 changed files with 41 additions and 7 deletions

9
.github/travis/build.sh vendored Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
sh autogen.sh || exit 1
if [ "$BUILD" = "static" ]; then
./configure --enable-static || exit 1
else
./configure || exit 1
fi
exec make