diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-08-17 19:48:43 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-08-17 19:48:43 (GMT) |
commit | ae7da889ece8ea6cfe3207f146ee991951b5ce66 (patch) | |
tree | 90a56d75e0a3477b059ee12545ba9702977e837e /configure.ac | |
parent | 105a05cb9072d21b4158eb9743990b07623097a7 (diff) | |
download | hdf5-ae7da889ece8ea6cfe3207f146ee991951b5ce66.zip hdf5-ae7da889ece8ea6cfe3207f146ee991951b5ce66.tar.gz hdf5-ae7da889ece8ea6cfe3207f146ee991951b5ce66.tar.bz2 |
HDFFV-10552 Add missing HDF5_USE_110[2]_API_DEFAULT option
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index ff0f284..fc82636 100644 --- a/configure.ac +++ b/configure.ac @@ -3191,10 +3191,10 @@ esac AC_SUBST([DEFAULT_API_VERSION]) AC_MSG_CHECKING([which version of public symbols to use by default]) AC_ARG_WITH([default-api-version], - [AS_HELP_STRING([--with-default-api-version=(v16|v18|v110)], + [AS_HELP_STRING([--with-default-api-version=(v16|v18|v110|v112)], [Specify default release version of public symbols - [default=v110]])],, - [withval=v110]) + [default=v112]])],, + [withval=v112]) if test "X$withval" = "Xv16"; then AC_MSG_RESULT([v16]) @@ -3209,6 +3209,13 @@ elif test "X$withval" = "Xv18"; then elif test "X$withval" = "Xv110"; then AC_MSG_RESULT([v110]) DEFAULT_API_VERSION=v110 + AC_DEFINE([USE_110_API_DEFAULT], [1], + [Define using v1.10 public API symbols by default]) +elif test "X$withval" = "Xv112"; then + AC_MSG_RESULT([v112]) + DEFAULT_API_VERSION=v112 + AC_DEFINE([USE_112_API_DEFAULT], [1], + [Define using v1.12 public API symbols by default]) else AC_MSG_ERROR([invalid version of public symbols given]) fi |