File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -170,6 +170,9 @@ Tests
170170Build
171171-----
172172
173+ - Issue #17603: Avoid error about nonexistant fileblocks.o file by using a
174+ lower-level check for st_blocks in struct stat.
175+
173176- Issue #26465: Update Windows builds to use OpenSSL 1.0.2g.
174177
175178- Issue #24421: Compile Modules/_math.c once, before building extensions.
Original file line number Diff line number Diff line change @@ -11962,19 +11962,9 @@ cat >>confdefs.h <<_ACEOF
1196211962_ACEOF
1196311963
1196411964
11965- $as_echo " #define HAVE_ST_BLOCKS 1" >> confdefs.h
11966-
11967- else
11968- case " $LIBOBJS " in
11969- * " fileblocks.$ac_objext " * ) ;;
11970- * ) LIBOBJS=" $LIBOBJS fileblocks.$ac_objext "
11971- ;;
11972- esac
11973-
1197411965fi
1197511966
1197611967
11977-
1197811968{ $as_echo " $as_me :${as_lineno-$LINENO } : checking for time.h that defines altzone" >&5
1197911969$as_echo_n " checking for time.h that defines altzone... " >&6 ; }
1198011970if ${ac_cv_header_time_altzone+: } false ; then :
Original file line number Diff line number Diff line change @@ -3439,7 +3439,7 @@ AC_CHECK_MEMBERS([struct stat.st_blksize])
34393439AC_CHECK_MEMBERS ( [ struct stat.st_flags] )
34403440AC_CHECK_MEMBERS ( [ struct stat.st_gen] )
34413441AC_CHECK_MEMBERS ( [ struct stat.st_birthtime] )
3442- AC_STRUCT_ST_BLOCKS
3442+ AC_CHECK_MEMBERS ( [ struct stat.st_blocks ] )
34433443
34443444AC_MSG_CHECKING ( for time.h that defines altzone )
34453445AC_CACHE_VAL ( ac_cv_header_time_altzone ,[
Original file line number Diff line number Diff line change 731731/* Define to 1 if `tm_zone' is a member of `struct tm'. */
732732#undef HAVE_STRUCT_TM_TM_ZONE
733733
734- /* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
735- `HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
736- #undef HAVE_ST_BLOCKS
737-
738734/* Define if you have the 'symlink' function. */
739735#undef HAVE_SYMLINK
740736
You can’t perform that action at this time.
0 commit comments