summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-02-22 15:40:28 +0000
committerBruce Momjian <bruce@momjian.us>2002-02-22 15:40:28 +0000
commit326191c9b097169cc98f4dc286a43459e6c34385 (patch)
tree88514197128fade3bf54243af4dce1098ac02e50 /src
parent876eda539c48076723b5f5392bd065bb36aeec78 (diff)
We had a problem with to compile pgsql-7.2 under SW-8.0.
In the mailing lists I found no informations. See note for further informations. Add missing AuthBlockSig. regards Heiko
Diffstat (limited to 'src')
-rw-r--r--src/include/libpq/pqsignal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/libpq/pqsignal.h b/src/include/libpq/pqsignal.h
index be3396727c1..764e50db9a1 100644
--- a/src/include/libpq/pqsignal.h
+++ b/src/include/libpq/pqsignal.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pqsignal.h,v 1.19 2001/11/05 17:46:33 momjian Exp $
+ * $Id: pqsignal.h,v 1.19.2.1 2002/02/22 15:40:28 momjian Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
@@ -28,7 +28,8 @@ extern sigset_t UnBlockSig,
#define PG_SETMASK(mask) sigprocmask(SIG_SETMASK, mask, NULL)
#else
extern int UnBlockSig,
- BlockSig;
+ BlockSig,
+ AuthBlockSig;
#define PG_SETMASK(mask) sigsetmask(*((int*)(mask)))
#endif