summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2005-07-19 15:06:00 +0300
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-07-19 11:06:22 +0000
commit3609ea0df8ff1318cd5f51cdbcd9bcd6c2a3fce2 (patch)
tree5dbd7c8c74ac7b1e3c5439e11f22d046ec3cf933 /Configure
parent1a4aeaf6cd5b55c4bc394654790805ad868b2936 (diff)
downloadperl-3609ea0df8ff1318cd5f51cdbcd9bcd6c2a3fce2.tar.gz
allow POSIX SIGRTMIN...SIGRTMAX signals (and plug a core dump)
Message-ID: <42DCC278.2010009@gmail.com> p4raw-id: //depot/perl@25185
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure10
1 files changed, 8 insertions, 2 deletions
diff --git a/Configure b/Configure
index c1eb2c0413..bb3d9c59b8 100755
--- a/Configure
+++ b/Configure
@@ -26,7 +26,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Mon Jul 18 12:48:03 CEST 2005 [metaconfig 3.0 PL70]
+# Generated on Tue Jul 19 13:22:25 CEST 2005 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -19337,6 +19337,12 @@ int main() {
#endif
#ifndef NSIG
+# ifdef _SIG_MAX
+# define NSIG (_SIG_MAX+1)
+# endif
+#endif
+
+#ifndef NSIG
# ifdef MAXSIG
# define NSIG (MAXSIG+1)
# endif
@@ -19350,7 +19356,7 @@ int main() {
#ifndef NSIG
# ifdef SIGARRAYSIZE
-# define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
+# define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
# endif
#endif