summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-08-23 15:48:14 (GMT)
committerGitHub <noreply@github.com>2022-08-23 15:48:14 (GMT)
commitf020d129b2ed173c8d0075d670214440013d7daf (patch)
treed5bc621f4469e0ee66f99c8d89f6de0813fc0a73 /configure.ac
parent21ec3378558cdc642ff49963c13ca18d8e49349c (diff)
downloadhdf5-f020d129b2ed173c8d0075d670214440013d7daf.zip
hdf5-f020d129b2ed173c8d0075d670214440013d7daf.tar.gz
hdf5-f020d129b2ed173c8d0075d670214440013d7daf.tar.bz2
Corrects more Fortran warnings (#2059)
* Moves -Wunused-dummy-arguments to the developer warnings since this generates a lot of spurious, unfixable noise due to things like callback wrappers * Changes the return cast in h5fget_fileno_c, fixes a comment, and comment on potential badness * Initializes a variable in tH5L_F03.F90 to quiet a 'maybe uninitialized' warning
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 340decb..e2fbf04 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2336,6 +2336,7 @@ case "X-$DEV_WARNINGS" in
;;
X-no)
H5_CFLAGS="$H5_CFLAGS $NO_DEVELOPER_WARNING_CFLAGS"
+ H5_FCFLAGS="$H5_FCFLAGS $NO_DEVELOPER_WARNING_FCFLAGS"
AC_MSG_RESULT([no])
;;
*)