diff options
| author | Bruce Momjian <bruce@momjian.us> | 2007-01-28 03:50:34 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2007-01-28 03:50:34 +0000 |
| commit | 91ed399517b025ff672d57599a6155350cd84a89 (patch) | |
| tree | 420786ef6ee78e445d96ee572069ac6ea73d93a5 /src/backend/postmaster/postmaster.c | |
| parent | 9bf559dee3b84e0ed3ab26c0b133fb2035c9312d (diff) | |
| download | postgresql-91ed399517b025ff672d57599a6155350cd84a89.tar.gz | |
Use autoconf build-in sys_siglist macro AC_DECL_SYS_SIGLIST, rather than
create our own.
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 6c4ff16ed8..f28f38211f 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -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, /*------ |
