From: Nicholas Clark Date: Sun, 29 Jan 2006 22:00:11 +0000 (+0000) Subject: Solaris seems not to enjoy initialising constants from SIG_??? on 64 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=583e55483ea6fa083591759858107e831c089781;p=p5sagit%2Fp5-mst-13.2.git Solaris seems not to enjoy initialising constants from SIG_??? on 64 bit builds. p4raw-id: //depot/perl@26996 --- diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index 80f1daa..ad87d5d 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -60,9 +60,9 @@ my @names = {name=>"SIGRTMIN", not_constant=>1}, {name=>"EXIT_FAILURE", default=>["IV", "1"]}, {name=>"EXIT_SUCCESS", default=>["IV", "0"]}, - {name=>"SIG_DFL", value=>"(IV)SIG_DFL"}, - {name=>"SIG_ERR", value=>"(IV)SIG_ERR"}, - {name=>"SIG_IGN", value=>"(IV)SIG_IGN"}, + {name=>"SIG_DFL", value=>"(IV)SIG_DFL", not_constant=>1}, + {name=>"SIG_ERR", value=>"(IV)SIG_ERR", not_constant=>1}, + {name=>"SIG_IGN", value=>"(IV)SIG_IGN", not_constant=>1}, # L_tmpnam[e] was a typo--retained for compatibility {name=>"L_tmpname", value=>"L_tmpnam"}, {name=>"NULL", value=>"0"},