summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <joerg@mysql.com>2004-08-30 13:25:22 +0200
committerunknown <joerg@mysql.com>2004-08-30 13:25:22 +0200
commit5bafde9ab00bc29870bd8891c90c70c413cee050 (patch)
treee10120a95f49117ae4cd100ac358562b42b3fa9e
parent52581fb60416659eacd738f17f8b1fdda23f122c (diff)
downloadmariadb-git-5bafde9ab00bc29870bd8891c90c70c413cee050.tar.gz
Correct a typo error: cpp symbol is "BIG_TABLES", not "BIG_FILES".
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.
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index a10835d584a..f7c7634a9f3 100644
--- a/configure.in
+++ b/configure.in
@@ -972,8 +972,8 @@ MAX_CXX_OPTIMIZE="-O3"
# workaround for Sun Forte/x86 see BUG#4681
case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc in
*solaris*-i?86-no)
- CFLAGS="$CFLAGS -DBIG_FILES"
- CXXFLAGS="$CXXFLAGS -DBIG_FILES"
+ CFLAGS="$CFLAGS -DBIG_TABLES"
+ CXXFLAGS="$CXXFLAGS -DBIG_TABLES"
;;
*) ;;
esac