1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Autotools: Quote PHP_CHECK_SIZEOF macro arguments

[skip ci]
This commit is contained in:
Peter Kokot
2024-08-10 16:01:22 +02:00
parent 0122be574a
commit 2b30b22d7d

View File

@@ -461,9 +461,9 @@ AC_CHECK_TYPES([socklen_t], [], [], [
])
dnl These are defined elsewhere than stdio.h.
PHP_CHECK_SIZEOF(intmax_t, 0)
PHP_CHECK_SIZEOF(ssize_t, 8)
PHP_CHECK_SIZEOF(ptrdiff_t, 8)
PHP_CHECK_SIZEOF([intmax_t], [0])
PHP_CHECK_SIZEOF([ssize_t], [8])
PHP_CHECK_SIZEOF([ptrdiff_t], [8])
dnl Check stdint types (must be after header check).
PHP_CHECK_STDINT_TYPES