| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 1997-01-26 | More removals for next/nextstep. Fix IPC lib for them. | Bruce Momjian | |
| 1997-01-26 | Change next to nextstep where missed. | Bruce Momjian | |
| 1997-01-26 | |From: Keith Parks <emkxp01@mtcc.demon.co.uk> | Marc G. Fournier | |
| |Subject: [PATCH] adding SYS_TIME just for fun. | |Hi, | |Whilst I was playing round with the European dates patch I noticed the sysfunc() |that allows you to do :- | |create table test ( da date); |insert into test values (SYS_DATE); | |and have the current system date inserted. | |So I thought it would be nice to have the SYS_TIME facility too. | |I've cloned the function and changed a few things and there you have it, |you can now do: | |create table test2 ( ti time); |insert into test2 values (SYS_TIME); | |||
| 1997-01-26 | Remove #include "rlstubs.h", since it doesn't exist anymore | Marc G. Fournier | |
| 1997-01-26 | Linux defines MAXINT in values.h, which causes an error when compiling. | Marc G. Fournier | |
| Wrap it in an #ifndef to prevent this | |||
| 1997-01-26 | Bring in a patch from Keith Parks to move the use of European dates | Marc G. Fournier | |
| from a #define to a run-time option '-e' Man page was updated to reflect new option | |||
| 1997-01-26 | Fix typo in struct name. | Bruce Momjian | |
| 1997-01-25 | Remove rlstubs.[ch], since they weren't actually doing anything that couldn't | Marc G. Fournier | |
| be #ifdef'd into psql.c itself From what I can tell, if USE_READLINE is true or false, psql works under FreeBSD, without configure. Now to test it *again* under sparc_solaris with configure and see if it works... | |||
| 1997-01-25 | Okay, this should pretty much clean up the psql/readline/history mess. | Marc G. Fournier | |
| Added a README.readline file until configure is integrated to *try* and explain the way things stand. Removed a stray configure .in file | |||
| 1997-01-25 | Why can't everyone be standard? :( | Marc G. Fournier | |
| Add some code to make psql happy with a system where there is *no* history code available, but there is readline code... | |||
| 1997-01-25 | Modifications to handle the situation where readline.h exists, but | Marc G. Fournier | |
| history.h doesn't...previously, it was assumed that both existed, or didn't exist...but this assumption fails on the one sparc_solaris box that I have access to, and could exist in other circumstances | |||
| 1997-01-25 | Some fixes for using configure under sparc_solaris | Marc G. Fournier | |
| 1997-01-25 | would you mind committing the following changes for me? (the first | Bruce Momjian | |
| bug causes compilation to fail on alpha, the second causes a compiler in this environment | |||
| 1997-01-25 | More autosize structure error checks. | Bruce Momjian | |
| 1997-01-25 | The check should be for getrusage(), not rusage() ... change the defines | Marc G. Fournier | |
| to reflect what configure is going to define when the time comes | |||
| 1997-01-25 | Remove -lsocket -lnsl from X11_LIB, since it should be added on a port-by-port | Marc G. Fournier | |
| basis, as its only specific to certain OSs | |||
| 1997-01-25 | Disable -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-25 | remove asm/bitops.h, as its causing more problems then it fixes. | Marc G. Fournier | |
| 1997-01-25 | Add YACC= bison -y as per Andrew's request... | Marc G. Fournier | |
| 1997-01-25 | Change how readline support is included in psql.c ... | Marc G. Fournier | |
| See message to hackers@ mailing list concerning this... | |||
| 1997-01-25 | Restructure padding to handle structure already 128 bytes(alpha). | Bruce Momjian | |
| 1997-01-24 | Switch over NEED_RUSAGE to HAVE_RUSAGE for configure | Marc G. Fournier | |
| 1997-01-24 | I reversed a bunch of the #define's inadvertantly... | Marc G. Fournier | |
| Fixed them, and am re-committing | |||
| 1997-01-24 | Missed this when I removed the rest of the configure stuff | Marc G. Fournier | |
| 1997-01-24 | Change NEED_SIG_JMP to HAVE_SIGSETJMP in preparation for configure | Marc G. Fournier | |
| 1997-01-24 | Another switch for configure: NEED_SYS_SELECT_H to HAVE_SYS_SELECT_H | Marc G. Fournier | |
| 1997-01-24 | Convert NEED_{RINT,CBRT,ISINF} to HAVE_* in prepration for configure... | Marc G. Fournier | |
| 1997-01-24 | Replace occurances of USE_{LIMITS,VALUES}_H with HAVE_* in preparation | Marc G. Fournier | |
| for switch over to configure | |||
| 1997-01-24 | Remove 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-24 | This should clean everything up back to pre-configure status | Marc G. Fournier | |
| 1997-01-24 | Remove all the configure related stuff... | Marc G. Fournier | |
| 1997-01-24 | Slight oops...Makefile.global generated by configure *wasn't* supposed | Marc G. Fournier | |
| to be committed... | |||
| 1997-01-24 | Okay, 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-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? | |||
