diff options
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | hl/src/H5LTanalyze.c | 1 | ||||
-rw-r--r-- | hl/src/H5LTparse.c | 1 |
3 files changed, 3 insertions, 1 deletions
@@ -324,7 +324,7 @@ echo if test -e "${LIBTOOL_DIR}/../share/aclocal" ; then aclocal_include="-I ${LIBTOOL_DIR}/../share/aclocal" fi -aclocal_cmd="${HDF5_ACLOCAL} --force ${aclocal_include}" +aclocal_cmd="${HDF5_ACLOCAL} --force -I m4 ${aclocal_include}" echo ${aclocal_cmd} if [ "$verbose" = true ] ; then ${HDF5_ACLOCAL} --version diff --git a/hl/src/H5LTanalyze.c b/hl/src/H5LTanalyze.c index 54e443d..bad963d 100644 --- a/hl/src/H5LTanalyze.c +++ b/hl/src/H5LTanalyze.c @@ -12,6 +12,7 @@ #pragma GCC diagnostic ignored "-Wunused-function" #pragma GCC diagnostic ignored "-Wunused-macros" #pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wredundant-decls" #elif defined __SUNPRO_CC #pragma disable_warn #elif defined _MSC_VER diff --git a/hl/src/H5LTparse.c b/hl/src/H5LTparse.c index 6ca95c54..b63cb49 100644 --- a/hl/src/H5LTparse.c +++ b/hl/src/H5LTparse.c @@ -12,6 +12,7 @@ #pragma GCC diagnostic ignored "-Wunused-function" #pragma GCC diagnostic ignored "-Wunused-macros" #pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wredundant-decls" #elif defined __SUNPRO_CC #pragma disable_warn #elif defined _MSC_VER |