diff options
| author | Marc G. Fournier | 1996-07-16 06:53:41 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1996-07-16 06:53:41 +0000 |
| commit | e5eb8594464fbb5a6a104f9e78388778ce5bba37 (patch) | |
| tree | e24eb92bef32bce636d133d1f68ddbcb882a1377 /src | |
| parent | 169a5b76708b8f00f380130253491694ce0df8b0 (diff) | |
fix: During a BSD/OS(BSDI) 2.1 compile, I got errors about undefined
S_LOCK_'s during the postgres link phase.
submitted by: Bruce Momjian (root@candle.pha.pa.us)
Diffstat (limited to 'src')
| -rw-r--r-- | src/backend/storage/ipc/s_lock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/ipc/s_lock.c b/src/backend/storage/ipc/s_lock.c index 3cbe796fc59..13dc5aa273f 100644 --- a/src/backend/storage/ipc/s_lock.c +++ b/src/backend/storage/ipc/s_lock.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/s_lock.c,v 1.1.1.1 1996/07/09 06:21:54 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/s_lock.c,v 1.2 1996/07/16 06:53:41 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -381,7 +381,7 @@ S_INIT_LOCK(unsigned char *addr) * Linux and friends */ -#if defined(PORTNAME_linux) || defined(PORTNAME_BSD44_derived) +#if defined(PORTNAME_linux) || defined(PORTNAME_BSD44_derived) || defined(PORTNAME_bsdi) int tas(slock_t *m) |
