diff --git a/H/HDF5/build_tarballs.jl b/H/HDF5/build_tarballs.jl index b053a2b5de5..5edb3877cc5 100644 --- a/H/HDF5/build_tarballs.jl +++ b/H/HDF5/build_tarballs.jl @@ -6,13 +6,13 @@ const YGGDRASIL_DIR = "../.." include(joinpath(YGGDRASIL_DIR, "platforms", "mpi.jl")) name = "HDF5" -version = v"1.14.3" +version = v"1.14.5" # Collection of sources required to complete build sources = [ - ArchiveSource("https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-$(version.major).$(version.minor)/hdf5-$(version)/src/hdf5-$(version).tar.bz2", - "9425f224ed75d1280bb46d6f26923dd938f9040e7eaebf57e66ec7357c08f917"), - DirectorySource("./bundled"), + ArchiveSource("https://github.com/HDFGroup/hdf5/releases/download/hdf5_$(version)/hdf5-$(version).tar.gz", + "ec2e13c52e60f9a01491bb3158cb3778c985697131fc6a342262d32a26e58e44"), + DirectorySource("bundled"), ] # Bash recipe for building across all platforms @@ -56,6 +56,9 @@ case "${target}" in powerpc64le-linux-*) cp ../files/debian-ppc64le/* saved ;; + riscv64-linux-*) + cp ../files/debian-riscv64/* saved + ;; x86_64-apple-darwin*) cp ../files/darwin-amd64/* saved ;; @@ -90,13 +93,6 @@ env \ mkdir build pushd build -# Required for x86_64-linux-musl: -# - Some HDF5 C code requires C99, but configure only requests C89. -# - Some HDF5 C++ code requires C++11, but configure does not request this. -# This might not be necessary if we switch to newer GCC versions. -export CFLAGS="${CFLAGS} -std=c99" -export CXXFLAGS="${CXXFLAGS} -std=c++11" - if [[ ${target} == x86_64-linux-musl ]]; then # ${libdir}/libcurl.so needs a libnghttp, and it prefers to load /usr/lib/libnghttp2.so for this. # Unfortunately, that library is missing a symbol. Setting LD_LIBRARY_PATH is not enough to avoid this. @@ -104,22 +100,16 @@ if [[ ${target} == x86_64-linux-musl ]]; then rm /usr/lib/libnghttp2.* fi -FLAGS=() -if [[ ${target} == *-mingw* ]]; then - FLAGS+=(LDFLAGS='-no-undefined') - # For OpenSSL's libcrypto for ROS3-VFD - export CFLAGS="${CFLAGS} -L${prefix}/lib64" - export FCFLAGS="${FCFLAGS} -L${prefix}/lib64" -fi - # Check which VFD are available ENABLE_DIRECT_VFD=yes ENABLE_MIRROR_VFD=yes +ENABLE_ROS3_VFD=yes if [[ ${target} == *-darwin* ]]; then ENABLE_DIRECT_VFD=no elif [[ ${target} == *-w64-mingw32 ]]; then ENABLE_DIRECT_VFD=no ENABLE_MIRROR_VFD=no + ENABLE_ROS3_VFD=no fi # Configure MPI @@ -130,8 +120,7 @@ if grep -q MSMPI_VER ${prefix}/include/mpi.h; then # Do not enable MPI; the function MPI_File_close is not defined # in the 32-bit version of Microsoft MPI 10.1.12498.18 : - elif false; then - # DISABLED + else # 64-bit system # Do not enable MPI # Mingw-w64 runtime failure: @@ -139,14 +128,7 @@ if grep -q MSMPI_VER ${prefix}/include/mpi.h; then # Consider: https://www.symscape.com/configure-msmpi-for-mingw-w64 # gendef msmpi.dll - creates msmpi.def # x86_64-w64-mingw32-dlltool -d msmpi.def -l libmsmpi.a -D msmpi.dll - creates libmsmpi.a - - # Hide static libraries - rm ${prefix}/lib/msmpi*.lib - # Make shared libraries visible - ln -s msmpi.dll ${libdir}/libmsmpi.dll - ENABLE_PARALLEL=yes - export FCFLAGS="${FCFLAGS} -I${prefix}/src -I${prefix}/include -fno-range-check" - export LIBS="-L${libdir} -lmsmpi" + : fi else ENABLE_PARALLEL=yes @@ -158,23 +140,17 @@ else export FC=mpifort fi -# This is a bug in HDF5; see -# . The file -# `config/freebsd` includes `config/classic-fflags` which is -# missing. -: >../config/classic-fflags - ../configure \ --prefix=${prefix} \ --build=${MACHTYPE} \ --host=${target} \ --enable-cxx=yes \ - --enable-direct-vfd="$ENABLE_DIRECT_VFD" \ + --enable-direct-vfd="${ENABLE_DIRECT_VFD}" \ --enable-fortran=yes \ --enable-hl=yes \ - --enable-mirror-vfd="$ENABLE_MIRROR_VFD" \ - --enable-parallel="$ENABLE_PARALLEL" \ - --enable-ros3-vfd=yes \ + --enable-mirror-vfd="${ENABLE_MIRROR_VFD}" \ + --enable-parallel="${ENABLE_PARALLEL}" \ + --enable-ros3-vfd="${ENABLE_ROS3_VFD}" \ --enable-static=no \ --enable-tests=no \ --enable-tools=yes \ @@ -218,10 +194,17 @@ fi atomic_patch -p1 ${WORKSPACE}/srcdir/patches/fortran-src-Makefile.patch atomic_patch -p1 ${WORKSPACE}/srcdir/patches/hl-fortran-src-Makefile.patch +# Remove empty `-l` flags from libtool +# (Why are they there? They should not be.) +# Run the command several times to handle multiple (overlapping) occurrences. +sed -i 's/"-l /"/g;s/ -l / /g;s/-l"/"/g' libtool +sed -i 's/"-l /"/g;s/ -l / /g;s/-l"/"/g' libtool +sed -i 's/"-l /"/g;s/ -l / /g;s/-l"/"/g' libtool + # `AM_V_P` is not defined. This must be a shell command that returns # true or false depending on whether `make` should be verbose. This is # probably caused by a bug in automake, or in how automake was used. -make -j${nproc} AM_V_P=: "${FLAGS[@]}" +make -j${nproc} AM_V_P=: make install @@ -242,20 +225,28 @@ platforms = supported_platforms() platforms = expand_cxxstring_abis(platforms) platforms = expand_gfortran_versions(platforms) -platforms, platform_dependencies = MPI.augment_platforms(platforms; MPItrampoline_compat="5.3.1", OpenMPI_compat="4.1.6, 5") +# Disable riscv64; MPI isn't really support there +filter!(p -> arch(p) != "riscv64", platforms) + +# Disable aarch64-*-freebsd; we don't know (yet?) how to cross-compile for it +filter!(p -> !(Sys.isfreebsd(p) && arch(p) == "aarch64"), platforms) + +platforms, platform_dependencies = MPI.augment_platforms(platforms; MPItrampoline_compat="5.5.1", OpenMPI_compat="4.1.6, 5") # TODO: Use MPI only on non-Windows platforms # platforms = [filter(!Sys.iswindows, mpi_platforms); filter(Sys.iswindows, platforms)] # Avoid platforms where the MPI implementation isn't supported # OpenMPI -platforms = filter(p -> !(p["mpi"] == "openmpi" && arch(p) == "armv6l" && libc(p) == "glibc"), platforms) +filter!(p -> !(p["mpi"] == "openmpi" && arch(p) == "armv6l" && libc(p) == "glibc"), platforms) # MPItrampoline -platforms = filter(p -> !(p["mpi"] == "mpitrampoline" && libc(p) == "musl"), platforms) -platforms = filter(p -> !(p["mpi"] == "mpitrampoline" && Sys.isfreebsd(p)), platforms) +filter!(p -> !(p["mpi"] == "mpitrampoline" && libc(p) == "musl"), platforms) + +# TODO +filter!(Sys.iswindows, platforms) # The products that we will ensure are always built products = [ - # # HDF5 tools + # HDF5 tools ExecutableProduct("h5clear", :h5clear), ExecutableProduct("h5copy", :h5copy), ExecutableProduct("h5debug", :h5debug), @@ -285,13 +276,15 @@ products = [ # Dependencies that must be installed before this package can be built dependencies = [ - # To ensure that the correct version of libgfortran is found at runtime - Dependency(PackageSpec(name="CompilerSupportLibraries_jll", uuid="e66e0078-7015-5450-92f7-15fbd957f2ae")), - Dependency("LibCURL_jll"; compat="7.73,8"), - Dependency("OpenSSL_jll"; compat="3.0.8"), + # We need at least v1.1.0 of `CompilerSupportLibraries_jll` to define `strtoul` etc. on Windows + Dependency(PackageSpec(name="CompilerSupportLibraries_jll", uuid="e66e0078-7015-5450-92f7-15fbd957f2ae"); compat="1.1.0"), + Dependency("LibCURL_jll"; compat="7.73.0, 8"), + # We are building with OpenSSL v"3.0.8". + # Note that building with OpenSSL v"3.0.13" is broken (configuring ROS3-VFD fails on Windows). That might bite us later. + Dependency("OpenSSL_jll", compat="3.0.15"), Dependency("Zlib_jll"), - # Dependency("dlfcn_win32_jll"; platforms=filter(Sys.iswindows, platforms)), - Dependency("libaec_jll"), # This is the successor of szlib + # Dependency("dlfcn_win32_jll"; compat="1.3.1", platforms=filter(Sys.iswindows, platforms)), + Dependency("libaec_jll"; compat="1.1.3"), # This is the successor of szlib ] append!(dependencies, platform_dependencies) @@ -303,5 +296,3 @@ ENV["MPITRAMPOLINE_DELAY_INIT"] = "1" # GCC 5 reports an ICE on i686-linux-gnu-libgfortran3-cxx11-mpi+mpich build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; augment_platform_block, clang_use_lld=false, julia_compat="1.6", preferred_gcc_version=v"6") - -# Trigger build: 1 diff --git a/H/HDF5/bundled/files/debian-amd64/config.status b/H/HDF5/bundled/files/debian-amd64/config.status index 45b8ccbaceb..ef81d65e3d7 100644 --- a/H/HDF5/bundled/files/debian-amd64/config.status +++ b/H/HDF5/bundled/files/debian-amd64/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 17:54:21 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:33:44 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 4" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1348,6 +1337,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="33" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="yes" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1365,7 +1355,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 x86_64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 x86_64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1382,22 +1372,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1428,13 +1418,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1470,12 +1460,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1524,12 +1514,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,15 +1539,22 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 2" +D["LDOUBLE_TO_FLOAT16_CORRECT"]=" 1" +D["HAVE__FLOAT16"]=" 1" D["SIZEOF___FLOAT128"]=" 16" D["SIZEOF__QUAD"]=" 0" D["HAVE_QUADMATH_H"]=" 1" D["HAVE_FLOAT128"]=" 1" D["PAC_C_MAX_REAL_PRECISION"]=" 33" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1573,8 +1570,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" @@ -1636,7 +1635,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1653,6 +1651,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2121,7 +2120,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2986,7 +2985,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-arm32v5/config.status b/H/HDF5/bundled/files/debian-arm32v5/config.status index 99cd2793573..3c1169f95cb 100644 --- a/H/HDF5/bundled/files/debian-arm32v5/config.status +++ b/H/HDF5/bundled/files/debian-arm32v5/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:00:10 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:42:40 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 4" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 2" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="0" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="0" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="17" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 armv7l GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 armv7l GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1379,7 +1369,7 @@ S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" S["H5_CXXFLAGS"]=" " S["H5_FCFLAGS"]=" " -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" @@ -1409,13 +1399,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1451,12 +1441,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1505,12 +1495,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1530,13 +1520,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 8" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 17" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 15" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 4" @@ -1552,7 +1547,9 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 0" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"8\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" @@ -1615,7 +1612,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1632,6 +1628,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2100,7 +2097,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2965,7 +2962,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-arm32v7/config.status b/H/HDF5/bundled/files/debian-arm32v7/config.status index a3382620c09..4f1eaa380fb 100644 --- a/H/HDF5/bundled/files/debian-arm32v7/config.status +++ b/H/HDF5/bundled/files/debian-arm32v7/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:08:45 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:53:20 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1300,7 +1287,7 @@ S["CXXCPP"]="g++ -E" S["am__fastdepCXX_FALSE"]="#" S["am__fastdepCXX_TRUE"]="" S["CXXDEPMODE"]="depmode=gcc3" -S["ac_ct_CXX"]="" +S["ac_ct_CXX"]="g++" S["CXXFLAGS"]="" S["CXX"]="g++" S["HDF_CXX"]="yes" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 4" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 2" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="0" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="0" @@ -1333,7 +1322,7 @@ S["F9XMODFLAG"]="-I" S["FSEARCH_DIRS"]="" S["F9XSUFFIXFLAG"]="" S["FCFLAGS_f90"]="" -S["ac_ct_FC"]="" +S["ac_ct_FC"]="gfortran" S["FCFLAGS"]="" S["OBJECT_NAMELEN_DEFAULT_F"]="" S["SIZE_T"]="" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="17" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 armv7l GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 armv7l GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1377,28 +1367,10 @@ S["H5_LDFLAGS"]="" S["H5_JAVAFLAGS"]="" S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" -S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privacy -Weffc++ -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-includ"\ -"e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ -" -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ -"ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" -S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ -"cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ -"-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" -S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ -"-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ -"oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ -"ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ -"ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ -"o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" +S["H5_CXXFLAGS"]=" " +S["H5_FCFLAGS"]=" " +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" +S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" S["CPPFLAGS"]="" @@ -1427,13 +1399,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1469,12 +1441,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1523,12 +1495,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1548,13 +1520,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 8" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 17" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 15" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 4" @@ -1570,7 +1547,9 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 0" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"8\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" @@ -1633,7 +1612,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1650,6 +1628,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2118,7 +2097,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2983,7 +2962,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-arm64v8/config.status b/H/HDF5/bundled/files/debian-arm64v8/config.status index afc5d66f86e..bcba202ddc3 100644 --- a/H/HDF5/bundled/files/debian-arm64v8/config.status +++ b/H/HDF5/bundled/files/debian-arm64v8/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:18:08 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:03:39 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1348,6 +1337,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="yes" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1365,7 +1355,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 aarch64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 aarch64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1382,22 +1372,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1428,13 +1418,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1470,12 +1460,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1524,12 +1514,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,13 +1539,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 2" +D["LDOUBLE_TO_FLOAT16_CORRECT"]=" 1" +D["HAVE__FLOAT16"]=" 1" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1571,8 +1568,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1634,7 +1633,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1651,6 +1649,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2119,7 +2118,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2984,7 +2983,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-i386/config.status b/H/HDF5/bundled/files/debian-i386/config.status index 30218227f24..9693595919d 100644 --- a/H/HDF5/bundled/files/debian-i386/config.status +++ b/H/HDF5/bundled/files/debian-i386/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -557,11 +557,11 @@ SHELL='/bin/bash' ECHO='printf %s\n' PATH_SEPARATOR=':' host_alias='' -host='x86_64-pc-linux-gnu' -host_os='linux-gnu' +host='x86_64-pc-linux-gnux32' +host_os='linux-gnux32' build_alias='' -build='x86_64-pc-linux-gnu' -build_os='linux-gnu' +build='x86_64-pc-linux-gnux32' +build_os='linux-gnux32' SED='/usr/bin/sed' Xsed='/usr/bin/sed -e 1s/^X//' GREP='/usr/bin/grep' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:23:30 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:08:32 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1300,7 +1287,7 @@ S["CXXCPP"]="g++ -E" S["am__fastdepCXX_FALSE"]="#" S["am__fastdepCXX_TRUE"]="" S["CXXDEPMODE"]="depmode=gcc3" -S["ac_ct_CXX"]="" +S["ac_ct_CXX"]="g++" S["CXXFLAGS"]="" S["CXX"]="g++" S["HDF_CXX"]="yes" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 4" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,12,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 4" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="0" @@ -1333,7 +1322,7 @@ S["F9XMODFLAG"]="-I" S["FSEARCH_DIRS"]="" S["F9XSUFFIXFLAG"]="" S["FCFLAGS_f90"]="" -S["ac_ct_FC"]="" +S["ac_ct_FC"]="gfortran" S["FCFLAGS"]="" S["OBJECT_NAMELEN_DEFAULT_F"]="" S["SIZE_T"]="" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="33" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 x86_64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 x86_64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1377,39 +1367,21 @@ S["H5_LDFLAGS"]="" S["H5_JAVAFLAGS"]="" S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" -S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privacy -Weffc++ -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-includ"\ -"e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ -" -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ -"ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" -S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ -"cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ -"-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" -S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ -"-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ -"oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ -"ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ -"ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ -"o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" +S["H5_CXXFLAGS"]=" " +S["H5_FCFLAGS"]=" " +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" +S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" S["CPPFLAGS"]="" -S["host_os"]="linux-gnu" +S["host_os"]="linux-gnux32" S["host_vendor"]="pc" S["host_cpu"]="x86_64" -S["host"]="x86_64-pc-linux-gnu" -S["build_os"]="linux-gnu" +S["host"]="x86_64-pc-linux-gnux32" +S["build_os"]="linux-gnux32" S["build_vendor"]="pc" S["build_cpu"]="x86_64" -S["build"]="x86_64-pc-linux-gnu" +S["build"]="x86_64-pc-linux-gnux32" S["MAINT"]="#" S["MAINTAINER_MODE_FALSE"]="" S["MAINTAINER_MODE_TRUE"]="#" @@ -1427,13 +1399,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1469,12 +1441,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1523,12 +1495,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1548,15 +1520,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 12" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 16" D["SIZEOF__QUAD"]=" 0" D["HAVE_QUADMATH_H"]=" 1" D["HAVE_FLOAT128"]=" 1" D["PAC_C_MAX_REAL_PRECISION"]=" 33" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 4" @@ -1572,8 +1549,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 0" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"12\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" @@ -1636,7 +1615,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1653,6 +1631,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2121,7 +2100,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2986,7 +2965,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-mips64le/config.status b/H/HDF5/bundled/files/debian-mips64le/config.status index 0a8ab05db2d..cb43c7c70ed 100644 --- a/H/HDF5/bundled/files/debian-mips64le/config.status +++ b/H/HDF5/bundled/files/debian-mips64le/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -830,7 +830,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -841,12 +841,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -965,15 +959,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -995,9 +980,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1101,8 +1085,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1110,8 +1094,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:28:47 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:17:56 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1141,6 +1125,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1154,6 +1140,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1304,6 +1291,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1342,6 +1331,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1359,7 +1349,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 mips64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 mips64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1374,7 +1364,7 @@ S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" S["H5_CXXFLAGS"]=" " S["H5_FCFLAGS"]=" " -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" @@ -1404,13 +1394,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1446,12 +1436,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1500,12 +1490,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1525,13 +1515,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1547,8 +1542,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1610,7 +1607,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1627,6 +1623,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2095,7 +2092,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2960,7 +2957,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-ppc64le/config.status b/H/HDF5/bundled/files/debian-ppc64le/config.status index 84cb2b421ad..7d2ad1889ad 100644 --- a/H/HDF5/bundled/files/debian-ppc64le/config.status +++ b/H/HDF5/bundled/files/debian-ppc64le/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:38:26 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:39:10 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1348,6 +1337,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="33" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1365,7 +1355,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 ppc64le GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 ppc64le GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1382,22 +1372,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1428,13 +1418,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1470,12 +1460,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1524,12 +1514,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,15 +1539,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 16" D["SIZEOF__QUAD"]=" 0" D["HAVE_QUADMATH_H"]=" 1" D["HAVE_FLOAT128"]=" 1" D["PAC_C_MAX_REAL_PRECISION"]=" 33" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 31" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1573,8 +1568,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1636,7 +1633,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1653,6 +1649,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2122,7 +2119,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2987,7 +2984,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-riscv64/config.status b/H/HDF5/bundled/files/debian-riscv64/config.status index af5d430a1ee..8072648c1c4 100644 --- a/H/HDF5/bundled/files/debian-riscv64/config.status +++ b/H/HDF5/bundled/files/debian-riscv64/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -786,7 +786,7 @@ postdep_objects_FC='/usr/lib/gcc/riscv64-linux-gnu/13/crtendS.o /usr/lib/gcc/ris predeps_CXX='' predeps_FC='' postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s' -postdeps_FC='-lgfortran -lm -lgcc_s -lm -lgcc_s -lc -lgcc_s' +postdeps_FC='-lgfortran -lm -lgcc_s -lm -lc -lgcc_s' compiler_lib_search_path_CXX='-L/usr/lib/gcc/riscv64-linux-gnu/13 -L/lib/riscv64-linux-gnu -L/usr/lib/riscv64-linux-gnu' compiler_lib_search_path_FC='-L/usr/lib/gcc/riscv64-linux-gnu/13 -L/lib/riscv64-linux-gnu -L/usr/lib/riscv64-linux-gnu' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:57:40 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:29:13 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1346,6 +1335,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="yes" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1363,7 +1353,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 riscv64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 riscv64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1380,22 +1370,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1426,13 +1416,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1468,12 +1458,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1522,12 +1512,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1547,13 +1537,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 2" +D["LDOUBLE_TO_FLOAT16_CORRECT"]=" 1" +D["HAVE__FLOAT16"]=" 1" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1569,8 +1566,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1632,7 +1631,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1649,6 +1647,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2117,7 +2116,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2982,7 +2981,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/files/debian-s390x/config.status b/H/HDF5/bundled/files/debian-s390x/config.status index 9801178b826..8d2e2bc5bdd 100644 --- a/H/HDF5/bundled/files/debian-s390x/config.status +++ b/H/HDF5/bundled/files/debian-s390x/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="yes" S["BYTESEX"]="big-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:47:38 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 18:24:19 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 s390x GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 s390x GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1381,22 +1371,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1427,13 +1417,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1469,12 +1459,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1523,12 +1513,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,13 +1539,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1571,8 +1566,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1634,7 +1631,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1651,6 +1647,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2119,7 +2116,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2984,7 +2981,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/bundled/patches/configure.ac.patch b/H/HDF5/bundled/patches/configure.ac.patch index ca5c524fdb3..567202a2374 100644 --- a/H/HDF5/bundled/patches/configure.ac.patch +++ b/H/HDF5/bundled/patches/configure.ac.patch @@ -1,35 +1,52 @@ ---- hdf5-1.14.0.old/configure.ac 2022-12-28 16:18:22 -+++ hdf5-1.14.0.new/configure.ac 2023-04-14 16:50:12 -@@ -567,16 +567,13 @@ - AC_CHECK_SIZEOF([__float128]) - AC_CHECK_SIZEOF([_Quad]) - AC_CHECK_HEADERS([quadmath.h], [HAVE_QUADMATH=1], []) +diff -ru hdf5-1.14.5.orig/configure.ac hdf5-1.14.5/configure.ac +--- hdf5-1.14.5.orig/configure.ac 2024-09-30 12:07:53 ++++ hdf5-1.14.5/configure.ac 2025-01-23 11:52:36 +@@ -828,20 +828,7 @@ + ## + AC_MSG_CHECKING([maximum decimal precision for C]) + +- MY_FLT128_DIG=0 +- MY_LDBL_DIG=0 +- +- ## Macro to compare long double and __float128 to see which has higher precision - PAC_FC_LDBL_DIG +- +- ## Set results +- if test "$MY_FLT128_DIG" -gt "$MY_LDBL_DIG" ; then +- PAC_C_MAX_REAL_PRECISION=$MY_FLT128_DIG +- PRECISION_TYPE="(__float128)" +- else +- PAC_C_MAX_REAL_PRECISION=$MY_LDBL_DIG +- PRECISION_TYPE="(long double)" +- fi ++ PAC_C_MAX_REAL_PRECISION="$hdf5_cv_PAC_C_MAX_REAL_PRECISION" + AC_MSG_RESULT([$PAC_C_MAX_REAL_PRECISION $PRECISION_TYPE]) - AC_SUBST([PAC_C_MAX_REAL_PRECISION]) + ## Store results in config file +@@ -851,14 +838,9 @@ + ## Are we going to use __float128? + AC_MSG_CHECKING([if __float128 will be used in the Fortran wrappers]) - if test "$ac_cv_sizeof___float128" != 0 && test "$FLT128_DIG" != 0 ; then - AC_DEFINE([HAVE_FLOAT128], [1], [Determine if __float128 is available]) -- PAC_C_MAX_REAL_PRECISION=$FLT128_DIG +- if test "$MY_FLT128_DIG" -gt "$MY_LDBL_DIG" ; then +- AC_MSG_RESULT([yes]) +- AC_DEFINE([HAVE_FLOAT128], [1], [Determine if __float128 will be used in the Fortran wrappers]) - else -- PAC_C_MAX_REAL_PRECISION=$LDBL_DIG - fi -+ PAC_C_MAX_REAL_PRECISION="$hdf5_cv_PAC_C_MAX_REAL_PRECISION" - AC_DEFINE_UNQUOTED([PAC_C_MAX_REAL_PRECISION], $PAC_C_MAX_REAL_PRECISION, [Determine the maximum decimal precision in C]) - AC_MSG_RESULT([$PAC_C_MAX_REAL_PRECISION]) +- ## Can't use __float128, but write an undef line anyway +- AC_MSG_RESULT([no]) +- AH_TEMPLATE([HAVE_FLOAT128], [Determine if __float128 will be used in the Fortran wrappers]) +- fi ++ ## Can't use __float128, but write an undef line anyway ++ AC_MSG_RESULT([no]) ++ AH_TEMPLATE([HAVE_FLOAT128], [Determine if __float128 will be used in the Fortran wrappers]) -@@ -668,14 +665,37 @@ + ## ---------------------------------------------------------------------- + ## Define interface version +@@ -967,19 +949,36 @@ + fi + fi - ## See if the fortran compiler supports the intrinsic module "ISO_FORTRAN_ENV" - PAC_PROG_FC_ISO_FORTRAN_ENV - ## Check KIND and size of native integer - PAC_FC_NATIVE_INTEGER - -- ## Find all available KINDs -- PAC_FC_AVAIL_KINDS -- ## Find all sizeofs for available KINDs -- PAC_FC_SIZEOF_INT_KINDS -- PAC_FC_SIZEOF_REAL_KINDS + PAC_FC_ALL_REAL_KINDS="$hdf5_cv_PAC_FC_ALL_REAL_KINDS" + PAC_FC_MAX_REAL_PRECISION="$hdf5_cv_PAC_FC_MAX_REAL_PRECISION" + PAC_FORTRAN_NUM_INTEGER_KINDS="$hdf5_cv_PAC_FORTRAN_NUM_INTEGER_KINDS" @@ -50,7 +67,17 @@ + H5CONFIG_F_RKIND_SIZEOF="$hdf5_cv_H5CONFIG_F_RKIND_SIZEOF" + H5CONFIG_F_NUM_IKIND="$hdf5_cv_H5CONFIG_F_NUM_IKIND" + H5CONFIG_F_IKIND="$hdf5_cv_H5CONFIG_F_IKIND" -+ + +- ## Find all available KINDs +- if test "X$HAVE_ISO_FORTRAN_ENV" = "X1";then +- PAC_FC_AVAIL_KINDS_F08 +- else +- PAC_FC_AVAIL_KINDS +- fi +- +- ## Find all SIZEOFs for available KINDs +- PAC_FC_SIZEOF_INT_KINDS +- PAC_FC_SIZEOF_REAL_KINDS + AC_DEFINE_UNQUOTED([PAC_FC_MAX_REAL_PRECISION], $PAC_FC_MAX_REAL_PRECISION, [Define Fortran Maximum Real Decimal Precision]) + AC_DEFINE_UNQUOTED([H5CONFIG_F_NUM_RKIND], $H5CONFIG_F_NUM_RKIND, [Define number of valid Fortran REAL KINDs]) + AC_DEFINE_UNQUOTED([H5CONFIG_F_NUM_IKIND], $H5CONFIG_F_NUM_IKIND, [Define number of valid Fortran INTEGER KINDs]) diff --git a/H/HDF5/generate-H5Tinit/copy-h5tinit.sh b/H/HDF5/generate-H5Tinit/copy-h5tinit.sh new file mode 100755 index 00000000000..fe2ad119299 --- /dev/null +++ b/H/HDF5/generate-H5Tinit/copy-h5tinit.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -euxo pipefail + +for dir in debian-amd64 debian-arm32v5 debian-arm32v7 debian-arm64v8 debian-i386 debian-mips64le debian-ppc64le debian-riscv64 debian-s390x; +do + cp $dir/* ../bundled/files/$dir +done diff --git a/H/HDF5/generate-H5Tinit/debian-amd64/config.status b/H/HDF5/generate-H5Tinit/debian-amd64/config.status index 45b8ccbaceb..ef81d65e3d7 100644 --- a/H/HDF5/generate-H5Tinit/debian-amd64/config.status +++ b/H/HDF5/generate-H5Tinit/debian-amd64/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 17:54:21 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:33:44 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 4" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1348,6 +1337,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="33" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="yes" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1365,7 +1355,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 x86_64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 x86_64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1382,22 +1372,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1428,13 +1418,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1470,12 +1460,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1524,12 +1514,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,15 +1539,22 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 2" +D["LDOUBLE_TO_FLOAT16_CORRECT"]=" 1" +D["HAVE__FLOAT16"]=" 1" D["SIZEOF___FLOAT128"]=" 16" D["SIZEOF__QUAD"]=" 0" D["HAVE_QUADMATH_H"]=" 1" D["HAVE_FLOAT128"]=" 1" D["PAC_C_MAX_REAL_PRECISION"]=" 33" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1573,8 +1570,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" @@ -1636,7 +1635,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1653,6 +1651,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2121,7 +2120,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2986,7 +2985,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-arm32v5/config.status b/H/HDF5/generate-H5Tinit/debian-arm32v5/config.status index 99cd2793573..3c1169f95cb 100644 --- a/H/HDF5/generate-H5Tinit/debian-arm32v5/config.status +++ b/H/HDF5/generate-H5Tinit/debian-arm32v5/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:00:10 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:42:40 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 4" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 2" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="0" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="0" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="17" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 armv7l GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 armv7l GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1379,7 +1369,7 @@ S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" S["H5_CXXFLAGS"]=" " S["H5_FCFLAGS"]=" " -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" @@ -1409,13 +1399,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1451,12 +1441,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1505,12 +1495,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1530,13 +1520,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 8" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 17" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 15" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 4" @@ -1552,7 +1547,9 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 0" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"8\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" @@ -1615,7 +1612,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1632,6 +1628,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2100,7 +2097,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2965,7 +2962,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-arm32v7/config.status b/H/HDF5/generate-H5Tinit/debian-arm32v7/config.status index a3382620c09..4f1eaa380fb 100644 --- a/H/HDF5/generate-H5Tinit/debian-arm32v7/config.status +++ b/H/HDF5/generate-H5Tinit/debian-arm32v7/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:08:45 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:53:20 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1300,7 +1287,7 @@ S["CXXCPP"]="g++ -E" S["am__fastdepCXX_FALSE"]="#" S["am__fastdepCXX_TRUE"]="" S["CXXDEPMODE"]="depmode=gcc3" -S["ac_ct_CXX"]="" +S["ac_ct_CXX"]="g++" S["CXXFLAGS"]="" S["CXX"]="g++" S["HDF_CXX"]="yes" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 4" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 2" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="0" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="0" @@ -1333,7 +1322,7 @@ S["F9XMODFLAG"]="-I" S["FSEARCH_DIRS"]="" S["F9XSUFFIXFLAG"]="" S["FCFLAGS_f90"]="" -S["ac_ct_FC"]="" +S["ac_ct_FC"]="gfortran" S["FCFLAGS"]="" S["OBJECT_NAMELEN_DEFAULT_F"]="" S["SIZE_T"]="" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="17" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 armv7l GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 armv7l GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1377,28 +1367,10 @@ S["H5_LDFLAGS"]="" S["H5_JAVAFLAGS"]="" S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" -S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privacy -Weffc++ -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-includ"\ -"e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ -" -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ -"ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" -S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ -"cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ -"-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" -S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ -"-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ -"oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ -"ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ -"ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ -"o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" +S["H5_CXXFLAGS"]=" " +S["H5_FCFLAGS"]=" " +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" +S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" S["CPPFLAGS"]="" @@ -1427,13 +1399,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1469,12 +1441,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1523,12 +1495,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1548,13 +1520,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 8" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 17" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 15" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 4" @@ -1570,7 +1547,9 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 0" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"8\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 2" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8/)" @@ -1633,7 +1612,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1650,6 +1628,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2118,7 +2097,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2983,7 +2962,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-arm64v8/config.status b/H/HDF5/generate-H5Tinit/debian-arm64v8/config.status index afc5d66f86e..bcba202ddc3 100644 --- a/H/HDF5/generate-H5Tinit/debian-arm64v8/config.status +++ b/H/HDF5/generate-H5Tinit/debian-arm64v8/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:18:08 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:03:39 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1348,6 +1337,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="yes" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1365,7 +1355,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 aarch64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 aarch64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1382,22 +1372,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1428,13 +1418,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1470,12 +1460,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1524,12 +1514,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,13 +1539,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 2" +D["LDOUBLE_TO_FLOAT16_CORRECT"]=" 1" +D["HAVE__FLOAT16"]=" 1" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1571,8 +1568,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1634,7 +1633,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1651,6 +1649,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2119,7 +2118,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2984,7 +2983,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-i386/config.status b/H/HDF5/generate-H5Tinit/debian-i386/config.status index 30218227f24..9693595919d 100644 --- a/H/HDF5/generate-H5Tinit/debian-i386/config.status +++ b/H/HDF5/generate-H5Tinit/debian-i386/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -557,11 +557,11 @@ SHELL='/bin/bash' ECHO='printf %s\n' PATH_SEPARATOR=':' host_alias='' -host='x86_64-pc-linux-gnu' -host_os='linux-gnu' +host='x86_64-pc-linux-gnux32' +host_os='linux-gnux32' build_alias='' -build='x86_64-pc-linux-gnu' -build_os='linux-gnu' +build='x86_64-pc-linux-gnux32' +build_os='linux-gnux32' SED='/usr/bin/sed' Xsed='/usr/bin/sed -e 1s/^X//' GREP='/usr/bin/grep' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:23:30 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:08:32 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1300,7 +1287,7 @@ S["CXXCPP"]="g++ -E" S["am__fastdepCXX_FALSE"]="#" S["am__fastdepCXX_TRUE"]="" S["CXXDEPMODE"]="depmode=gcc3" -S["ac_ct_CXX"]="" +S["ac_ct_CXX"]="g++" S["CXXFLAGS"]="" S["CXX"]="g++" S["HDF_CXX"]="yes" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 4" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,12,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 4" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="0" @@ -1333,7 +1322,7 @@ S["F9XMODFLAG"]="-I" S["FSEARCH_DIRS"]="" S["F9XSUFFIXFLAG"]="" S["FCFLAGS_f90"]="" -S["ac_ct_FC"]="" +S["ac_ct_FC"]="gfortran" S["FCFLAGS"]="" S["OBJECT_NAMELEN_DEFAULT_F"]="" S["SIZE_T"]="" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="33" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 x86_64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 x86_64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1377,39 +1367,21 @@ S["H5_LDFLAGS"]="" S["H5_JAVAFLAGS"]="" S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" -S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privacy -Weffc++ -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-includ"\ -"e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ -" -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ -"ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" -S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ -"cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ -"-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" -S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ -"-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ -"oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ -"ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ -"ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ -"o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" +S["H5_CXXFLAGS"]=" " +S["H5_FCFLAGS"]=" " +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" +S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" S["CPPFLAGS"]="" -S["host_os"]="linux-gnu" +S["host_os"]="linux-gnux32" S["host_vendor"]="pc" S["host_cpu"]="x86_64" -S["host"]="x86_64-pc-linux-gnu" -S["build_os"]="linux-gnu" +S["host"]="x86_64-pc-linux-gnux32" +S["build_os"]="linux-gnux32" S["build_vendor"]="pc" S["build_cpu"]="x86_64" -S["build"]="x86_64-pc-linux-gnu" +S["build"]="x86_64-pc-linux-gnux32" S["MAINT"]="#" S["MAINTAINER_MODE_FALSE"]="" S["MAINTAINER_MODE_TRUE"]="#" @@ -1427,13 +1399,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1469,12 +1441,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1523,12 +1495,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1548,15 +1520,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 12" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 16" D["SIZEOF__QUAD"]=" 0" D["HAVE_QUADMATH_H"]=" 1" D["HAVE_FLOAT128"]=" 1" D["PAC_C_MAX_REAL_PRECISION"]=" 33" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 4" @@ -1572,8 +1549,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 0" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"12\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 4" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,10,16/)" @@ -1636,7 +1615,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1653,6 +1631,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2121,7 +2100,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2986,7 +2965,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-mips64le/config.status b/H/HDF5/generate-H5Tinit/debian-mips64le/config.status index 0a8ab05db2d..cb43c7c70ed 100644 --- a/H/HDF5/generate-H5Tinit/debian-mips64le/config.status +++ b/H/HDF5/generate-H5Tinit/debian-mips64le/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -830,7 +830,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -841,12 +841,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -965,15 +959,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -995,9 +980,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1101,8 +1085,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1110,8 +1094,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:28:47 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:17:56 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1141,6 +1125,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1154,6 +1140,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1304,6 +1291,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1342,6 +1331,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1359,7 +1349,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 mips64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 mips64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1374,7 +1364,7 @@ S["H5_JAVACFLAGS"]="" S["H5_JNIFLAGS"]="" S["H5_CXXFLAGS"]=" " S["H5_FCFLAGS"]=" " -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" " S["AR_FLAGS"]="cr" S["JNIFLAGS"]="" @@ -1404,13 +1394,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1446,12 +1436,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1500,12 +1490,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1525,13 +1515,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1547,8 +1542,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1610,7 +1607,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1627,6 +1623,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2095,7 +2092,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2960,7 +2957,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-ppc64le/config.status b/H/HDF5/generate-H5Tinit/debian-ppc64le/config.status index 84cb2b421ad..7d2ad1889ad 100644 --- a/H/HDF5/generate-H5Tinit/debian-ppc64le/config.status +++ b/H/HDF5/generate-H5Tinit/debian-ppc64le/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:38:26 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 17:39:10 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1348,6 +1337,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="33" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1365,7 +1355,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 ppc64le GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 ppc64le GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1382,22 +1372,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1428,13 +1418,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1470,12 +1460,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1524,12 +1514,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,15 +1539,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 16" D["SIZEOF__QUAD"]=" 0" D["HAVE_QUADMATH_H"]=" 1" D["HAVE_FLOAT128"]=" 1" D["PAC_C_MAX_REAL_PRECISION"]=" 33" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 31" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1573,8 +1568,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1636,7 +1633,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1653,6 +1649,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2122,7 +2119,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2987,7 +2984,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-riscv64/config.status b/H/HDF5/generate-H5Tinit/debian-riscv64/config.status index af5d430a1ee..8072648c1c4 100644 --- a/H/HDF5/generate-H5Tinit/debian-riscv64/config.status +++ b/H/HDF5/generate-H5Tinit/debian-riscv64/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -786,7 +786,7 @@ postdep_objects_FC='/usr/lib/gcc/riscv64-linux-gnu/13/crtendS.o /usr/lib/gcc/ris predeps_CXX='' predeps_FC='' postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s' -postdeps_FC='-lgfortran -lm -lgcc_s -lm -lgcc_s -lc -lgcc_s' +postdeps_FC='-lgfortran -lm -lgcc_s -lm -lc -lgcc_s' compiler_lib_search_path_CXX='-L/usr/lib/gcc/riscv64-linux-gnu/13 -L/lib/riscv64-linux-gnu -L/usr/lib/riscv64-linux-gnu' compiler_lib_search_path_FC='-L/usr/lib/gcc/riscv64-linux-gnu/13 -L/lib/riscv64-linux-gnu -L/usr/lib/riscv64-linux-gnu' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="no" S["BYTESEX"]="little-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:57:40 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 16:29:13 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1346,6 +1335,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="yes" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1363,7 +1353,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 riscv64 GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 riscv64 GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1380,22 +1370,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1426,13 +1416,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1468,12 +1458,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1522,12 +1512,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1547,13 +1537,20 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 2" +D["LDOUBLE_TO_FLOAT16_CORRECT"]=" 1" +D["HAVE__FLOAT16"]=" 1" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1569,8 +1566,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1632,7 +1631,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1649,6 +1647,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2117,7 +2116,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2982,7 +2981,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/debian-s390x/config.status b/H/HDF5/generate-H5Tinit/debian-s390x/config.status index 9801178b826..8d2e2bc5bdd 100644 --- a/H/HDF5/generate-H5Tinit/debian-s390x/config.status +++ b/H/HDF5/generate-H5Tinit/debian-s390x/config.status @@ -373,7 +373,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HDF5 $as_me 1.14.3, which was +This file was extended by HDF5 $as_me 1.14.4-2, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -386,10 +386,10 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " # Files that config.status was made for. -config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh java/examples/Makefile java/examples/intro/Makefile java/examples/intro/JavaIntroExample.sh java/examples/datasets/Makefile java/examples/datasets/JavaDatasetExample.sh java/examples/datatypes/Makefile java/examples/datatypes/JavaDatatypeExample.sh java/examples/groups/Makefile java/examples/groups/JavaGroupExample.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse.sh" +config_files=" Makefile doxygen/Doxyfile src/Makefile src/libhdf5.settings src/H5build_settings.c:src/H5build_settings.autotools.c.in test/Makefile test/H5srcdir_str.h test/test_abort_fail.sh test/test_check_version.sh test/test_error.sh test/test_external_env.sh test/test_flush_refresh.sh test/test_libinfo.sh test/test_links_env.sh test/test_mirror.sh test/test_plugin.sh test/test_swmr.sh test/test_use_cases.sh test/test_vds_env.sh test/test_vds_swmr.sh testpar/Makefile testpar/testpflush.sh utils/Makefile utils/mirror_vfd/Makefile utils/test/Makefile utils/tools/Makefile utils/tools/h5dwalk/Makefile utils/tools/test/Makefile utils/tools/test/h5dwalk/Makefile utils/tools/test/h5dwalk/copy_demo_files.sh utils/tools/test/h5dwalk/testh5dwalk.sh tools/Makefile tools/lib/Makefile tools/libtest/Makefile tools/src/Makefile tools/src/h5dump/Makefile tools/src/h5import/Makefile tools/src/h5diff/Makefile tools/src/h5jam/Makefile tools/src/h5repack/Makefile tools/src/h5ls/Makefile tools/src/h5copy/Makefile tools/src/misc/Makefile tools/src/h5stat/Makefile tools/test/Makefile tools/test/h5dump/Makefile tools/test/h5dump/h5dump_plugin.sh tools/test/h5dump/testh5dump.sh tools/test/h5dump/testh5dumppbits.sh tools/test/h5dump/testh5dumpvds.sh tools/test/h5dump/testh5dumpxml.sh tools/test/h5ls/Makefile tools/test/h5ls/h5ls_plugin.sh tools/test/h5ls/testh5ls.sh tools/test/h5ls/testh5lsvds.sh tools/test/h5import/Makefile tools/test/h5import/h5importtestutil.sh tools/test/h5diff/Makefile tools/test/h5diff/h5diff_plugin.sh tools/test/h5diff/testh5diff.sh tools/test/h5diff/testph5diff.sh tools/src/h5format_convert/Makefile tools/test/h5format_convert/Makefile tools/test/h5format_convert/testh5fc.sh tools/test/h5jam/Makefile tools/test/h5jam/testh5jam.sh tools/test/h5repack/Makefile tools/test/h5repack/h5repack.sh tools/test/h5repack/h5repack_plugin.sh tools/test/h5copy/Makefile tools/test/h5copy/testh5copy.sh tools/test/misc/Makefile tools/test/misc/testh5clear.sh tools/test/misc/testh5mkgrp.sh tools/test/misc/testh5repart.sh tools/test/misc/vds/Makefile tools/test/h5stat/Makefile tools/test/h5stat/testh5stat.sh tools/src/h5perf/Makefile tools/test/perform/Makefile examples/Makefile examples/run-c-ex.sh examples/testh5cc.sh bin/h5cc bin/Makefile c++/Makefile c++/src/Makefile c++/src/h5c++ c++/test/Makefile c++/test/H5srcdir_str.h c++/examples/Makefile c++/examples/run-c++-ex.sh c++/examples/testh5c++.sh fortran/Makefile fortran/src/h5fc fortran/src/Makefile fortran/src/H5fort_type_defines.h fortran/test/Makefile fortran/testpar/Makefile fortran/examples/Makefile fortran/examples/run-fortran-ex.sh fortran/examples/testh5fc.sh java/Makefile java/src/Makefile java/src/jni/Makefile java/test/Makefile java/test/junit.sh hl/Makefile hl/src/Makefile hl/test/Makefile hl/test/H5srcdir_str.h hl/tools/Makefile hl/tools/gif2h5/Makefile hl/tools/gif2h5/h52giftest.sh hl/tools/h5watch/Makefile hl/tools/h5watch/testh5watch.sh hl/examples/Makefile hl/examples/run-hlc-ex.sh hl/c++/Makefile hl/c++/src/Makefile hl/c++/test/Makefile hl/c++/examples/Makefile hl/c++/examples/run-hlc++-ex.sh hl/fortran/Makefile hl/fortran/src/Makefile hl/fortran/test/Makefile hl/fortran/examples/Makefile hl/fortran/examples/run-hlfortran-ex.sh utils/subfiling_vfd/h5fuse" config_headers=" src/H5config.h fortran/src/H5config_f.inc" config_links="" -config_commands=" pubconf depfiles libtool .classes" +config_commands=" pubconf depfiles libtool" ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions @@ -426,7 +426,7 @@ Report bugs to ." ac_cs_config='--enable-cxx --enable-fortran' ac_cs_version="\ -HDF5 config.status 1.14.3 +HDF5 config.status 1.14.4-2 configured by ../configure, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\" @@ -434,7 +434,7 @@ Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -ac_pwd='/hdf5-1.14.3/build' +ac_pwd='/hdf5-1.14.4-2/build' srcdir='..' INSTALL='/usr/bin/install -c' MKDIR_P='/usr/bin/mkdir -p' @@ -836,7 +836,7 @@ fi PACKAGE='hdf5' - VERSION='1.14.3' + VERSION='1.14.4-2' RM='rm -f' ofile='libtool' @@ -847,12 +847,6 @@ fi ac_aux_dir='../bin/' -/usr/bin/mkdir -p java/src/.classes; - /usr/bin/mkdir -p java/test/.classes; - /usr/bin/mkdir -p java/examples/intro/.classes; - /usr/bin/mkdir -p java/examples/datasets/.classes; - /usr/bin/mkdir -p java/examples/datatypes/.classes; - /usr/bin/mkdir -p java/examples/groups/.classes # Handling of arguments. @@ -971,15 +965,6 @@ do "java/src/jni/Makefile") CONFIG_FILES="$CONFIG_FILES java/src/jni/Makefile" ;; "java/test/Makefile") CONFIG_FILES="$CONFIG_FILES java/test/Makefile" ;; "java/test/junit.sh") CONFIG_FILES="$CONFIG_FILES java/test/junit.sh" ;; - "java/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/Makefile" ;; - "java/examples/intro/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/intro/Makefile" ;; - "java/examples/intro/JavaIntroExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/intro/JavaIntroExample.sh" ;; - "java/examples/datasets/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/Makefile" ;; - "java/examples/datasets/JavaDatasetExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datasets/JavaDatasetExample.sh" ;; - "java/examples/datatypes/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/Makefile" ;; - "java/examples/datatypes/JavaDatatypeExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/datatypes/JavaDatatypeExample.sh" ;; - "java/examples/groups/Makefile") CONFIG_FILES="$CONFIG_FILES java/examples/groups/Makefile" ;; - "java/examples/groups/JavaGroupExample.sh") CONFIG_FILES="$CONFIG_FILES java/examples/groups/JavaGroupExample.sh" ;; "hl/Makefile") CONFIG_FILES="$CONFIG_FILES hl/Makefile" ;; "hl/src/Makefile") CONFIG_FILES="$CONFIG_FILES hl/src/Makefile" ;; "hl/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/test/Makefile" ;; @@ -1001,9 +986,8 @@ do "hl/fortran/test/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/test/Makefile" ;; "hl/fortran/examples/Makefile") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/Makefile" ;; "hl/fortran/examples/run-hlfortran-ex.sh") CONFIG_FILES="$CONFIG_FILES hl/fortran/examples/run-hlfortran-ex.sh" ;; - "utils/subfiling_vfd/h5fuse.sh") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse.sh" ;; - "testpar/h5fuse.sh") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse.sh:utils/subfiling_vfd/h5fuse.sh" ;; - ".classes") CONFIG_COMMANDS="$CONFIG_COMMANDS .classes" ;; + "utils/subfiling_vfd/h5fuse") CONFIG_FILES="$CONFIG_FILES utils/subfiling_vfd/h5fuse" ;; + "testpar/h5fuse") CONFIG_LINKS="$CONFIG_LINKS testpar/h5fuse:utils/subfiling_vfd/h5fuse" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -1107,8 +1091,8 @@ S["DEFAULT_API_VERSION"]="v114" S["DEPRECATED_SYMBOLS"]="yes" S["BUILD_ALL_CONDITIONAL_FALSE"]="" S["BUILD_ALL_CONDITIONAL_TRUE"]="#" -S["ROOT"]="/hdf5-1.14.3/build" -S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 34430: -version: command not found)" +S["ROOT"]="/hdf5-1.14.4-2/build" +S["JAVA_VERSION"]="/usr/local/sbin/ (../configure: line 35220: -version: command not found)" S["CXX_VERSION"]="/usr/bin/g++" S["FC_VERSION"]="/usr/bin/gfortran" S["CC_VERSION"]="/usr/bin/gcc" @@ -1116,8 +1100,8 @@ S["WORDS_BIGENDIAN"]="yes" S["BYTESEX"]="big-endian" S["CONFIG_MODE"]="" S["CONFIG_USER"]="root@buildkitsandbox" -S["CONFIG_DATE"]="Thu Jan 4 18:47:38 UTC 2024" -S["H5_VERSION"]="1.14.3" +S["CONFIG_DATE"]="Thu May 2 18:24:19 UTC 2024" +S["H5_VERSION"]="1.14.4-2" S["examplesdir"]="${prefix}/share/hdf5_examples" S["HDFS_VFD_CONDITIONAL_FALSE"]="" S["HDFS_VFD_CONDITIONAL_TRUE"]="#" @@ -1147,6 +1131,8 @@ S["H5DWALK_CPPFLAGS"]="" S["H5DWALK_LIBS"]="" S["H5DWALK_LDFLAGS"]="" S["PARALLEL_TOOLS"]="no" +S["PAC_MPI_LOGICAL_KIND"]="" +S["MPI_LOGICAL_KIND"]="" S["LARGE_PARALLEL_IO"]="no" S["PARALLEL_FILTERED_WRITES"]="no" S["INSTRUMENT_LIBRARY"]="no" @@ -1160,6 +1146,7 @@ S["USE_FILE_LOCKING"]="" S["DESIRED_FILE_LOCKING"]="best-effort" S["OPTIMIZATION"]="high" S["PROFILING"]="no" +S["SHOW_ALL_WARNINGS"]="no" S["ASSERTS"]="no" S["SYMBOLS"]="no" S["DIAGS"]="no" @@ -1310,6 +1297,8 @@ S["H5CONFIG_F_NUM_IKIND"]="INTEGER, PARAMETER :: num_ikinds = 5" S["H5CONFIG_F_RKIND_SIZEOF"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind_sizeof = (/4,8,16/)" S["H5CONFIG_F_RKIND"]="INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" S["H5CONFIG_F_NUM_RKIND"]="INTEGER, PARAMETER :: num_rkinds = 3" +S["HAVE_ISO_FORTRAN_ENV"]="1" +S["FORTRAN_C_BOOL_IS_UNIQUE"]="1" S["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]="1" S["FORTRAN_HAVE_C_LONG_DOUBLE"]="1" S["HAVE_Fortran_INTEGER_SIZEOF_16"]="1" @@ -1347,6 +1336,7 @@ S["FC"]="gfortran" S["PAC_C_MAX_REAL_PRECISION"]="36" S["HDF5_INTERFACES"]=" fortran c++" S["HDF_FORTRAN"]="yes" +S["HAVE__FLOAT16"]="no" S["am__fastdepCC_FALSE"]="#" S["am__fastdepCC_TRUE"]="" S["CCDEPMODE"]="depmode=gcc3" @@ -1364,7 +1354,7 @@ S["CFLAGS"]="" S["CC"]="gcc" S["BUILD_MODE"]="production" S["CLANG_SANITIZE_CHECKS"]="none" -S["UNAME_INFO"]="Linux buildkitsandbox 6.4.16-linuxkit #1 SMP PREEMPT_DYNAMIC Thu Nov 16 10:55:59 UTC 2023 s390x GNU/Linux" +S["UNAME_INFO"]="Linux buildkitsandbox 6.6.22-linuxkit #1 SMP PREEMPT_DYNAMIC Fri Mar 29 12:23:08 UTC 2024 s390x GNU/Linux" S["AM_LDFLAGS"]="" S["AM_JAVAFLAGS"]="" S["AM_JAVACFLAGS"]="" @@ -1381,22 +1371,22 @@ S["H5_CXXFLAGS"]=" -std=c++11 -Wall -Wcast-qual -Wconversion -Wctor-dtor-privac "e-dirs -Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual -Wreorder -Wshadow -Wsign-promo -Wundef -Wwrite-strings -pedantic -Wlarger-than=2560"\ " -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitializ"\ "ed -Wdate-time -Wopenmp-simd -Warray-bounds=2 -Wduplicated-cond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero "\ -"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissi"\ -"ng-profile -Wno-deprecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredu"\ -"ndant-decls -Wswitch -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" +"-Wduplicated-branches -Wformat-overflow=2 -Wformat-truncation=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wno-depr"\ +"ecated-copy -fstdarg-opt -fdiagnostics-urls=never -fno-diagnostics-color -s -Wcast-align -Wmissing-declarations -Wpacked -Wredundant-decls -Wswitch"\ +" -Wunused-but-set-variable -Wunused-function -Wunused-variable -Wunused-parameter -Wshadow -O3" S["H5_FCFLAGS"]=" -std=f2008 -Waliasing -Wall -Wcharacter-truncation -Wextra -Wimplicit-interface -Wsurprising -Wunderflow -pedantic -Wintrinsics-std -Wimplicit-pro"\ "cedure -Wreal-q-constant -Wfunction-elimination -Wrealloc-lhs -Wrealloc-lhs-all -Wno-c-binding-type -Winteger-division -Wfrontend-loop-interchange "\ "-fdiagnostics-urls=never -fno-diagnostics-color -s -Wno-unused-dummy-argument -Wno-array-temporaries -O3" -S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.3/src/H5FDsubfiling" +S["H5_CPPFLAGS"]="-D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -DNDEBUG -UH5_DEBUG_API -I/hdf5-1.14.4-2/src/H5FDsubfiling" S["H5_CFLAGS"]=" -std=c99 -Wall -Wcast-qual -Wconversion -Wextra -Wfloat-equal -Wformat=2 -Winit-self -Winvalid-pch -Wmissing-include-dirs -Wshadow -Wundef -Wwrite"\ "-strings -pedantic -Wno-c++-compat -Wlarger-than=2560 -Wlogical-op -Wframe-larger-than=16384 -Wpacked-bitfield-compat -Wsync-nand -Wno-unsuffixed-fl"\ "oat-constants -Wdouble-promotion -Wtrampolines -Wstack-usage=8192 -Wmaybe-uninitialized -Wdate-time -Warray-bounds=2 -Wc99-c11-compat -Wduplicated-c"\ "ond -Whsa -Wnormalized -Wnull-dereference -Wunused-const-variable -Walloca -Walloc-zero -Wduplicated-branches -Wformat-overflow=2 -Wformat-truncatio"\ -"n=1 -Wattribute-alias -Wcast-align=strict -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls="\ -"never -fno-diagnostics-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarati"\ -"ons -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes"\ -" -Wswitch -Wunused-but-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -W"\ -"restrict -Wcast-function-type -Wmaybe-uninitialized -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ +"n=1 -Wattribute-alias -Wshift-overflow=2 -Wattribute-alias=2 -Wmissing-profile -Wc11-c2x-compat -fstdarg-opt -fdiagnostics-urls=never -fno-diagnosti"\ +"cs-color -s -Wbad-function-cast -Wcast-align -Wformat -Wimplicit-function-declaration -Wint-to-pointer-cast -Wmissing-declarations -Wmissing-protot"\ +"ypes -Wnested-externs -Wold-style-definition -Wpacked -Wpointer-sign -Wpointer-to-int-cast -Wredundant-decls -Wstrict-prototypes -Wswitch -Wunused-b"\ +"ut-set-variable -Wunused-variable -Wunused-function -Wunused-parameter -Wincompatible-pointer-types -Wint-conversion -Wshadow -Wrestrict -Wcast-func"\ +"tion-type -Wmaybe-uninitialized -Wcast-align=strict -Wno-aggregate-return -Wno-inline -Wno-missing-format-attribute -Wno-missing-noreturn -Wno-overl"\ "ength-strings -Wno-jump-misses-init -Wstrict-overflow=2 -Wno-suggest-attribute=const -Wno-suggest-attribute=noreturn -Wno-suggest-attribute=pure -Wn"\ "o-suggest-attribute=format -Wno-suggest-attribute=cold -Wno-suggest-attribute=malloc -O3" S["AR_FLAGS"]="cr" @@ -1427,13 +1417,13 @@ S["mkdir_p"]="$(MKDIR_P)" S["MKDIR_P"]="/usr/bin/mkdir -p" S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" S["STRIP"]="strip" -S["install_sh"]="${SHELL} /hdf5-1.14.3/bin/install-sh" -S["MAKEINFO"]="${SHELL} /hdf5-1.14.3/bin/missing makeinfo" -S["AUTOHEADER"]="${SHELL} /hdf5-1.14.3/bin/missing autoheader" -S["AUTOMAKE"]="${SHELL} /hdf5-1.14.3/bin/missing automake-1.16" -S["AUTOCONF"]="${SHELL} /hdf5-1.14.3/bin/missing autoconf" -S["ACLOCAL"]="${SHELL} /hdf5-1.14.3/bin/missing aclocal-1.16" -S["VERSION"]="1.14.3" +S["install_sh"]="${SHELL} /hdf5-1.14.4-2/bin/install-sh" +S["MAKEINFO"]="${SHELL} /hdf5-1.14.4-2/bin/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoheader" +S["AUTOMAKE"]="${SHELL} /hdf5-1.14.4-2/bin/missing automake-1.16" +S["AUTOCONF"]="${SHELL} /hdf5-1.14.4-2/bin/missing autoconf" +S["ACLOCAL"]="${SHELL} /hdf5-1.14.4-2/bin/missing aclocal-1.16" +S["VERSION"]="1.14.4-2" S["PACKAGE"]="hdf5" S["CYGPATH_W"]="echo" S["am__isrc"]=" -I$(srcdir)" @@ -1469,12 +1459,12 @@ S["libexecdir"]="${exec_prefix}/libexec" S["sbindir"]="${exec_prefix}/sbin" S["bindir"]="${exec_prefix}/bin" S["program_transform_name"]="s,x,x," -S["prefix"]="/hdf5-1.14.3/build/hdf5" +S["prefix"]="/hdf5-1.14.4-2/build/hdf5" S["exec_prefix"]="${prefix}" S["PACKAGE_URL"]="" S["PACKAGE_BUGREPORT"]="help@hdfgroup.org" -S["PACKAGE_STRING"]="HDF5 1.14.3" -S["PACKAGE_VERSION"]="1.14.3" +S["PACKAGE_STRING"]="HDF5 1.14.4-2" +S["PACKAGE_VERSION"]="1.14.4-2" S["PACKAGE_TARNAME"]="hdf5" S["PACKAGE_NAME"]="HDF5" S["PATH_SEPARATOR"]=":" @@ -1523,12 +1513,12 @@ cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { D["PACKAGE_NAME"]=" \"HDF5\"" D["PACKAGE_TARNAME"]=" \"hdf5\"" -D["PACKAGE_VERSION"]=" \"1.14.3\"" -D["PACKAGE_STRING"]=" \"HDF5 1.14.3\"" +D["PACKAGE_VERSION"]=" \"1.14.4-2\"" +D["PACKAGE_STRING"]=" \"HDF5 1.14.4-2\"" D["PACKAGE_BUGREPORT"]=" \"help@hdfgroup.org\"" D["PACKAGE_URL"]=" \"\"" D["PACKAGE"]=" \"hdf5\"" -D["VERSION"]=" \"1.14.3\"" +D["VERSION"]=" \"1.14.4-2\"" D["HAVE_STDIO_H"]=" 1" D["HAVE_STDLIB_H"]=" 1" D["HAVE_STRING_H"]=" 1" @@ -1549,13 +1539,18 @@ D["SIZEOF_LONG_LONG"]=" 8" D["SIZEOF_FLOAT"]=" 4" D["SIZEOF_DOUBLE"]=" 8" D["SIZEOF_LONG_DOUBLE"]=" 16" +D["SIZEOF__FLOAT16"]=" 0" D["SIZEOF___FLOAT128"]=" 0" D["SIZEOF__QUAD"]=" 0" D["PAC_C_MAX_REAL_PRECISION"]=" 36" +D["VERS_MAJOR_TMP"]=" 1" +D["VERS_MINOR_TMP"]=" 14" +D["VERS_RELEASE_TMP"]=" 4" P["FC_FUNC"]="(name,NAME)" D["FC_FUNC"]=" name ## _" P["FC_FUNC_"]="(name,NAME)" D["FC_FUNC_"]=" name ## _" +D["HAVE_ISO_FORTRAN_ENV"]=" 1" D["PAC_FC_MAX_REAL_PRECISION"]=" 33" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_NUM_IKIND"]=" INTEGER, PARAMETER :: num_ikinds = 5" @@ -1571,8 +1566,10 @@ D["HAVE_Fortran_INTEGER_SIZEOF_16"]=" 1" D["FORTRAN_HAVE_STORAGE_SIZE"]=" 1" D["FORTRAN_HAVE_C_SIZEOF"]=" 1" D["FORTRAN_HAVE_SIZEOF"]=" 1" +D["FORTRAN_HAVE_CHAR_ALLOC"]=" 1" D["FORTRAN_HAVE_C_LONG_DOUBLE"]=" 1" D["FORTRAN_C_LONG_DOUBLE_IS_UNIQUE"]=" 1" +D["FORTRAN_C_BOOL_IS_UNIQUE"]=" 1" D["FORTRAN_SIZEOF_LONG_DOUBLE"]=" \"16\"" D["H5CONFIG_F_NUM_RKIND"]=" INTEGER, PARAMETER :: num_rkinds = 3" D["H5CONFIG_F_RKIND"]=" INTEGER, DIMENSION(1:num_rkinds) :: rkind = (/4,8,16/)" @@ -1634,7 +1631,6 @@ D["HAVE_STAT_ST_BLOCKS"]=" 1" D["HAVE_IOCTL"]=" 1" D["HAVE_TIOCGWINSZ"]=" 1" D["HAVE_TIOCGETD"]=" 1" -D["HAVE_ALARM"]=" 1" D["HAVE_ASPRINTF"]=" 1" D["HAVE_CLOCK_GETTIME"]=" 1" D["HAVE_FCNTL"]=" 1" @@ -1651,6 +1647,7 @@ D["HAVE_SYMLINK"]=" 1" D["HAVE_TMPFILE"]=" 1" D["HAVE_VASPRINTF"]=" 1" D["HAVE_WAITPID"]=" 1" +D["HAVE_ALARM"]=" 1" D["HAVE_ATTRIBUTE"]=" 1" D["USE_FILE_LOCKING"]=" 1" D["IGNORE_DISABLED_FILE_LOCKS"]=" 1" @@ -2119,7 +2116,7 @@ See \`config.log' for more details" "$LINENO" 5; } rm -f conftest-deps.mk } ;; - "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; + "fortran/src/H5config_f.inc":H) cat fortran/src/H5config_f.inc | sed '1d;s%^/\* \(.*\) \*/%\1%;s/#define /#define H5_/;s/#undef /#undef H5_/' >fortran/src/H5config_f.inc.tmp; sed -i 's\_TMP\\g' fortran/src/H5config_f.inc.tmp; mv -f fortran/src/H5config_f.inc.tmp fortran/src/H5config_f.inc ;; "libtool":C) # See if we are running on zsh, and set the options that allow our @@ -2984,7 +2981,7 @@ compiler_lib_search_path=$lt_compiler_lib_search_path_FC _LT_EOF ;; - "utils/subfiling_vfd/h5fuse.sh":F) chmod +x utils/subfiling_vfd/h5fuse.sh ;; + "utils/subfiling_vfd/h5fuse":F) chmod +x utils/subfiling_vfd/h5fuse ;; esac done # for ac_tag diff --git a/H/HDF5/generate-H5Tinit/generate-h5tinit.dockerfile b/H/HDF5/generate-H5Tinit/generate-h5tinit.dockerfile index 8b3cdcaadf2..5c3a196c41a 100644 --- a/H/HDF5/generate-H5Tinit/generate-h5tinit.dockerfile +++ b/H/HDF5/generate-H5Tinit/generate-h5tinit.dockerfile @@ -2,7 +2,7 @@ ARG cpuarch=amd64 # amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64 -FROM ${cpuarch}/debian:12.4 +FROM ${cpuarch}/debian:12.5 # FROM ${cpuarch}/debian:unstable # Install packages @@ -16,9 +16,9 @@ RUN apt-get update && \ wget # Download and build HDF5 -RUN wget https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.14/hdf5-1.14.3/src/hdf5-1.14.3.tar.gz -RUN tar xzf hdf5-1.14.3.tar.gz -WORKDIR hdf5-1.14.3 +RUN wget https://github.com/HDFGroup/hdf5/releases/download/hdf5_1.14.4.2/hdf5-1.14.4-2.tar.gz +RUN tar xzf hdf5-1.14.4-2.tar.gz +WORKDIR hdf5-1.14.4-2 RUN mkdir build WORKDIR build RUN ../configure --enable-cxx --enable-fortran diff --git a/H/HDF5/generate-H5Tinit/generate-h5tinit.sh b/H/HDF5/generate-H5Tinit/generate-h5tinit.sh index e74fe2040b7..5cd6c8bdcff 100755 --- a/H/HDF5/generate-H5Tinit/generate-h5tinit.sh +++ b/H/HDF5/generate-H5Tinit/generate-h5tinit.sh @@ -2,9 +2,9 @@ set -euxo pipefail -# cpuarchs="amd64 arm32v5 arm32v7 arm64v8 i386 mips64le ppc64le s390x" +cpuarchs="amd64 arm32v5 arm32v7 arm64v8 i386 mips64le ppc64le s390x" # Note: `riscv64` is only available for Debian `unstable` -cpuarchs="riscv64" +# cpuarchs="riscv64" for cpuarch in $cpuarchs; do tag="generate-h5tinit:debian-$cpuarch" diff --git a/H/HDF5/platforms.md b/H/HDF5/platforms.md new file mode 100644 index 00000000000..e912bd93be8 --- /dev/null +++ b/H/HDF5/platforms.md @@ -0,0 +1,192 @@ +- aarch64-apple-darwin-libgfortran5-mpi+mpich +- aarch64-apple-darwin-libgfortran5-mpi+mpitrampoline +- aarch64-apple-darwin-libgfortran5-mpi+openmpi +- aarch64-linux-gnu-libgfortran3-cxx03-mpi+mpich +- aarch64-linux-gnu-libgfortran3-cxx03-mpi+mpitrampoline +- aarch64-linux-gnu-libgfortran3-cxx03-mpi+openmpi +- aarch64-linux-gnu-libgfortran3-cxx11-mpi+mpich +- aarch64-linux-gnu-libgfortran3-cxx11-mpi+mpitrampoline +- aarch64-linux-gnu-libgfortran3-cxx11-mpi+openmpi +- aarch64-linux-gnu-libgfortran4-cxx03-mpi+mpich +- aarch64-linux-gnu-libgfortran4-cxx03-mpi+mpitrampoline +- aarch64-linux-gnu-libgfortran4-cxx03-mpi+openmpi +- aarch64-linux-gnu-libgfortran4-cxx11-mpi+mpich +- aarch64-linux-gnu-libgfortran4-cxx11-mpi+mpitrampoline +- aarch64-linux-gnu-libgfortran4-cxx11-mpi+openmpi +- aarch64-linux-gnu-libgfortran5-cxx03-mpi+mpich +- aarch64-linux-gnu-libgfortran5-cxx03-mpi+mpitrampoline +- aarch64-linux-gnu-libgfortran5-cxx03-mpi+openmpi +- aarch64-linux-gnu-libgfortran5-cxx11-mpi+mpich +- aarch64-linux-gnu-libgfortran5-cxx11-mpi+mpitrampoline +- aarch64-linux-gnu-libgfortran5-cxx11-mpi+openmpi +- aarch64-linux-musl-libgfortran3-cxx03-mpi+mpich +- aarch64-linux-musl-libgfortran3-cxx03-mpi+openmpi +- aarch64-linux-musl-libgfortran3-cxx11-mpi+mpich +- aarch64-linux-musl-libgfortran3-cxx11-mpi+openmpi +- aarch64-linux-musl-libgfortran4-cxx03-mpi+mpich +- aarch64-linux-musl-libgfortran4-cxx03-mpi+openmpi +- aarch64-linux-musl-libgfortran4-cxx11-mpi+mpich +- aarch64-linux-musl-libgfortran4-cxx11-mpi+openmpi +- aarch64-linux-musl-libgfortran5-cxx03-mpi+mpich +- aarch64-linux-musl-libgfortran5-cxx03-mpi+openmpi +- aarch64-linux-musl-libgfortran5-cxx11-mpi+mpich +- aarch64-linux-musl-libgfortran5-cxx11-mpi+openmpi +- armv6l-linux-gnueabihf-libgfortran3-cxx03-mpi+mpich +- armv6l-linux-gnueabihf-libgfortran3-cxx03-mpi+mpitrampoline +- armv6l-linux-gnueabihf-libgfortran3-cxx11-mpi+mpich +- armv6l-linux-gnueabihf-libgfortran3-cxx11-mpi+mpitrampoline +- armv6l-linux-gnueabihf-libgfortran4-cxx03-mpi+mpich +- armv6l-linux-gnueabihf-libgfortran4-cxx03-mpi+mpitrampoline +- armv6l-linux-gnueabihf-libgfortran4-cxx11-mpi+mpich +- armv6l-linux-gnueabihf-libgfortran4-cxx11-mpi+mpitrampoline +- armv6l-linux-gnueabihf-libgfortran5-cxx03-mpi+mpich +- armv6l-linux-gnueabihf-libgfortran5-cxx03-mpi+mpitrampoline +- armv6l-linux-gnueabihf-libgfortran5-cxx11-mpi+mpich +- armv6l-linux-gnueabihf-libgfortran5-cxx11-mpi+mpitrampoline +- armv6l-linux-musleabihf-libgfortran3-cxx03-mpi+mpich +- armv6l-linux-musleabihf-libgfortran3-cxx03-mpi+openmpi +- armv6l-linux-musleabihf-libgfortran3-cxx11-mpi+mpich +- armv6l-linux-musleabihf-libgfortran3-cxx11-mpi+openmpi +- armv6l-linux-musleabihf-libgfortran4-cxx03-mpi+mpich +- armv6l-linux-musleabihf-libgfortran4-cxx03-mpi+openmpi +- armv6l-linux-musleabihf-libgfortran4-cxx11-mpi+mpich +- armv6l-linux-musleabihf-libgfortran4-cxx11-mpi+openmpi +- armv6l-linux-musleabihf-libgfortran5-cxx03-mpi+mpich +- armv6l-linux-musleabihf-libgfortran5-cxx03-mpi+openmpi +- armv6l-linux-musleabihf-libgfortran5-cxx11-mpi+mpich +- armv6l-linux-musleabihf-libgfortran5-cxx11-mpi+openmpi +- armv7l-linux-gnueabihf-libgfortran3-cxx03-mpi+mpich +- armv7l-linux-gnueabihf-libgfortran3-cxx03-mpi+mpitrampoline +- armv7l-linux-gnueabihf-libgfortran3-cxx03-mpi+openmpi +- armv7l-linux-gnueabihf-libgfortran3-cxx11-mpi+mpich +- armv7l-linux-gnueabihf-libgfortran3-cxx11-mpi+mpitrampoline +- armv7l-linux-gnueabihf-libgfortran3-cxx11-mpi+openmpi +- armv7l-linux-gnueabihf-libgfortran4-cxx03-mpi+mpich +- armv7l-linux-gnueabihf-libgfortran4-cxx03-mpi+mpitrampoline +- armv7l-linux-gnueabihf-libgfortran4-cxx03-mpi+openmpi +- armv7l-linux-gnueabihf-libgfortran4-cxx11-mpi+mpich +- armv7l-linux-gnueabihf-libgfortran4-cxx11-mpi+mpitrampoline +- armv7l-linux-gnueabihf-libgfortran4-cxx11-mpi+openmpi +- armv7l-linux-gnueabihf-libgfortran5-cxx03-mpi+mpich +- armv7l-linux-gnueabihf-libgfortran5-cxx03-mpi+mpitrampoline +- armv7l-linux-gnueabihf-libgfortran5-cxx03-mpi+openmpi +- armv7l-linux-gnueabihf-libgfortran5-cxx11-mpi+mpich +- armv7l-linux-gnueabihf-libgfortran5-cxx11-mpi+mpitrampoline +- armv7l-linux-gnueabihf-libgfortran5-cxx11-mpi+openmpi +- armv7l-linux-musleabihf-libgfortran3-cxx03-mpi+mpich +- armv7l-linux-musleabihf-libgfortran3-cxx03-mpi+openmpi +- armv7l-linux-musleabihf-libgfortran3-cxx11-mpi+mpich +- armv7l-linux-musleabihf-libgfortran3-cxx11-mpi+openmpi +- armv7l-linux-musleabihf-libgfortran4-cxx03-mpi+mpich +- armv7l-linux-musleabihf-libgfortran4-cxx03-mpi+openmpi +- armv7l-linux-musleabihf-libgfortran4-cxx11-mpi+mpich +- armv7l-linux-musleabihf-libgfortran4-cxx11-mpi+openmpi +- armv7l-linux-musleabihf-libgfortran5-cxx03-mpi+mpich +- armv7l-linux-musleabihf-libgfortran5-cxx03-mpi+openmpi +- armv7l-linux-musleabihf-libgfortran5-cxx11-mpi+mpich +- armv7l-linux-musleabihf-libgfortran5-cxx11-mpi+openmpi +- i686-linux-gnu-libgfortran3-cxx03-mpi+mpich +- i686-linux-gnu-libgfortran3-cxx03-mpi+mpitrampoline +- i686-linux-gnu-libgfortran3-cxx03-mpi+openmpi +- i686-linux-gnu-libgfortran3-cxx11-mpi+mpich +- i686-linux-gnu-libgfortran3-cxx11-mpi+mpitrampoline +- i686-linux-gnu-libgfortran3-cxx11-mpi+openmpi +- i686-linux-gnu-libgfortran4-cxx03-mpi+mpich +- i686-linux-gnu-libgfortran4-cxx03-mpi+mpitrampoline +- i686-linux-gnu-libgfortran4-cxx03-mpi+openmpi +- i686-linux-gnu-libgfortran4-cxx11-mpi+mpich +- i686-linux-gnu-libgfortran4-cxx11-mpi+mpitrampoline +- i686-linux-gnu-libgfortran4-cxx11-mpi+openmpi +- i686-linux-gnu-libgfortran5-cxx03-mpi+mpich +- i686-linux-gnu-libgfortran5-cxx03-mpi+mpitrampoline +- i686-linux-gnu-libgfortran5-cxx03-mpi+openmpi +- i686-linux-gnu-libgfortran5-cxx11-mpi+mpich +- i686-linux-gnu-libgfortran5-cxx11-mpi+mpitrampoline +- i686-linux-gnu-libgfortran5-cxx11-mpi+openmpi +- i686-linux-musl-libgfortran3-cxx03-mpi+mpich +- i686-linux-musl-libgfortran3-cxx03-mpi+openmpi +- i686-linux-musl-libgfortran3-cxx11-mpi+mpich +- i686-linux-musl-libgfortran3-cxx11-mpi+openmpi +- i686-linux-musl-libgfortran4-cxx03-mpi+mpich +- i686-linux-musl-libgfortran4-cxx03-mpi+openmpi +- i686-linux-musl-libgfortran4-cxx11-mpi+mpich +- i686-linux-musl-libgfortran4-cxx11-mpi+openmpi +- i686-linux-musl-libgfortran5-cxx03-mpi+mpich +- i686-linux-musl-libgfortran5-cxx03-mpi+openmpi +- i686-linux-musl-libgfortran5-cxx11-mpi+mpich +- i686-linux-musl-libgfortran5-cxx11-mpi+openmpi +- i686-w64-mingw32-libgfortran3-cxx03-mpi+microsoftmpi +- i686-w64-mingw32-libgfortran3-cxx11-mpi+microsoftmpi +- i686-w64-mingw32-libgfortran4-cxx03-mpi+microsoftmpi +- i686-w64-mingw32-libgfortran4-cxx11-mpi+microsoftmpi +- i686-w64-mingw32-libgfortran5-cxx03-mpi+microsoftmpi +- i686-w64-mingw32-libgfortran5-cxx11-mpi+microsoftmpi +- powerpc64le-linux-gnu-libgfortran3-cxx03-mpi+mpich +- powerpc64le-linux-gnu-libgfortran3-cxx03-mpi+mpitrampoline +- powerpc64le-linux-gnu-libgfortran3-cxx03-mpi+openmpi +- powerpc64le-linux-gnu-libgfortran3-cxx11-mpi+mpich +- powerpc64le-linux-gnu-libgfortran3-cxx11-mpi+mpitrampoline +- powerpc64le-linux-gnu-libgfortran3-cxx11-mpi+openmpi +- powerpc64le-linux-gnu-libgfortran4-cxx03-mpi+mpich +- powerpc64le-linux-gnu-libgfortran4-cxx03-mpi+mpitrampoline +- powerpc64le-linux-gnu-libgfortran4-cxx03-mpi+openmpi +- powerpc64le-linux-gnu-libgfortran4-cxx11-mpi+mpich +- powerpc64le-linux-gnu-libgfortran4-cxx11-mpi+mpitrampoline +- powerpc64le-linux-gnu-libgfortran4-cxx11-mpi+openmpi +- powerpc64le-linux-gnu-libgfortran5-cxx03-mpi+mpich +- powerpc64le-linux-gnu-libgfortran5-cxx03-mpi+mpitrampoline +- powerpc64le-linux-gnu-libgfortran5-cxx03-mpi+openmpi +- powerpc64le-linux-gnu-libgfortran5-cxx11-mpi+mpich +- powerpc64le-linux-gnu-libgfortran5-cxx11-mpi+mpitrampoline +- powerpc64le-linux-gnu-libgfortran5-cxx11-mpi+openmpi +- x86_64-apple-darwin-libgfortran3-mpi+mpich +- x86_64-apple-darwin-libgfortran3-mpi+mpitrampoline +- x86_64-apple-darwin-libgfortran3-mpi+openmpi +- x86_64-apple-darwin-libgfortran4-mpi+mpich +- x86_64-apple-darwin-libgfortran4-mpi+mpitrampoline +- x86_64-apple-darwin-libgfortran4-mpi+openmpi +- x86_64-apple-darwin-libgfortran5-mpi+mpich +- x86_64-apple-darwin-libgfortran5-mpi+mpitrampoline +- x86_64-apple-darwin-libgfortran5-mpi+openmpi +- x86_64-linux-gnu-libgfortran3-cxx03-mpi+mpich +- x86_64-linux-gnu-libgfortran3-cxx03-mpi+mpitrampoline +- x86_64-linux-gnu-libgfortran3-cxx03-mpi+openmpi +- x86_64-linux-gnu-libgfortran3-cxx11-mpi+mpich +- x86_64-linux-gnu-libgfortran3-cxx11-mpi+mpitrampoline +- x86_64-linux-gnu-libgfortran3-cxx11-mpi+openmpi +- x86_64-linux-gnu-libgfortran4-cxx03-mpi+mpich +- x86_64-linux-gnu-libgfortran4-cxx03-mpi+mpitrampoline +- x86_64-linux-gnu-libgfortran4-cxx03-mpi+openmpi +- x86_64-linux-gnu-libgfortran4-cxx11-mpi+mpich +- x86_64-linux-gnu-libgfortran4-cxx11-mpi+mpitrampoline +- x86_64-linux-gnu-libgfortran4-cxx11-mpi+openmpi +- x86_64-linux-gnu-libgfortran5-cxx03-mpi+mpich +- x86_64-linux-gnu-libgfortran5-cxx03-mpi+mpitrampoline +- x86_64-linux-gnu-libgfortran5-cxx03-mpi+openmpi +- x86_64-linux-gnu-libgfortran5-cxx11-mpi+mpich +- x86_64-linux-gnu-libgfortran5-cxx11-mpi+mpitrampoline +- x86_64-linux-gnu-libgfortran5-cxx11-mpi+openmpi +- x86_64-linux-musl-libgfortran3-cxx03-mpi+mpich +- x86_64-linux-musl-libgfortran3-cxx03-mpi+openmpi +- x86_64-linux-musl-libgfortran3-cxx11-mpi+mpich +- x86_64-linux-musl-libgfortran3-cxx11-mpi+openmpi +- x86_64-linux-musl-libgfortran4-cxx03-mpi+mpich +- x86_64-linux-musl-libgfortran4-cxx03-mpi+openmpi +- x86_64-linux-musl-libgfortran4-cxx11-mpi+mpich +- x86_64-linux-musl-libgfortran4-cxx11-mpi+openmpi +- x86_64-linux-musl-libgfortran5-cxx03-mpi+mpich +- x86_64-linux-musl-libgfortran5-cxx03-mpi+openmpi +- x86_64-linux-musl-libgfortran5-cxx11-mpi+mpich +- x86_64-linux-musl-libgfortran5-cxx11-mpi+openmpi +- x86_64-unknown-freebsd-libgfortran3-mpi+mpich +- x86_64-unknown-freebsd-libgfortran3-mpi+openmpi +- x86_64-unknown-freebsd-libgfortran4-mpi+mpich +- x86_64-unknown-freebsd-libgfortran4-mpi+openmpi +- x86_64-unknown-freebsd-libgfortran5-mpi+mpich +- x86_64-unknown-freebsd-libgfortran5-mpi+openmpi +- x86_64-w64-mingw32-libgfortran3-cxx03-mpi+microsoftmpi +- x86_64-w64-mingw32-libgfortran3-cxx11-mpi+microsoftmpi +- x86_64-w64-mingw32-libgfortran4-cxx03-mpi+microsoftmpi +- x86_64-w64-mingw32-libgfortran4-cxx11-mpi+microsoftmpi +- x86_64-w64-mingw32-libgfortran5-cxx03-mpi+microsoftmpi +- x86_64-w64-mingw32-libgfortran5-cxx11-mpi+microsoftmpi