diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-06-30 11:56:54 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-06-30 11:56:54 +0000 |
commit | 7b230cfe2802a06d9d5cf3c0e3b880233f6fd3fd (patch) | |
tree | 4d59b0d767eebfe93008b2ba46af9662362350fa /configure.ac | |
parent | e2052710943060fea9be60c7cd7bf01eeecb3e11 (diff) | |
download | bundler-7b230cfe2802a06d9d5cf3c0e3b880233f6fd3fd.tar.gz |
use sigsetjmp on macOS
SIGCHLD is used internally since r63758, the signal masks need to
be restored.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63803 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f48db0733c..6b6dd0b9ba 100644 --- a/configure.ac +++ b/configure.ac @@ -766,6 +766,7 @@ AS_CASE(["$target_os"], AS_IF([test $gcc_major -lt 4 -o \( $gcc_major -eq 4 -a $gcc_minor -lt 3 \)], [ ac_cv_func___builtin_setjmp=no ]) + with_setjmp_type=sigsetjmp # to hijack SIGCHLD handler AC_CACHE_CHECK(for broken crypt with 8bit chars, rb_cv_broken_crypt, [AC_TRY_RUN([ #include <stdio.h> |