diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-15 18:27:59 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-15 18:30:21 +0200 |
commit | ade87b32c7bcdeebf5d8f737f72d6e9943e735ba (patch) | |
tree | 863be7a51560e694dfd8af3497dfc03ac27efbfe /configure.ac | |
parent | d6f319fb64e63f200bf5d892765c69dc66b8db8c (diff) |
unittests: disable unit tests for some autobuild configurations
IRIX 6.5.24 gcc 3.3 autobuilds fail unittests library compilation due to a
problem related with OpenSSL headers and library versions not matching.
All AIX autobuilds fails unit tests linking against unittests library due to
unittests library being built with no symbols or members. Libtool ?
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bd63a21c3..830d379b8 100644 --- a/configure.ac +++ b/configure.ac @@ -314,6 +314,26 @@ if test "x$cross_compiling" != "xno" && supports_unittests=no fi +# IRIX 6.5.24 gcc 3.3 autobuilds fail unittests library compilation due to +# a problem related with OpenSSL headers and library versions not matching. +# Disable unit tests while time to further investigate this is found. +case $host in + mips-sgi-irix6.5) + if test "$compiler_id" = "GNU_C"; then + supports_unittests=no + fi + ;; +esac + +# All AIX autobuilds fails unit tests linking against unittests library +# due to unittests library being built with no symbols or members. Libtool ? +# Disable unit tests while time to further investigate this is found. +case $host_os in + aix*) + supports_unittests=no + ;; +esac + dnl Build unit tests when option --enable-debug is given. if test "x$want_debug" = "xyes" && test "x$supports_unittests" = "xyes"; then |