diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-03-23 18:26:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-03-23 18:26:01 +0000 |
commit | 32924c1c9048a4dbd99f2cfedbd3128b50968c14 (patch) | |
tree | a631df50787ef435682fe6fa21e8fc41d8bc89ab /src/backend/tcop/postgres.c | |
parent | aba61c52111aa30886db29b88f01c667805ab400 (diff) | |
download | postgresql-32924c1c9048a4dbd99f2cfedbd3128b50968c14.tar.gz postgresql-32924c1c9048a4dbd99f2cfedbd3128b50968c14.zip |
Mark exception and assert global variables as DLLIMPORT, so that plpgsql
can be compiled with asserts enabled on Windoze.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index b62b41356bc..a98bbc9324e 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.214 2001/03/22 06:16:17 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.215 2001/03/23 18:26:01 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -87,7 +87,7 @@ CommandDest whereToSendOutput = Debug; static bool dontExecute = false; /* note: these declarations had better match tcopprot.h */ -DLLIMPORT sigjmp_buf Warn_restart; +sigjmp_buf Warn_restart; bool Warn_restart_ready = false; bool InError = false; @@ -1703,7 +1703,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.214 $ $Date: 2001/03/22 06:16:17 $\n"); + puts("$Revision: 1.215 $ $Date: 2001/03/23 18:26:01 $\n"); } /* |