summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2021-01-12 22:06:59 (GMT)
committerGitHub <noreply@github.com>2021-01-12 22:06:59 (GMT)
commitbf6629fadcb749aca7af40d6fb879bc2f9f53a28 (patch)
treef8ab08543516589982c3e9af0ce88524c108ba5a /configure
parentcb81d553083eb62222a9bfdeb7950b4342ef93e2 (diff)
downloadhdf5-bf6629fadcb749aca7af40d6fb879bc2f9f53a28.zip
hdf5-bf6629fadcb749aca7af40d6fb879bc2f9f53a28.tar.gz
hdf5-bf6629fadcb749aca7af40d6fb879bc2f9f53a28.tar.bz2
Hdf5 1 8 (#255)
* close #195. (#196) * Update HDF5PluginMacros.cmake * Update HDF5PluginMacros.cmake * Restores maintainer mode in the autotools (#200) Maintainer mode should be enabled in development branches. Also adds helpful commenting. Add script bin/switch_maint_mode. Add file changes generated by bin reconfigure in src/H5Edefin.h src/H5Einit.h src/H5Epubgen.h src/H5Eterm.h * Update MANIFEST for switch_maint_mode. * Update so numbers to match 1.8.22 release. * Updated configure with reconfigure. Co-authored-by: H. Joe Lee <hyoklee@hdfgroup.org> Co-authored-by: Dana Robinson <43805+derobins@users.noreply.github.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 34b03ba..58d3da1 100755
--- a/configure
+++ b/configure
@@ -26438,13 +26438,14 @@ esac
## ----------------------------------------------------------------------
-## Does the struct stat have the st_blocks field? This field is not Posix.
+## Does the struct stat have the st_blocks field? This field is not POSIX.
##
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for st_blocks in struct stat" >&5
$as_echo_n "checking for st_blocks in struct stat... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
+ #include <sys/stat.h>
#ifdef FC_DUMMY_MAIN
#ifndef FC_DUMMY_MAIN_EQ_F77
# ifdef __cplusplus
@@ -26456,11 +26457,10 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
int
main ()
{
-
+struct stat sb; sb.st_blocks=0;
;
return 0;
-}[
- #include <sys/stat.h>],[struct stat sb; sb.st_blocks=0;])
+}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :