mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Fix for gcc 3.0
Fix for using quoted table names with the SJIS character set.
This commit is contained in:
parent
03bf236f4a
commit
7367545cad
5 changed files with 45 additions and 11 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue