diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-22 23:00:26 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-22 23:00:26 +0000 |
commit | 5108a5b320254d108034488cb7d5e45079979667 (patch) | |
tree | 5ce8f496f100ebd9d5863274ebf2aafd2de55134 /src/backend/storage/file/fd.c | |
parent | 18a7989e1a9f207c9510a602089dc3e87e796b33 (diff) | |
download | postgresql-5108a5b320254d108034488cb7d5e45079979667.tar.gz postgresql-5108a5b320254d108034488cb7d5e45079979667.zip |
More merges from Dr. George's tree...
- src/backend/tcop/*
- cosmetic changes to OPENLINK patches
- src/backend/storage/*
- more changes, mostly cosmetic
- src/backend/ports/*
- merge in patches for aix and i386_solaris
Diffstat (limited to 'src/backend/storage/file/fd.c')
-rw-r--r-- | src/backend/storage/file/fd.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 8f1bafef4d5..9adb9985c9a 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Id: fd.c,v 1.3 1996/07/18 04:59:42 scrappy Exp $ + * $Id: fd.c,v 1.4 1996/07/22 22:59:50 scrappy Exp $ * * NOTES: * @@ -62,11 +62,12 @@ #define NOFILE NOFILE_IN_U #endif /* PORTNAME_sparc */ -#ifdef PORTNAME_sparc_solaris +#if defined(PORTNAME_sparc_solaris) || defined(PORTNAME_i386_solaris) #include <sys/user.h> #undef NOFILE #define NOFILE 64 -#endif /* PORTNAME_sparc_solaris */ +#endif /* PORTNAME_sparc_solaris || PORTNAME_i386_solaris */ + /* * Problem: Postgres does a system(ld...) to do dynamic loading. This * will open several extra files in addition to those used by |