mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Autotools: Quote PHP_CHECK_SIZEOF macro arguments
[skip ci]
This commit is contained in:
parent
0122be574a
commit
2b30b22d7d
1 changed files with 3 additions and 3 deletions
|
@ -461,9 +461,9 @@ AC_CHECK_TYPES([socklen_t], [], [], [
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl These are defined elsewhere than stdio.h.
|
dnl These are defined elsewhere than stdio.h.
|
||||||
PHP_CHECK_SIZEOF(intmax_t, 0)
|
PHP_CHECK_SIZEOF([intmax_t], [0])
|
||||||
PHP_CHECK_SIZEOF(ssize_t, 8)
|
PHP_CHECK_SIZEOF([ssize_t], [8])
|
||||||
PHP_CHECK_SIZEOF(ptrdiff_t, 8)
|
PHP_CHECK_SIZEOF([ptrdiff_t], [8])
|
||||||
|
|
||||||
dnl Check stdint types (must be after header check).
|
dnl Check stdint types (must be after header check).
|
||||||
PHP_CHECK_STDINT_TYPES
|
PHP_CHECK_STDINT_TYPES
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue