diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-19 13:50:44 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-19 13:50:44 +0000 |
commit | efafd1506e57577d210c3a2fa424993c43461ab5 (patch) | |
tree | c44ea082ae83d5f6b2c572bd1775f8dca05121db /src/backend/storage | |
parent | ce8790bc107b218885638f1649fdcc99261ed72f (diff) |
Added a SVR4 port
---
below my signature, there are a coupls of diffs and files in a shell
archive, which were needed to build postgres95 1.02 on Siemens Nixdorfs
MIPS based SINIX systems. Except for the compiler switches "-W0" and
"-LD-Blargedynsym" these diffs should also apply for other SVR4 based
systems. The changes in "Makefile.global" and "genbki.sh" can probably
be ignored (I needed gawk, to make the script run).
There is one bugfix thou. In "src/backend/parser/sysfunc.c" the
function in this file didn't honor the EUROPEAN_DATES ifdef.
---
Submitted by: Frank Ridderbusch <ridderbusch.pad@sni.de>
Diffstat (limited to 'src/backend/storage')
-rw-r--r-- | src/backend/storage/ipc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/storage/ipc.h b/src/backend/storage/ipc.h index 9a4bfe7411d..8a4d2225c48 100644 --- a/src/backend/storage/ipc.h +++ b/src/backend/storage/ipc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.4 1996/07/26 20:39:04 scrappy Exp $ + * $Id: ipc.h,v 1.4.2.1 1996/08/19 13:47:13 scrappy Exp $ * * NOTES * This file is very architecture-specific. This stuff should actually @@ -122,6 +122,7 @@ extern int S_LOCK_FREE(slock_t *lock); defined(PORTNAME_i386_solaris) || \ defined(PORTNAME_sparc_solaris) || \ defined(PORTNAME_ultrix4) || \ + defined(PORTNAME_svr4) || \ defined(WIN32) union semun { int val; |