mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
Correct a typo error: cpp symbol is "BIG_TABLES", not "BIG_FILES"
(backport from 4.1). configure.in: Defining "BIG_TABLES" works around a problem with the Sun Forte compiler for Solaris on x86 platforms: improper handling of "long long". Error shows up on the "limit_rows_found" variable in test "union". Old "BIG_FILES" was a typing error (backport from 4.1).
This commit is contained in:
parent
fb724e532c
commit
23ae3c1707
1 changed files with 2 additions and 2 deletions
|
@ -939,8 +939,8 @@ MAX_CXX_OPTIMIZE="-O3"
|
||||||
# workaround for Sun Forte/x86 see BUG#4681
|
# workaround for Sun Forte/x86 see BUG#4681
|
||||||
case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc in
|
case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc in
|
||||||
*solaris*-i?86-no)
|
*solaris*-i?86-no)
|
||||||
CFLAGS="$CFLAGS -DBIG_FILES"
|
CFLAGS="$CFLAGS -DBIG_TABLES"
|
||||||
CXXFLAGS="$CXXFLAGS -DBIG_FILES"
|
CXXFLAGS="$CXXFLAGS -DBIG_TABLES"
|
||||||
;;
|
;;
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Add table
Reference in a new issue