diff options
author | joerg@mysql.com <> | 2004-09-01 12:36:01 +0200 |
---|---|---|
committer | joerg@mysql.com <> | 2004-09-01 12:36:01 +0200 |
commit | 9e2e71816f42fbfe9e04a1433dd8e03ad5411c56 (patch) | |
tree | 9b67efac1ae4828052339c0d3eabfe87b158c04c /configure.in | |
parent | 86fcffb3230cfe326da144db9e3009e5ab9c85ca (diff) | |
download | mariadb-git-9e2e71816f42fbfe9e04a1433dd8e03ad5411c56.tar.gz |
Correct a typo error: cpp symbol is "BIG_TABLES", not "BIG_FILES"
(backport from 4.1).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 7853b615ae0..30a546ec5d9 100644 --- a/configure.in +++ b/configure.in @@ -939,8 +939,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 |