postgresql/src
1997-01-26 20:15:26 +00:00
..
backend Change next to nextstep where missed. 1997-01-26 20:15:26 +00:00
bin Remove #include "rlstubs.h", since it doesn't exist anymore 1997-01-26 17:27:32 +00:00
include Change next to nextstep where missed. 1997-01-26 20:15:26 +00:00
interfaces Remove from include/config.h: 1997-01-24 17:47:39 +00:00
man Bring in a patch from Keith Parks to move the use of European dates 1997-01-26 15:32:28 +00:00
test Rename GNUMakefile to GNUmakefile so gmake finds it. 1997-01-21 01:27:18 +00:00
tools/mkldexport End of the make file simplifications. 1996-11-12 11:43:32 +00:00
tutorial Silence compiler warnings, fix error in complex compare function. 1997-01-05 21:20:34 +00:00
utils Make strdup work for Ultrix. Thanks Erik Bertelsen 1996-11-28 03:32:18 +00:00
BACKEND_DIRS Small regression and doc patch 1996-12-13 02:39:00 +00:00
customize Made the patch, but forgot to commit it... 1997-01-20 14:23:03 +00:00
GNUmakefile Add "else true" to make it magically work on Ultrix. 1997-01-23 05:16:13 +00:00
MAKE_CTAGS Add execute permission. 1996-10-08 04:09:50 +00:00
MAKE_ETAGS Try to fix mode. 1996-11-07 05:15:31 +00:00
MAKE_MKID Renamed file. 1996-10-05 21:16:34 +00:00
Makefile Rename Makefile to GNUmakefile to catch people using other makes. 1996-12-31 07:26:27 +00:00
Makefile.global Remove -lsocket -lnsl from X11_LIB, since it should be added on a port-by-port 1997-01-25 19:25:05 +00:00
README.readline Okay, this should pretty much clean up the psql/readline/history mess. 1997-01-25 22:52:08 +00:00

In preparation for using configure to compile PostgreSQL, various
define cleanups have been performed.

The most confusing has been psql's use of -lreadline

In order to turn on support for readline, your Makefile.custom file
*must* contain lines similar to:

USE_READLINE= yes
READLINE_INC=
READLINE_LIB=


READLINE_INC can contain:

	-DHAVE_LIBREADLINE 
		not optional if USE_READLINE enabled
	-DHAVE_READLINE_H 
		if <readline.h>, define this
	-DHAVE_HISTORY 
		if you have either <history.h> or <readline/history.h>
	-DHAVE_LIBHISTORY
		if you have a libhistory.a

READLINE_LIB can contain:

	-lreadline 
		not optional if USE_READLINE enabled
	-lhistory
		if you have a libhistory.a


Once support for configure is integrated into the distribution, this will
all be hidden "behind the scenes"

Marc G. Fournier
scrappy@hub.org