- 06 Apr, 1998 1 commit
-
-
Bruce Momjian authored
Attached you'll find a (big) patch that fixes make dep and make depend in all Makefiles where I found it to be appropriate. It also removes the dependency in Makefile.global for NAMEDATALEN and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh a little smarter. This no longer requires initdb.sh that is turned into initdb with a sed script when installing Postgres, hence initdb.sh should be renamed to initdb (after the patch has been applied :-) ) This patch is against the 6.3 sources, as it took a while to complete. Please review and apply, Cheers, Jeroen van Vianen
-
- 05 Apr, 1998 1 commit
-
-
Bruce Momjian authored
-
- 26 Feb, 1998 1 commit
-
-
Bruce Momjian authored
-
- 07 Jan, 1998 1 commit
-
-
Bruce Momjian authored
-
- 05 Jan, 1998 1 commit
-
-
Bruce Momjian authored
-
- 20 Dec, 1997 1 commit
-
-
Marc G. Fournier authored
some of the ports...
-
- 19 Dec, 1997 1 commit
-
-
Marc G. Fournier authored
Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :)
-
- 07 Nov, 1997 1 commit
-
-
Thomas G. Lockhart authored
-
- 18 Sep, 1997 1 commit
-
-
Bruce Momjian authored
-
- 08 Sep, 1997 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
-
- 07 Sep, 1997 1 commit
-
-
Bruce Momjian authored
-
- 19 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 18 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 12 Aug, 1997 1 commit
-
-
Bruce Momjian authored
-
- 28 Jul, 1997 1 commit
-
-
Bruce Momjian authored
-
- 23 May, 1997 1 commit
-
-
Vadim B. Mikheev authored
fdleft = pg_nofile() - allocatedFiles - nfile; looks more realistic, but too noisy - fdleft = pg_nofile() - allocatedFiles; restored.
-
- 22 May, 1997 1 commit
-
-
Vadim B. Mikheev authored
2. FreeFile() has to do nothing with nfile (# of files opened by VFD manager).
-
- 20 Feb, 1997 1 commit
-
-
Marc G. Fournier authored
open Nulldev a *bit* more user friendly...or, at least, admin friendly...have it print strerror(errno) as well
-
- 14 Feb, 1997 1 commit
-
-
Bruce Momjian authored
-
- 27 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
From: Keith Parks
-
- 13 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
OK, The votes are in for the NOFILES limit. With the exception of Next, for which I've not yet heard, all supported platforms seem to have the sysconf() call. port supported default Source. aix yes 2000 darrenk@insightdist.com alpha yes 4096 mjl@wwx.vip.at BSD44_derived yes 64 scrappy@hub.org bsdi yes ??? maillist@candle.pha.pa.us dgux yes ??? geek@andrew.cmu.edu hpux yes 60 emkxp01@mtcc.demon.co.uk i386_solaris yes 64 emkxp01@mtcc.demon.co.uk irix5 yes 200 martin@biochem.uc.ac.uk linux yes 256 emkxp01@mtcc.demon.co.uk next ???? ??? sparc_solaris yes 64 emkxp01@mtcc.demon.co.uk sunos4 yes 64 emkxp01@mtcc.demon.co.uk svr4 yes 64 chicks@chicks.net ultrix4 yes 64 erik@sockdev.uni-c.dk So here's a patch that I think will do the job. (I assume Next will have sysconf() but if not just add MISSING_SYSCONF to the config.h file ) Thanks, Keith.
-
- 28 Dec, 1996 1 commit
-
-
Bruce Momjian authored
-
- 27 Dec, 1996 1 commit
-
-
Bryan Henderson authored
-
- 04 Dec, 1996 1 commit
-
-
Bryan Henderson authored
feature dependencies. Thanks Kurt J. Lidl.
-
- 09 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 08 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 06 Nov, 1996 1 commit
-
-
Marc G. Fournier authored
-
- 04 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 31 Oct, 1996 1 commit
-
-
Marc G. Fournier authored
-
- 27 Oct, 1996 1 commit
-
-
Bryan Henderson authored
-
- 22 Sep, 1996 1 commit
-
-
Marc G. Fournier authored
--- src/backend/storage/file/fd.c Thu Sep 12 17:23:38 1996 *************** *** 262,268 **** Delete(file); /* save the seek position */ ! fileP->seekPos = lseek(fileP->fd, 0L, SEEK_CUR); Assert( fileP->seekPos != -1); /* if we have written to the file, sync it */ --- 262,268 ---- Delete(file); /* save the seek position */ ! fileP->seekPos = (long) lseek(fileP->fd, 0L, SEEK_CUR); Assert( fileP->seekPos != -1); /* if we have written to the file, sync it */ Submitted by: Randy Terbush <randy@zyzzyva.com>
-
- 22 Jul, 1996 1 commit
-
-
Marc G. Fournier authored
- 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
-
- 18 Jul, 1996 1 commit
-
-
Marc G. Fournier authored
include file sys/param.h Submitted by: michael.siebenborn@ae3.Hypo.DE (Michael Siebenborn (6929))
-
- 15 Jul, 1996 1 commit
-
-
Marc G. Fournier authored
-
- 09 Jul, 1996 1 commit
-
-
Marc G. Fournier authored
-