aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/bootstrap.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-01-24 22:42:35 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-01-24 22:42:35 +0000
commitc19b247aec78552d1dca7d9c2a679203c4d936fc (patch)
treef92b10b01594892a09e9a344d625465285c33562 /src/backend/bootstrap/bootstrap.c
parentf12c5f898cb6953abaac21e63f2206ca6ef382b0 (diff)
downloadpostgresql-c19b247aec78552d1dca7d9c2a679203c4d936fc.tar.gz
postgresql-c19b247aec78552d1dca7d9c2a679203c4d936fc.zip
Change NEED_SIG_JMP to HAVE_SIGSETJMP in preparation for configure
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r--src/backend/bootstrap/bootstrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index f66366ca3a4..2c4f8104958 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.14 1997/01/14 08:04:42 bryanh Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.15 1997/01/24 22:42:30 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -191,7 +191,7 @@ static char *values[MAXATTR]; /* cooresponding attribute values */
int numattr; /* number of attributes for cur. rel */
extern int fsyncOff; /* do not fsync the database */
-#ifdef NEED_SIG_JMP
+#ifndef HAVE_SIGSETJMP
static jmp_buf Warn_restart;
#define sigsetjmp(x,y) setjmp(x)
#define siglongjmp longjmp