summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorkaa@polly.(none) <>2007-10-12 14:03:51 +0400
committerkaa@polly.(none) <>2007-10-12 14:03:51 +0400
commit56e85a8cb25d6d0f59b222088dda22765eb53085 (patch)
treeb1cb0bfa35ca45724b15697013ef95c4d6228d27 /config
parent80a2d47b22dde619656b55831f2a920bfcf8b5b1 (diff)
downloadmariadb-git-56e85a8cb25d6d0f59b222088dda22765eb53085.tar.gz
Fix for bug #31254: "Max_data_length" truncated / reported wrong
(compiler issue ?) Problem: Improper compile-time flags on AIX prevented use of files > 2 GB. This resulted in Max_data_length being truncated to 2 GB by MyISAM code. Solution: Reverted large-file changes from the fix for bug10776. We need to define _LARGE_FILES on AIX to have support for files > 2 GB. Since _LARGE_FILE_API is incompatible with _LARGE_FILES and may be automatically defined by including standards.h, we also need a workaround to avoid this conflict.
Diffstat (limited to 'config')
-rw-r--r--config/ac-macros/large_file.m411
1 files changed, 9 insertions, 2 deletions
diff --git a/config/ac-macros/large_file.m4 b/config/ac-macros/large_file.m4
index 2639cec5fb7..279ce6d60f1 100644
--- a/config/ac-macros/large_file.m4
+++ b/config/ac-macros/large_file.m4
@@ -128,8 +128,15 @@ AC_DEFUN([MYSQL_SYS_LARGEFILE],
ac_cv_sys_largefile_source=1 ;;
esac])
- # AIX 4.2 and later -- do nothing, include standards.h instead.
- # this goes for both GNU and IBM C and C++ compilers.
+ AC_SYS_LARGEFILE_MACRO_VALUE(_LARGE_FILES,
+ ac_cv_sys_large_files,
+ [Large files support on AIX-style hosts.],
+ [case "$host_os" in
+ # Large file support on AIX is available starting from version 4.2
+ # Tested only on 5.2 and up
+ aix4.[2-9]* | aix4.1[0-9]* | aix[5-9].* | aix[1-9][0-9]*)
+ ac_cv_sys_large_files=1 ;;
+ esac])
fi
])