diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-08-24 00:33:02 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-24 18:33:23 +0200 |
commit | 3ceecaa9a014c0990c49bd2db1dc16db01254e4b (patch) | |
tree | 3026fc21729cd80310b499fa9900f13006d63c64 /win32 | |
parent | 6136a20544a3f8a116bb38e404dadd500006b134 (diff) | |
download | php-git-3ceecaa9a014c0990c49bd2db1dc16db01254e4b.tar.gz |
Replace HAVE_ST_BLOCKS with HAVE_STRUCT_STAT_ST_BLOCKS
Since Autoconf 2.50+ macro AC_STRUCT_ST_BLOCKS defines the new
HAVE_STRUCT_STAT_ST_BLOCKS symbol and has deprecated the previous
HAVE_ST_BLOCKS.
PHP 5.3 required Autoconf 2.13 (released in 1999) or newer, since PHP
5.4 the autoconf 2.59 (released in 2003) or newer was required, and
since PHP 7.2, autoconf 2.64 (released in 2008) or newer is required.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/config.w32.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/build/config.w32.h.in b/win32/build/config.w32.h.in index ef72e6814d..74342099c3 100644 --- a/win32/build/config.w32.h.in +++ b/win32/build/config.w32.h.in @@ -67,7 +67,7 @@ #undef HAVE_SYS_TIME_H #define HAVE_SIGNAL_H 1 #undef HAVE_STRUCT_STAT_ST_BLKSIZE -#undef HAVE_ST_BLOCKS +#undef HAVE_STRUCT_STAT_ST_BLOCKS #define HAVE_STRUCT_STAT_ST_RDEV 1 #define HAVE_UTIME_NULL 1 #define HAVE_VPRINTF 1 |