# HG changeset patch # User jwe # Date 784086804 0 # Node ID 05a1e41f2dd4f811566f8d2d7ca04b0bd2ecdba2 # Parent f95973bfc6641072a87679615143c0b04717db62 [project @ 1994-11-06 01:50:53 by jwe] diff --git a/acconfig.h b/acconfig.h --- a/acconfig.h +++ b/acconfig.h @@ -37,6 +37,9 @@ /* Define if you have sgtty.h. */ #undef HAVE_SGTTY_H +/* Define if your system has a sys_siglist variable. */ +#undef HAVE_SYS_SIGLIST + /* Define if you have termios.h. */ #undef HAVE_TERMIOS_H diff --git a/src/sighandlers.cc b/src/sighandlers.cc --- a/src/sighandlers.cc +++ b/src/sighandlers.cc @@ -47,7 +47,7 @@ static void my_friendly_exit (const char *sig_name, int sig_number) { - error ("caught %s -- stopping myself...", sig_name); + error ("%s -- stopping myself...", sig_name); clean_up_and_exit (sig_number); } @@ -220,7 +220,7 @@ #endif } -#ifndef SYS_SIGLIST_DECLARED +#ifndef HAVE_SYS_SIGLIST char *sys_siglist[NSIG + 1] = { #ifdef AIX