diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/make_vers | 4 | ||||
-rwxr-xr-x | bin/reconfigure | 11 |
2 files changed, 11 insertions, 4 deletions
diff --git a/bin/make_vers b/bin/make_vers index 465a308..7f612b4 100755 --- a/bin/make_vers +++ b/bin/make_vers @@ -86,9 +86,9 @@ sub print_checkoptions ($) { # Print the option checking print $fh "\n/* Issue error if contradicting macros have been defined. */\n"; - print $fh "#if defined(H5_USE_16_API) && defined(H5_WITHOUT_DEPRECATED_APIS)\n"; + print $fh "#if defined(H5_USE_16_API) && defined(H5_NO_DEPRECATED_SYMBOLS)\n"; print $fh "#error \"Can't choose old API versions when deprecated APIs are disabled\"\n"; - print $fh "#endif /* defined(H5_USE_16_API) && defined(H5_WITHOUT_DEPRECATED_APIS) */\n"; + print $fh "#endif /* defined(H5_USE_16_API) && defined(H5_NO_DEPRECATED_SYMBOLS) */\n"; } ############################################################################## diff --git a/bin/reconfigure b/bin/reconfigure index 5c4a7b1..3ead9a9 100755 --- a/bin/reconfigure +++ b/bin/reconfigure @@ -118,11 +118,18 @@ echo echo " Running trace script:" bin/trace src/H5*.c || exit 1 -# Run make_error -# make_error automatically generates the H5E headers that create error message +# Run make_err +# make_err automatically generates the H5E headers that create error message # types for HDF5. echo echo " Running error generation script:" bin/make_err src/H5err.txt || exit 1 +# Run make_vers +# make_vers automatically generates the public headers that define the API version +# macros for HDF5. +echo +echo " Running API version generation script:" +bin/make_vers src/H5vers.txt || exit 1 + exit 0 |