1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-14 08:21:07 +03:00

Use autoconf build-in sys_siglist macro AC_DECL_SYS_SIGLIST, rather than

create our own.
This commit is contained in:
Bruce Momjian
2007-01-28 03:50:34 +00:00
parent 9bf559dee3
commit 91ed399517
5 changed files with 45 additions and 33 deletions

View File

@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.513 2007/01/28 01:12:05 momjian Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.514 2007/01/28 03:50:34 momjian Exp $
*
* NOTES
*
@ -2430,7 +2430,7 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus)
(errmsg("%s (PID %d) was terminated by exception %X",
procname, pid, WTERMSIG(exitstatus)),
errhint("See C include file \"ntstatus.h\" for a description of the hex value.")));
#elif defined(HAVE_SYS_SIGLIST)
#elif defined(HAVE_DECL_SYS_SIGLIST)
ereport(lev,
/*------