diff options
author | unknown <serg@serg.mylan> | 2005-05-17 17:08:43 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-05-17 17:08:43 +0200 |
commit | b7cc28ac3aa3879f8ad0ed77e2acb6ffa8b0c432 (patch) | |
tree | 8ea1ff1c24dbce69b716e8728988c74b6b86195f /configure.in | |
parent | 74d132dcc1fa4eaf8f06bc0dceb380179d6a49df (diff) | |
download | mariadb-git-b7cc28ac3aa3879f8ad0ed77e2acb6ffa8b0c432.tar.gz |
sql_yacc.yy:clone-5.0.6-build
missing semicolon added
sql_base.cc:
bad merge fixed
sp_head.cc, view.test, view.result:
Correct restoring view name in SP table locking BUG#9758
configure.in:
restore -fno-implicit-templates -fno-exceptions -fno-rtti in configure
configure.in:
restore -fno-implicit-templates -fno-exceptions -fno-rtti in configure
mysql-test/r/view.result:
Correct restoring view name in SP table locking BUG#9758
mysql-test/t/view.test:
Correct restoring view name in SP table locking BUG#9758
sql/sp_head.cc:
Correct restoring view name in SP table locking BUG#9758
sql/sql_base.cc:
bad merge fixed
sql/sql_yacc.yy:
missing semicolon added
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3e116d608f7..980bb461924 100644 --- a/configure.in +++ b/configure.in @@ -359,6 +359,14 @@ AC_SUBST(INSTALL_SCRIPT) export CC CXX CFLAGS LD LDFLAGS AR +if test "$GCC" = "yes" +then + # mysqld requires -fno-implicit-templates. + # Disable exceptions as they seams to create problems with gcc and threads. + # mysqld doesn't use run-time-type-checking, so we disable it. + CXXFLAGS="$CXXFLAGS -fno-implicit-templates -fno-exceptions -fno-rtti" +fi + # Avoid bug in fcntl on some versions of linux AC_MSG_CHECKING("if we should use 'skip-locking' as default for $target_os") # Any variation of Linux |