summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-04-29 10:43:35 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-04-29 10:43:35 +0200
commit38ecfe02459969a60e86de6d670b7ab7fba7305a (patch)
tree8a346a16f350747484a6b1225656e954a6d735f0 /build
parent533669f7c437e564a56fc559dbd375ac1fdc815e (diff)
parent67f9b0b754654e76ef8d5b5539fb520541092950 (diff)
downloadphp-git-38ecfe02459969a60e86de6d670b7ab7fba7305a.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Fix #79532: sizeof off_t can be wrong
Diffstat (limited to 'build')
-rw-r--r--build/php.m41
1 files changed, 1 insertions, 0 deletions
diff --git a/build/php.m4 b/build/php.m4
index c5ce380264..4197955bf1 100644
--- a/build/php.m4
+++ b/build/php.m4
@@ -2418,6 +2418,7 @@ AC_DEFUN([PHP_CHECK_STDINT_TYPES], [
AC_CHECK_SIZEOF([long])
AC_CHECK_SIZEOF([long long])
AC_CHECK_SIZEOF([size_t])
+ AC_CHECK_SIZEOF([off_t])
AC_CHECK_TYPES([int8, int16, int32, int64, int8_t, int16_t, int32_t, int64_t, uint8, uint16, uint32, uint64, uint8_t, uint16_t, uint32_t, uint64_t, u_int8_t, u_int16_t, u_int32_t, u_int64_t], [], [], [
#include <stdint.h>
#if HAVE_SYS_TYPES_H