diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-08-06 16:01:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-08-06 16:01:44 (GMT) |
commit | 41529d180ebc129f831d9bfea162e377d598fe92 (patch) | |
tree | 8df90e91eecd382f91c7b6e81aff192db208bc31 /configure | |
parent | 2a39beb49bed12fa0385fbae4c2f118f5809e842 (diff) | |
download | hdf5-41529d180ebc129f831d9bfea162e377d598fe92.zip hdf5-41529d180ebc129f831d9bfea162e377d598fe92.tar.gz hdf5-41529d180ebc129f831d9bfea162e377d598fe92.tar.bz2 |
[svn-r4312] Purpose:
Feature shift
Description:
Take out the v1.2.x compatibility stubs and put in the hooks for v1.4.x
compatibility when needed.
Platforms tested:
FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -155,7 +155,7 @@ ac_help="$ac_help ac_help="$ac_help --enable-threadsafe Enable thread safe capability" ac_help="$ac_help - --enable-hdf5v1_2 Compile the HDF5 v1.2 compatibility interface [default=no]" + --enable-hdf5v1_4 Compile the HDF5 v1.4 compatibility interface [default=no]" ac_help="$ac_help --enable-stream-vfd Build the Stream Virtual File Driver. [default=no]" ac_help="$ac_help @@ -8418,19 +8418,19 @@ EOF fi -echo $ac_n "checking whether HDF5 v1.2 compatibility functions enabled""... $ac_c" 1>&6 -echo "configure:8423: checking whether HDF5 v1.2 compatibility functions enabled" >&5 -# Check whether --enable-hdf5v1_2 or --disable-hdf5v1_2 was given. -if test "${enable_hdf5v1_2+set}" = set; then - enableval="$enable_hdf5v1_2" - HDF5_V1_2_COMPAT=$enableval +echo $ac_n "checking whether HDF5 v1.4 compatibility functions enabled""... $ac_c" 1>&6 +echo "configure:8423: checking whether HDF5 v1.4 compatibility functions enabled" >&5 +# Check whether --enable-hdf5v1_4 or --disable-hdf5v1_4 was given. +if test "${enable_hdf5v1_4+set}" = set; then + enableval="$enable_hdf5v1_4" + HDF5_V1_4_COMPAT=$enableval fi -if test "X$HDF5_V1_2_COMPAT" = "Xyes"; then +if test "X$HDF5_V1_4_COMPAT" = "Xyes"; then echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF -#define WANT_H5_V1_2_COMPAT 1 +#define WANT_H5_V1_4_COMPAT 1 EOF else |