Tony Leneis <[EMAIL PROTECTED]> wrote:
>       Tru64 Unix declares __sys_siglist in signal.h.  It works just like
> _sys_siglist and sys_siglist on other systems.  I'm not sure what the
> rationale was behind it, but it would be nice if configure could detect
> this and use the same work-around in kill.c that _sys_siglist does.  (It's
> necessary because Tru64 Unix doesn't have strsignal().)
>
>       Assuming you want to follow the same naming scheme, I guess config.h
> would set HAVE_DECL___SYS_SIGLIST to indicate there's a __sys_siglist.  Here
> is the patch for src/kill.c:
>
> --- kill.c      2002-09-02 00:29:44.000000000 -0700
> +++ patchedkill.c       2003-04-04 22:20:43.000000000 -0800
> @@ -52,6 +52,9 @@
>  #  if HAVE_DECL__SYS_SIGLIST || defined _sys_siglist
>  #   define sys_siglist _sys_siglist
>  #  endif
> +#  if HAVE_DECL___SYS_SIGLIST || defined __sys_siglist
> +#   define sys_siglist __sys_siglist
> +#  endif
>  # endif
>  # if HAVE_DECL_SYS_SIGLIST || defined sys_siglist
>  #  define strsignal(signum) (0 <= (signum) && (signum) <= SIGNUM_BOUND \

Thank you for the report and patch.
On which version of Tru64 did that happen,
and with which compiler?


_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to