diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-21 03:59:59 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-21 03:59:59 +0000 |
commit | 41d0b147646e588c69ec826f8800030bbd31a8cd (patch) | |
tree | 181cd983231ba213c382d521db815db3b9e2f673 | |
parent | 99dc4e3b4335a1b927fc87878089cde4e07a808c (diff) | |
download | postgresql-41d0b147646e588c69ec826f8800030bbd31a8cd.tar.gz postgresql-41d0b147646e588c69ec826f8800030bbd31a8cd.zip |
Quick fix for compiling psql...
-rw-r--r-- | src/Makefile.global | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index 95d7ce26e89..e82377f8dd9 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.22 1996/08/20 05:04:06 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.23 1996/08/21 03:59:59 scrappy Exp $ # # NOTES # This is seen by any Makefiles that include mk/postgres.mk. To @@ -157,12 +157,12 @@ EUROPEAN_DATES = 1 USE_READLINE= true # directories for the readline and history libraries. -READLINE_INCDIR= -I/home/tools/include -READLINE_LIBDIR= -L/home/tools/lib +READLINE_INC= -I/home/tools/include +READLINE_LIB= -L/home/tools/lib # use the following if your readline has a separate history lib -#HISTORY_INCDIR= -I/home/tools/include -I/home/tools/include/readline -#HISTORY_LIBDIR= -L/home/tools/lib +#HISTORY_INC= -I/home/tools/include -I/home/tools/include/readline +#HISTORY_LIB= -L/home/tools/lib # If you do not plan to use Host based authentication, # comment out the following line |