diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2016-08-17 12:48:05 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2016-08-17 12:49:00 +0200 |
commit | f7d4733b2eb199a672d1853deafbf5f57c733575 (patch) | |
tree | 1e316a01e676517f4875f2eb2a326a10f94cd126 /ext/zip | |
parent | 526e6bf818ab19cd08ad8db2a42386b3a6c07426 (diff) | |
parent | 356b586ec19f4ccc7bbaf8876e040cd8708c51ad (diff) | |
download | php-git-f7d4733b2eb199a672d1853deafbf5f57c733575.tar.gz |
Merge branch 'PHP-7.0' into PHP-7.1
Diffstat (limited to 'ext/zip')
-rw-r--r-- | ext/zip/config.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/zip/config.m4 b/ext/zip/config.m4 index 81f47df556..bb653c2068 100644 --- a/ext/zip/config.m4 +++ b/ext/zip/config.m4 @@ -156,6 +156,9 @@ AC_CHECK_SIZEOF([int]) AC_CHECK_SIZEOF([long]) AC_CHECK_SIZEOF([long long]) AC_CHECK_SIZEOF([off_t]) +if test "$ac_cv_sizeof_off_t" = "0" ; then + AC_MSG_ERROR(off_t undefined; check your library configuration) +fi AC_CHECK_SIZEOF([size_t]) AC_PATH_PROG([TOUCH], [touch]) |