diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2007-08-09 19:46:44 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2007-08-09 19:46:44 (GMT) |
commit | 85ae38b38024661f932f2af6af717c6d4e20572b (patch) | |
tree | 17ae2242e62e7aa4b6d7b2856582b2e7032f0f3b /configure.in | |
parent | 755daadd61934e943416d15afe622c9ebb2654a8 (diff) | |
download | hdf5-85ae38b38024661f932f2af6af717c6d4e20572b.zip hdf5-85ae38b38024661f932f2af6af717c6d4e20572b.tar.gz hdf5-85ae38b38024661f932f2af6af717c6d4e20572b.tar.bz2 |
[svn-r14061] Purpose: Removing --disable-hsizet flag from configure.
Description: This flag causes problems for users and is difficult to
support in the library. It has been removed. (see Bug 708).
Tested: kagiso, linew
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/configure.in b/configure.in index 3006b9e..221415d 100644 --- a/configure.in +++ b/configure.in @@ -199,32 +199,12 @@ case $host_os in ;; esac -AC_ARG_ENABLE([hsizet], - [AC_HELP_STRING([--disable-hsizet], - [Datasets can normally be larger than - memory and/or files but some compilers are - unable to handle this (including versions - of GCC before 2.8.0). Disabling the - feature causes dataset sizes to be - restricted to the size of core memory, or - 'size_t'.])], - [HSIZET=$enableval]) - AC_MSG_CHECKING([for sizeof hsize_t and hssize_t]) - AC_SUBST(HSIZET) -case $HSIZET in - no|small) - AC_MSG_RESULT([small]) - HSIZET=small - ;; - *) - AC_MSG_RESULT([large]) - HSIZET=large - AC_DEFINE([HAVE_LARGE_HSIZET], [1], - [Define if it's safe to use `long long' for hsize_t and hssize_t]) - ;; -esac +AC_MSG_RESULT([large]) +HSIZET=large +AC_DEFINE([HAVE_LARGE_HSIZET], [1], + [Define if it's safe to use `long long' for hsize_t and hssize_t]) host_config="none" for f in $host_cpu-$host_vendor-$host_os \ |