Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-01-24 | Have configure auto-detect more of the libraries, and shorten out | Marc G. Fournier | |
the ports section of Makefile.global as a result. | |||
1997-01-24 | Add in the code required to auto-detect the OS and to set PORTNAME... | Marc G. Fournier | |
Right now, it only auto-detects FreeBSD, and the rest still get set to UNDEFINED, but its a step in the right direction, no? | |||
1997-01-24 | Auto-sense lib{readline,history,curses,termcap} | Marc G. Fournier | |
Autoconf bin/psql/Makefile | |||
1997-01-24 | Have Makefile autoconf'd according to whether the system has | Marc G. Fournier | |
readline and associated libraries... | |||
1997-01-24 | Stray endif prevents compile | Marc G. Fournier | |
1997-01-24 | Slowly building up config.h so that it is pretty much generated by | Marc G. Fournier | |
configure, thereby reducing the ports dependencies in it :) | |||
1997-01-23 | Makefile.global.in currently should reflect what Makefile.global | Marc G. Fournier | |
in v6.0 does... | |||
1997-01-23 | Okay, GNUmakefile.in == GNUmakefile, except for the stuff that | Marc G. Fournier | |
configure is auto-finding | |||
1997-01-23 | Add config.h to configure | Marc G. Fournier | |
1997-01-23 | Forgot, we don't use Makefile anymore. | Marc G. Fournier | |
Mv Makefile.in to GNUmakefile.in and reflect the change in the configure script | |||
1997-01-23 | Bring in Nat' preliminary work at autoconf'ng PostgreSQL...I imagine | Marc G. Fournier | |
it still needs lots of work, but, hey, at least this way there are more ppl working off the same "Source"... | |||
1997-01-23 | The last patch fixes some incongruences in the #define used to compile the | Marc G. Fournier | |
Tcl arrays support. Here are the correct values to be defined in config.h and pgtclCmds.c. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1997-01-23 | The second patch adds a more explicative error message to BufferPoolCheckLeak. | Marc G. Fournier | |
It should be completely harmless. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1997-01-23 | Document and enable ACLGROUP_PATCH submitted by Massimo | Marc G. Fournier | |
1997-01-23 | Patch from Massimo Dal Zotto <dz@cs.unitn.it> | Marc G. Fournier | |
The first patch changes the behavior of aclcheck for groups. Currently an user can access a table only if he has the required permission for ALL the groups defined for that table. With my patch he can access a table if he has the permission for ONE of the groups, which seems to me a more useful thing. If you think this should be the correct behavior of the acl group check feel free to remove the #ifdef, if not please add a commented line to config.h. | |||
1997-01-23 | Remove SB_PAD. Compute padding at compile time. | Bruce Momjian | |
1997-01-23 | Fix from Andrew for compiling libpgtcl...basically, switch off -Werror, | Marc G. Fournier | |
which probably isn't needed, since we are going to take off -Werror anyway, right? | |||
1997-01-23 | Small fixes for SVR4 port by Frank Ridderbusch | Marc G. Fournier | |
1997-01-23 | Added EXAMPLES section. | Bruce Momjian | |
1997-01-23 | Removed unlinked patch that is not neede now that Vadim has properly fixed it. | Bruce Momjian | |
1997-01-23 | Add "else true" to make it magically work on Ultrix. | Bryan Henderson | |
1997-01-22 | INDEXSCAN_PATCH changes: should work for (Param OP VAR) too | Vadim B. Mikheev | |
(but I didn't test FUNC OP PARAM and PARAM OP FUNC - no time) | |||
1997-01-22 | 1. INDEXSCAN_PATCH changes: (op Param Var) should work too | Vadim B. Mikheev | |
2. IndexScanableOperand now uses match_indexkey_operand instead of equal_indexkey_var (if we have some index on attribute X then we shouldn't use it for 'where some_func(X) OP CONST'). | |||
1997-01-22 | Fixing bug in INDEXSCAN_PATCH: | Vadim B. Mikheev | |
ExecInitIndexScan now works with operands of Param type and (!!!) postquel_execute() now substitutes param values before calling postquel_start(). | |||
1997-01-22 | Another change from /usr/include/machine/limits.h to just limits.h | Marc G. Fournier | |
1997-01-22 | Another one that should be including limits.h vs machine/limits.h | Marc G. Fournier | |
1997-01-22 | Taking a chance here. Under both Solaris and FreeBSD, there is a | Marc G. Fournier | |
/usr/include/limits.h (which quiets the costsize.c warnings)...under FreeBSD, /usr/include/limits.h *includes* machine/limits.h, while under Solaris, there is no such things as /usr/include/machine... Problem with Solaris pointed out by Mark Wahl | |||
1997-01-22 | the i386_solaris port requires inet_aton.o | Marc G. Fournier | |
Pointed out by Mark Wahl | |||
1997-01-22 | Cast constants to the type of the other binary operand. | Bruce Momjian | |
Invalidate vacuum relation cache to use new row counts from vacuum. | |||
1997-01-21 | Add link options for libpq library search. | Bryan Henderson | |
1997-01-21 | Rename GNUMakefile to GNUmakefile so gmake finds it. | Bruce Momjian | |
1997-01-20 | Made the patch, but forgot to commit it... | Marc G. Fournier | |
1997-01-20 | Fixing possible losing data changes: | Vadim B. Mikheev | |
1. New flag - BM_JUST_DIRTIED - added for BufferDesc; 2. All data "dirtiers" (WriteBuffer and WriteNoReleaseBuffer) set this flag (and BM_DIRTY too); 3. All data "flushers" (FlushBuffer, BufferSync and BufferReplace) turn this flag off just before calling smgr[blind]write/smgrflush and check this flag after flushing buffer: if it turned ON then BM_DIRTY will stay ON. | |||
1997-01-20 | New flag for BufferDesc - BM_JUST_DIRTIED, - to prevent | Vadim B. Mikheev | |
losing data changes. | |||
1997-01-20 | 1. Setting rdesc->rd_tmpunlinked to FALSE in heap_creatr () just after | Vadim B. Mikheev | |
smgrcreate (). 2. Checking rdesc->rd_tmpunlinked in heap_destroy () & heap_destroyr () before calling smgrunlink (). | |||
1997-01-20 | Use gcc to make Linux ELF shared library, instead of ld. | Bryan Henderson | |
1997-01-19 | Change "ld" program back to ld from gcc for Linux. Backend make files need ld. | Bryan Henderson | |
Must find alternate solution to libpq shared library build problem. | |||
1997-01-19 | Update handling of backslashes, and pg_user dump. | Bruce Momjian | |
1997-01-18 | Add missing #. | Bruce Momjian | |
1997-01-18 | Add include files needed for stat(). | Bruce Momjian | |
1997-01-18 | Rename Makefile to GNUMakefile and add a "use GNU Make" Makefile so people | Bryan Henderson | |
don't accidentally use non-GNU make. | |||
1997-01-18 | Set LD = gcc for Linux so shared libpq build works. | Bryan Henderson | |
1997-01-18 | Prevent UNIQUE indexes for non-btree access methods. | Bruce Momjian | |
1997-01-18 | Remove blank lines. | Bruce Momjian | |
1997-01-17 | Removed unneeded custom shell script call. | Bruce Momjian | |
1997-01-17 | Add pg_dump's option meanings to the manual page. | Bruce Momjian | |
1997-01-16 | Unapply a patch that wasn't a patch... | Marc G. Fournier | |
1997-01-16 | Minor change to file point out by Andrew | Marc G. Fournier | |
1997-01-16 | This is one of those patches that obviously fixes something, just not | Marc G. Fournier | |
sure exactly what it is it fixes... | |||
1997-01-16 | Added pg_dumpall to source tree. | Bruce Momjian | |