summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-01-25Some fixes for using configure under sparc_solarisMarc G. Fournier
1997-01-25would you mind committing the following changes for me? (the firstBruce Momjian
bug causes compilation to fail on alpha, the second causes a compiler in this environment
1997-01-25More autosize structure error checks.Bruce Momjian
1997-01-25The check should be for getrusage(), not rusage() ... change the definesMarc G. Fournier
to reflect what configure is going to define when the time comes
1997-01-25Remove -lsocket -lnsl from X11_LIB, since it should be added on a port-by-portMarc G. Fournier
basis, as its only specific to certain OSs
1997-01-25Disable -Werror by default.Marc G. Fournier
Developers can add it to their Makefile.custom...again, it causes sooooo many more problems then its worth, from an end-user standpoint.
1997-01-25remove asm/bitops.h, as its causing more problems then it fixes.Marc G. Fournier
1997-01-25Add YACC= bison -y as per Andrew's request...Marc G. Fournier
1997-01-25Change how readline support is included in psql.c ...Marc G. Fournier
See message to hackers@ mailing list concerning this...
1997-01-25Restructure padding to handle structure already 128 bytes(alpha).Bruce Momjian
1997-01-24Switch over NEED_RUSAGE to HAVE_RUSAGE for configureMarc G. Fournier
1997-01-24I reversed a bunch of the #define's inadvertantly...Marc G. Fournier
Fixed them, and am re-committing
1997-01-24Missed this when I removed the rest of the configure stuffMarc G. Fournier
1997-01-24Change NEED_SIG_JMP to HAVE_SIGSETJMP in preparation for configureMarc G. Fournier
1997-01-24Another switch for configure: NEED_SYS_SELECT_H to HAVE_SYS_SELECT_HMarc G. Fournier
1997-01-24Convert NEED_{RINT,CBRT,ISINF} to HAVE_* in prepration for configure...Marc G. Fournier
1997-01-24Replace occurances of USE_{LIMITS,VALUES}_H with HAVE_* in preparationMarc G. Fournier
for switch over to configure
1997-01-24Remove from include/config.h:Marc G. Fournier
#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
1997-01-24This should clean everything up back to pre-configure statusMarc G. Fournier
1997-01-24Remove all the configure related stuff...Marc G. Fournier
1997-01-24Slight oops...Makefile.global generated by configure *wasn't* supposedMarc G. Fournier
to be committed...
1997-01-24Okay, that does it for tonight...Marc G. Fournier
Cleaned out alot of the #define that can be auto-detect'd by configure from config.h...
1997-01-24Have configure auto-detect more of the libraries, and shorten outMarc G. Fournier
the ports section of Makefile.global as a result.
1997-01-24Add 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-24Auto-sense lib{readline,history,curses,termcap}Marc G. Fournier
Autoconf bin/psql/Makefile
1997-01-24Have Makefile autoconf'd according to whether the system hasMarc G. Fournier
readline and associated libraries...
1997-01-24Stray endif prevents compileMarc G. Fournier
1997-01-24Slowly building up config.h so that it is pretty much generated byMarc G. Fournier
configure, thereby reducing the ports dependencies in it :)
1997-01-23Makefile.global.in currently should reflect what Makefile.globalMarc G. Fournier
in v6.0 does...
1997-01-23Okay, GNUmakefile.in == GNUmakefile, except for the stuff thatMarc G. Fournier
configure is auto-finding
1997-01-23Add config.h to configureMarc G. Fournier
1997-01-23Forgot, 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-23Bring in Nat' preliminary work at autoconf'ng PostgreSQL...I imagineMarc 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-23The last patch fixes some incongruences in the #define used to compile theMarc 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-23The 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-23Document and enable ACLGROUP_PATCH submitted by MassimoMarc G. Fournier
1997-01-23Patch 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-23Remove SB_PAD. Compute padding at compile time.Bruce Momjian
1997-01-23Fix 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-23Small fixes for SVR4 port by Frank RidderbuschMarc G. Fournier
1997-01-23Added EXAMPLES section.Bruce Momjian
1997-01-23Removed unlinked patch that is not neede now that Vadim has properly fixed it.Bruce Momjian
1997-01-23Add "else true" to make it magically work on Ultrix.Bryan Henderson
1997-01-22INDEXSCAN_PATCH changes: should work for (Param OP VAR) tooVadim B. Mikheev
(but I didn't test FUNC OP PARAM and PARAM OP FUNC - no time)
1997-01-221. INDEXSCAN_PATCH changes: (op Param Var) should work tooVadim 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-22Fixing 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-22Another change from /usr/include/machine/limits.h to just limits.hMarc G. Fournier
1997-01-22Another one that should be including limits.h vs machine/limits.hMarc G. Fournier
1997-01-22Taking a chance here. Under both Solaris and FreeBSD, there is aMarc 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-22the i386_solaris port requires inet_aton.oMarc G. Fournier
Pointed out by Mark Wahl