bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: coreutils 5.0 on Tru64 Unix


From: Jim Meyering
Subject: Re: coreutils 5.0 on Tru64 Unix
Date: Sat, 05 Apr 2003 17:14:06 +0200

Tony Leneis <address@hidden> 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?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]