diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5config.h.in | 3 | ||||
-rw-r--r-- | src/Makefile.in | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index d639e50..d805b36 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -348,6 +348,9 @@ /* Define if `__tm_gmtoff' is a member of `struct tm' */ #undef HAVE___TM_GMTOFF +/* Define if your system can compile long long to floating-point casts. */ +#undef LLONG_TO_FP_CAST_WORKS + /* Define if your system can handle complicated MPI derived datatype correctly. */ #undef MPI_COMPLEX_DERIVED_DATATYPE_WORKS diff --git a/src/Makefile.in b/src/Makefile.in index e88cbd9..4b877ab 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -340,9 +340,9 @@ H5FC_PP = $(bindir)/h5pfc # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. -LT_VERS_INTERFACE = 0 -LT_VERS_REVISION = 1 -LT_VERS_AGE = 0 +LT_VERS_INTERFACE = 2 +LT_VERS_REVISION = 0 +LT_VERS_AGE = 2 H5detect_CFLAGS = -g # Our main target, the HDF5 library |