travis: Disable forecast/connmark plugins in monolithic builds

Ubuntu 12.04 does not seem to provide a sane pkg-config for libiptc or libip4tc.
The monolithic build fails due to missing symbols, so disable it until we have
a newer Ubuntu release.
This commit is contained in:
Martin Willi
2015-02-24 12:25:23 +01:00
parent 20a0fd9255
commit 54d143ca37
+4
View File
@@ -43,6 +43,10 @@ all)
# libunwind causes threads to be cleaned up after LD is disabled
CONFIG="$CONFIG --disable-unwind-backtraces"
fi
if test "$MONOLITHIC" = "yes"; then
# Ubuntu 12.04 does not provide a proper -liptc pkg-config
CONFIG="$CONFIG --disable-forecast --disable-connmark"
fi
# not enabled on the build server
CONFIG="$CONFIG --disable-af-alg"
# TODO: enable? perhaps via coveralls.io (cpp-coveralls)?