1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-19 15:49:24 +03:00

The attached patch fixes psql's win32 frontend-only build, by using

pg_strcasecmp in variables.c, and #ifdef'ing out PostmasterPid in
miscadmin.h.

Dave Page
This commit is contained in:
Bruce Momjian
2004-10-18 16:24:40 +00:00
parent a9a2c394b8
commit 0060b3c8eb
2 changed files with 5 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.169 2004/10/09 23:13:14 tgl Exp $
* $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.170 2004/10/18 16:24:40 momjian Exp $
*
* NOTES
* some of the information in this file should be moved to other files.
@@ -120,7 +120,9 @@ do { \
/*
* from utils/init/globals.c
*/
#ifndef WIN32_CLIENT_ONLY
extern pid_t PostmasterPid;
#endif
extern bool IsPostmasterEnvironment;
extern bool IsUnderPostmaster;