summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-02-06Change ordering of librariesMarc G. Fournier
1997-02-06Include main Makefile.global first so variables are not over-written.Bruce Momjian
1997-02-05Oops, just about forgot to commit this one too :(Marc G. Fournier
1997-02-05Get in there...Marc G. Fournier
1997-02-05Add Makefile.in so that configure can determine if inet_aton.o is requiredMarc G. Fournier
Add CFLAGS= @CPPFLAGS@ to Makefile.global and configure so that build is useful for finding extra header files Split header files from libraries in build. Doesn't make much sense to look for a header file in /usr/local/lib, nor to look for a library in /usr/local/include :)
1997-02-05Update to handle include search paths.Bruce Momjian
1997-02-04Add in appropriate checks for inet_aton, and modifications to ↵Marc G. Fournier
backend/port/Makefile to include inet_aton.c if required
1997-02-04Test for existence of inet_aton on the system, and only include inet_aton.c ifMarc G. Fournier
required Pointed out by Brian E. Gallew
1997-02-04Add in a check for AIX port and set PORTNAME accordinglyMarc G. Fournier
Pointed out by: Darren King
1997-02-04Remove a library check that isn't used right nowMarc G. Fournier
1997-02-04Add a 'build' script. All it currently does is prompts the user for ↵Marc G. Fournier
additional 'lib' directories to search to find libraries, and then runs ./configure directly
1997-02-04Add conditional for port to bsdiMarc G. Fournier
1997-02-04Fix for echo newline suppression detectionMarc G. Fournier
Submitted by: Keith Parks
1997-02-04Remove default GNUmakefile and Makefile.globalMarc G. Fournier
Change reference to Postgres95 to PostgreSQL in GNUmakefile
1997-02-04remove old non-autoconf config.hMarc G. Fournier
clean up some of the readline code in config.h.in
1997-02-04Final file required for autoconf, so far...Marc G. Fournier
1997-02-04Bring back in the autoconf files - work in progressMarc G. Fournier
1997-02-03Change references to NEED_RUSAGE to HAVE_RUSAGEMarc G. Fournier
Pointed out by:" Tatsuo Ishii <t-ishii@sra.co.jp>
1997-01-30AIX *does* have <sys/select.h>Marc G. Fournier
Pointed out by Darren King
1997-01-30Revisions to customize for READLINE supportMarc G. Fournier
From Andrew Martin
1997-01-30aix does have <termios.h>Marc G. Fournier
pointed out by Darren King
1997-01-29Linux doesn't have sys/select.h...Marc G. Fournier
1997-01-29New func _vc_scanoneind: scan one index relation to update statisticVadim B. Mikheev
in pg_class if no one page was reapped by vacuum.
1997-01-28Added comment to readline defines.Bruce Momjian
1997-01-28Moved readline stuff into Makefile.global.Bruce Momjian
1997-01-27Apply usage patches for European Dates patch from KeithMarc G. Fournier
1997-01-27Quick patch from Andrew to recognize nextstep vs next as a portMarc G. Fournier
1997-01-27Slight change to nabstime.c so that configure is able to handle a systemMarc G. Fournier
whereby timezone isn't an int, but tzset() exists... This isn't a definitive fix, as there is probably an easier way of fixing the bug...
1997-01-27Convert MISSING_SYSCONF to !HAVE_SYSCONF for autoconfMarc G. Fournier
From: Keith Parks
1997-01-26More removals for next/nextstep. Fix IPC lib for them.Bruce Momjian
1997-01-26Change 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-26Remove #include "rlstubs.h", since it doesn't exist anymoreMarc G. Fournier
1997-01-26Linux defines MAXINT in values.h, which causes an error when compiling.Marc G. Fournier
Wrap it in an #ifndef to prevent this
1997-01-26Bring in a patch from Keith Parks to move the use of European datesMarc G. Fournier
from a #define to a run-time option '-e' Man page was updated to reflect new option
1997-01-26Fix typo in struct name.Bruce Momjian
1997-01-25Remove rlstubs.[ch], since they weren't actually doing anything that couldn'tMarc 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-25Okay, 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-25Why 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-25Modifications to handle the situation where readline.h exists, butMarc 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-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