git.postgresql.org Git - postgresql.git/log
remove asm/bitops.h, as its causing more problems then it fixes.
Add YACC= bison -y as per Andrew's request...
Change how readline support is included in psql.c ...
See message to hackers@ mailing list concerning this...
Restructure padding to handle structure already 128 bytes(alpha).
Switch over NEED_RUSAGE to HAVE_RUSAGE for configure
I reversed a bunch of the #define's inadvertantly...
Fixed them, and am re-committing
Missed this when I removed the rest of the configure stuff
Change NEED_SIG_JMP to HAVE_SIGSETJMP in preparation for configure
Another switch for configure: NEED_SYS_SELECT_H to HAVE_SYS_SELECT_H
Convert NEED_{RINT,CBRT,ISINF} to HAVE_* in prepration for configure...
Replace occurances of USE_{LIMITS,VALUES}_H with HAVE_* in preparation
for switch over to configure
Remove from include/config.h:
#if defined(aix)
#define TERMIOS_H_LOCATION <termios.h>
#else
#define TERMIOS_H_LOCATION <sys/termios.h>
#endif
libpq/fe-exec.c modified so that location of termios.h is determined
by whether HAVE_TERMIOS_H is defined or not, in preparation for switch
to configure
This should clean everything up back to pre-configure status
Remove all the configure related stuff...
Slight oops...Makefile.global generated by configure *wasn't* supposed
to be committed...
Okay, that does it for tonight...
Cleaned out alot of the #define that can be auto-detect'd by
configure from config.h...
Have configure auto-detect more of the libraries, and shorten out
the ports section of Makefile.global as a result.
Add in the code required to auto-detect the OS and to set PORTNAME...
Right now, it only auto-detects FreeBSD, and the rest still get set
to UNDEFINED, but its a step in the right direction, no?
Auto-sense lib{readline,history,curses,termcap}
Autoconf bin/psql/Makefile
Have Makefile autoconf'd according to whether the system has
readline and associated libraries...
Stray endif prevents compile
Slowly building up config.h so that it is pretty much generated by
configure, thereby reducing the ports dependencies in it :)
Makefile.global.in currently should reflect what Makefile.global
in v6.0 does...
Okay, GNUmakefile.in == GNUmakefile, except for the stuff that
configure is auto-finding
Add config.h to configure
Forgot, we don't use Makefile anymore.
Mv Makefile.in to GNUmakefile.in and reflect the change in the
configure script
Bring in Nat' preliminary work at autoconf'ng PostgreSQL...I imagine
it still needs lots of work, but, hey, at least this way there are more
ppl working off the same "Source"...
The last patch fixes some incongruences in the #define used to compile the
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>
The second patch adds a more explicative error message to BufferPoolCheckLeak.
It should be completely harmless.
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
Document and enable ACLGROUP_PATCH submitted by Massimo
Patch from Massimo Dal Zotto <dz@cs.unitn.it>
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.
Remove SB_PAD. Compute padding at compile time.
Fix from Andrew for compiling libpgtcl...basically, switch off -Werror,
which probably isn't needed, since we are going to take off -Werror
anyway, right?
Small fixes for SVR4 port by Frank Ridderbusch
Added EXAMPLES section.
Removed unlinked patch that is not neede now that Vadim has properly fixed it.
Add "else true" to make it magically work on Ultrix.
INDEXSCAN_PATCH changes: should work for (Param OP VAR) too
(but I didn't test FUNC OP PARAM and PARAM OP FUNC - no time)
1. INDEXSCAN_PATCH changes: (op Param Var) should work too
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').
Fixing bug in INDEXSCAN_PATCH:
ExecInitIndexScan now works with operands of Param type and
(!!!) postquel_execute() now substitutes param values
before calling postquel_start().
Another change from /usr/include/machine/limits.h to just limits.h
Another one that should be including limits.h vs machine/limits.h
Taking a chance here. Under both Solaris and FreeBSD, there is a
/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
the i386_solaris port requires inet_aton.o
Pointed out by Mark Wahl
Cast constants to the type of the other binary operand.
Invalidate vacuum relation cache to use new row counts from vacuum.
Add link options for libpq library search.
Rename GNUMakefile to GNUmakefile so gmake finds it.
Made the patch, but forgot to commit it...
Fixing possible losing data changes:
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.
New flag for BufferDesc - BM_JUST_DIRTIED, - to prevent
losing data changes.
1. Setting rdesc->rd_tmpunlinked to FALSE in heap_creatr () just after
smgrcreate ().
2. Checking rdesc->rd_tmpunlinked in heap_destroy () & heap_destroyr ()
before calling smgrunlink ().
Use gcc to make Linux ELF shared library, instead of ld.
Change "ld" program back to ld from gcc for Linux. Backend make files need ld.
Must find alternate solution to libpq shared library build problem.
Update handling of backslashes, and pg_user dump.
Add missing #.
Add include files needed for stat().
Rename Makefile to GNUMakefile and add a "use GNU Make" Makefile so people
don't accidentally use non-GNU make.
Set LD = gcc for Linux so shared libpq build works.
Prevent UNIQUE indexes for non-btree access methods.
Remove blank lines.
Removed unneeded custom shell script call.
Add pg_dump's option meanings to the manual page.
Unapply a patch that wasn't a patch...
Update README.support to match what is on the WWW Site
Remove RELEASE.patchlevel...it hasn't been modified since 1.02 *sigh*
Pointed out by Andrew
point the installer at src/test/regress for testing
pointed out by Andrew...
Minor change to file point out by Andrew
This is one of those patches that obviously fixes something, just not
sure exactly what it is it fixes...
Various updates to install, including redirecting installers to
Makefile.custom and pointers at the customize script...
Added pg_dumpall to source tree.
Change EXPLAIN options to just use VERBOSE.
FlushLocalBuffer () releases buffer only if required
by caller.
No more LateWrite, but there is WriteMode;
SetBufferWriteMode () added;
FlushBuffer () fixed: now directly calls smgrflush () and
releases buffer only if required by caller.
No more LateWrite.
VariableRelationPutNextXid () now flushes variable relation
after writing next free XID.
SetBufferWriteMode () added; FlushLocalBuffer () fixed (shouldn't
release buffer if called from WriteNoReleaseBuffer ())
Add inet_aton() prototype.
textin fixed: no more zero-byte (thanks, Erich)
Import of PostgreSQL User Manual
Added postgres.h include to quiet down the HPUX ports...
POinted out by: Martin S. Utesch <utesch@aut.tu-freiberg.de>
Comment out LD_ADD and DPADD
DEC Alpha fix. Missing #.
Change to handle bsdi 3.0.
Added lines and comments.
Re-add -lipc to bsdi port after erroneous removal.
Put back -lm for non-nextstep ports.
Eliminate dupliclate definition of external variables reldesc and DataDir.
Some compilers recognize this error.
I'm going t take a chance that this was a mis-spelling, since
all the other port related dependencies are ifeq, not ifneq..
If I'm wrong, someone tell me or change it back...
ReleaseTmpRelBuffers is ReleaseRelationBuffers now.
heap_destroy () releases dirty buffers of a relation to be
destroyed.
There is no more ReleaseTmpRelBuffers, but ReleaseRelationBuffers.
Cleanup for DEBUG: removal in initdb.sh.
Prevent initdb from showing vacuum statistics.
Remove CFLAGS_SL from lib/Makefile
There are two prototypes for inet_aton, one in include/inet_aton.h, and
another one in Solaris' port-protos.h.
The following patch will bring inet_aton's prototype into scope for
Ultrix to silence a compilation warning.
If the intention is to have inet_aton's prototype in its own header
filer, the declaration in Solaris' port-protos.h should be removed.
If the declaration in port-protos.h is deemed to be the correct
place, a declaration should be added in Ultrix' port-protos.h
regards
Erik Bertelsen
Another compilation error has surfaced on Ultrix. In spin.c, sem.h must be
included after storage/ipc.h like other similar cases that were changed
recently.
This one has popped up during the last few days.
My sources are sup'ed today, 13. jan 1996.
regards
Erik Bertelsen.
Restored original pg_type/pg_attribute defaults. Regression fixes.
Andrew's Makefile.custom generation program...hopefully should
reduce *some* confusion, eh? :)
From: Andrew Martin <martin@biochemistry.ucl.ac.uk>
Update create_index manual page to have unique section.
Update history file for 1.09 release
Re-add -lm link flag
This is the main PostgreSQL git repository.
RSS
Atom