From: Bruce Momjian Date: Fri, 22 Feb 2002 15:39:42 +0000 (+0000) Subject: We had a problem with to compile pgsql-7.2 under SW-8.0. X-Git-Tag: REL7_3~2066 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73732ef9144b4a143029af2f171a95b4b678fd79;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/src/include/libpq/pqsignal.h b/src/include/libpq/pqsignal.h index be3396727c1..6e7d8a20030 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.20 2002/02/22 15:39:42 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