diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-21 14:11:20 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-21 14:11:20 +0000 |
commit | 6357bc75b920f0e2bbe0d911610669f7a7c77012 (patch) | |
tree | cfb7aa510cfbe8d3825f4abc2dbae9656c2d22a0 /configure.in | |
parent | 16b8b7dbe534e24a5b0ee5da290b423bc9df7ded (diff) | |
download | mariadb-git-6357bc75b920f0e2bbe0d911610669f7a7c77012.tar.gz |
workaround for Sun Forte compile problem for ndb on solaris 2.10
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 494747ffb1e..09999285275 100644 --- a/configure.in +++ b/configure.in @@ -967,12 +967,16 @@ esac MAX_C_OPTIMIZE="-O3" MAX_CXX_OPTIMIZE="-O3" -# workaround for Sun Forte/x86 see BUG#4681 case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc in +# workaround for Sun Forte/x86 see BUG#4681 *solaris*-i?86-no) CFLAGS="$CFLAGS -DBIG_TABLES" CXXFLAGS="$CXXFLAGS -DBIG_TABLES" ;; +# workaround for Sun Forte compile problem for ndb + *solaris2.10*-sparc-no) + ndb_cxxflags_fix="$ndb_cxxflags_fix -instances=static" + ;; *) ;; esac |