Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stat st blocks fix 1822 #256

Merged
merged 19 commits into from
Jan 12, 2021
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
52f6744
Restores maintainer mode in the autotools (#200)
derobins Dec 18, 2020
9d1999c
Update configure for Restores maintainer mode in the autotools (#200).
lrknox Dec 18, 2020
f34233c
Update MANIFEST for switch_maint_mode script.
lrknox Dec 18, 2020
0277b7d
Update so numbers for 1.8.22 release.
lrknox Dec 21, 2020
37b5b8e
Merge branch 'hdf5_1_8_22' of https://github.com/HDFGroup/hdf5 into h…
lrknox Dec 21, 2020
a008cd0
Add so numbers changes in Makefile.ins for 1.8.22 release.
lrknox Dec 21, 2020
57df34d
Update pkgconfig settings with version - #218 (#223)
byrnHDF Dec 22, 2020
10dbac8
Add notice of final HDFF5 1.8 release.
lrknox Dec 22, 2020
c4fcff1
Merge branch 'hdf5_1_8_22' of https://github.com/HDFGroup/hdf5 into h…
lrknox Dec 22, 2020
458be32
Update 1.8 final release notice.
lrknox Dec 22, 2020
5fde85a
Update CMake/HDF5Examples version in bin/release
lrknox Dec 22, 2020
1c44828
Merge branch 'hdf5_1_8_22' of https://github.com/HDFGroup/hdf5 into h…
lrknox Dec 22, 2020
faf36a3
Fixed typo in an error message. (#227)
bmribler Dec 23, 2020
1c141c0
Remove duplicate setting (#239)
byrnHDF Jan 5, 2021
2d5ac50
Merge branch 'hdf5_1_8_22' of https://github.com/HDFGroup/hdf5 into h…
lrknox Jan 9, 2021
23d6daf
Fixes Autotools detection of the st_blocks field in stat (#246)
derobins Jan 8, 2021
8072ea5
Restore lines in RELEASE.txt.
lrknox Jan 9, 2021
db291a4
Merge branch 'hdf5_1_8_22' of https://github.com/HDFGroup/hdf5 into s…
lrknox Jan 12, 2021
e1a91d0
Updated configure with reconfigure.
lrknox Jan 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -26432,13 +26432,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
Expand All @@ -26450,11 +26451,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 :

Expand Down