summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-04 04:57:27 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-04 04:57:27 +0000
commit37c32dc6d196d882561d45337da64e1b8d8def7c (patch)
tree245e307b738f31f33c4dd70928379ee213b18d63 /configure.in
parent92861bb0dea5d306b6c5927efa8d262a5f493dce (diff)
* process.c: define sig_t if not exist.
at least Solaris 10 and 11 doesn't have sig_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 8232d548a0..580e5d11ba 100644
--- a/configure.in
+++ b/configure.in
@@ -2883,6 +2883,8 @@ main()
fi
fi
+AC_CHECK_TYPES([sig_t],[],[],[@%:@include <signal.h>])
+
if test "$ac_cv_func_getpgid" = no; then
# AC_FUNC_GETPGRP fails when cross-compiling with old autoconf.
# autoconf is changed between 2.52d and 2.52f?