From 48ea8b76db3b0579580172ce3eb1af73b9a4a64b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 22 Mar 1999 16:45:30 +0000 Subject: Hi, I have solved some problems with dynamic loading on NT. It is possible to run succesfully both trigger and plpgsql regression tests. The patch is in the included file "diff". Dan --- src/backend/tcop/postgres.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 9e4a4efa4e5..bf049518752 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.105 1999/03/17 22:53:18 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.106 1999/03/22 16:45:27 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -142,7 +142,7 @@ jmp_buf Warn_restart; #define sigsetjmp(x,y) setjmp(x) #define siglongjmp longjmp #else -sigjmp_buf Warn_restart; +DLLIMPORT sigjmp_buf Warn_restart; #endif /* defined(nextstep) */ bool InError; @@ -1531,7 +1531,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.105 $ $Date: 1999/03/17 22:53:18 $\n"); + puts("$Revision: 1.106 $ $Date: 1999/03/22 16:45:27 $\n"); } /* ---------------- -- cgit v1.2.3