diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-10-18 18:57:08 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-10-18 18:57:08 (GMT) |
commit | cf56cd041d119914d7a9bee79c22e59a8ce85059 (patch) | |
tree | 67e37c5084d14cfb21a8a729ea93c983ca753673 /configure.in | |
parent | 8d0b1acf685d91aa91e23e1a0d307384175a98db (diff) | |
download | hdf5-cf56cd041d119914d7a9bee79c22e59a8ce85059.zip hdf5-cf56cd041d119914d7a9bee79c22e59a8ce85059.tar.gz hdf5-cf56cd041d119914d7a9bee79c22e59a8ce85059.tar.bz2 |
[svn-r14211] Description:
Remove --enable-hdfv1_6 configure flag, now that all dependencies on it
have been removed and new --with-default-api-version=[v16|v18] and
--disable-deprecated-symbols flags have taken its place.
Update types in bin/trace so that bin/reconfigure runs cleanly.
Run bin/reconfigure to regenerate configure script, along with
other associated files, etc.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/configure.in b/configure.in index 0de3499..682ac1c 100644 --- a/configure.in +++ b/configure.in @@ -1702,25 +1702,6 @@ if test "X$THREADSAFE" = "Xyes"; then fi dnl ---------------------------------------------------------------------- -dnl Check if they would like the HDF5 v1.6 compatibility functions -dnl compiled in -dnl -AC_MSG_CHECKING([whether HDF5 v1.6 compatibility functions enabled]) -AC_ARG_ENABLE([hdf5v1_6], - [AC_HELP_STRING([--enable-hdf5v1_6], - [Compile the HDF5 v1.6 compatibility - interface [default=no]])], - [HDF5_V1_6_COMPAT=$enableval]) - -if test "$HDF5_V1_6_COMPAT" = "yes"; then - AC_MSG_RESULT([yes]) - AC_DEFINE([WANT_H5_V1_6_COMPAT], [1], - [Define if the HDF5 v1.6 compatibility functions are to be compiled in]) -else - AC_MSG_RESULT([no]) -fi - -dnl ---------------------------------------------------------------------- dnl How does one figure out the local time zone? Anyone know of a dnl Posix way to do this? dnl @@ -4038,8 +4019,8 @@ IF_ENABLED_DISABLED "$CODESTACK" PRINT_N " GPFS" IF_YES_NO "$GPFS" -PRINT_N " HDF5 v1.6 Compatibility" -IF_YES_NO "$HDF5_V1_6_COMPAT" +PRINT_N " Default API Mapping" +PRINT "$DEFAULT_API_VERSION" PRINT_N " hsize_t" case "$HSIZET" in |