diff options
author | Sorah Fukumori <[email protected]> | 2024-05-31 03:52:26 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-30 18:52:26 +0000 |
commit | 1ab7c412d2e3880a7ad233c32e93961888f8145c (patch) | |
tree | 44e67cc4e1dd7546f3c9bf5d173069670e7f7af8 /tool/m4 | |
parent | 22e4eeda6561693367fc7a00b92b90f46b09cabd (diff) |
RUBY_CHECK_HEADER didn't define HAVE_{header-file} (#10876)
--with-gmp is not working at all because HAVE_GMP_H
was missing since 18eaf0be90. [Bug #20515]
bug: https://bugs.ruby-lang.org/issues/20515
follow-up: https://bugs.ruby-lang.org/issues/20494
follow-up: 18eaf0be905e3e251423b42d6f4e56b7cae1bc3b
follow-up: https://github.com/ruby/ruby/pull/10805
Diffstat (limited to 'tool/m4')
-rw-r--r-- | tool/m4/ruby_check_header.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/m4/ruby_check_header.m4 b/tool/m4/ruby_check_header.m4 index 171455549e..6fec9d16c5 100644 --- a/tool/m4/ruby_check_header.m4 +++ b/tool/m4/ruby_check_header.m4 @@ -3,6 +3,6 @@ AC_DEFUN([RUBY_CHECK_HEADER], [# RUBY_CHECK_HEADER($@) save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS m4_if([$5], [], [$INCFLAGS], [$5])" - AC_CHECK_HEADER([$1], [$2], [$3], [$4]) + AC_CHECK_HEADERS([$1], [$2], [$3], [$4]) CPPFLAGS="$save_CPPFLAGS" unset save_CPPFLAGS]) |