Fix for gcc 3.0

Fix for using quoted table names with the SJIS character set.
This commit is contained in:
monty@hundin.mysql.fi 2001-10-30 16:31:35 +02:00
commit 7367545cad
5 changed files with 45 additions and 11 deletions

View file

@ -40,7 +40,7 @@ c_warnings="$global_warnings -Wunused"
cxx_warnings="$global_warnings -Woverloaded-virtual -Wextern-inline -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor"
alpha_cflags="-mcpu=ev6 -Wa,-mev6" # Not used yet
pentium_cflags="-mpentiumpro"
pentium_cflags="-mcpu=pentiumpro"
sparc_cflags=""
# be as fast as we can be without losing our ability to backtrace
@ -65,3 +65,10 @@ then
else
make=make
fi
if gcc -v 2>&1 | grep 'version 3' > /dev/null 2>&1
then
CXX=c++
else
CXX=gcc
fi