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
No known key found for this signature in database
GPG key ID: A94800907AA79B36

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