diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 04:00:39 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 04:00:39 +0000 |
commit | 8288f6afd0c9dc9c9caf15f2618efe36c740c7cc (patch) | |
tree | 4a40cdced44169edb69d0c6ee74d37e384acd396 /src | |
parent | 359258e1be1a1918aeecd4e7245ac4e50b5e483c (diff) |
Fix a bug with using READLINE that prevents psql from compiling
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index e23e51a1396..2e0a31a1115 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.3 1996/08/19 19:34:48 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.4 1996/08/20 04:00:39 scrappy Exp $ # # NOTES # This is seen by any Makefiles that include mk/postgres.mk. To @@ -59,7 +59,7 @@ # until after this file is processed! # make sure that you have no whitespaces after the PORTNAME setting # or the makefiles can get confused -PORTNAME= svr4 +PORTNAME= BSD44_derived # SRCDIR specifies where the source files are. SRCDIR= /home/tools/postgres95-1.02/src @@ -157,10 +157,11 @@ EUROPEAN_DATES = 1 USE_READLINE= true # directories for the readline and history libraries. -READLINE_INCDIR= /home/tools/include -HISTORY_INCDIR= /home/tools/include -I/home/tools/include/readline -READLINE_LIBDIR= /home/tools/lib -lreadline -#HISTORY_LIBDIR= /home/tools/lib -lhistory +READLINE_INC= -I/home/tools/include +READLINE_LIB= -L/home/tools/lib -lreadline + +#HISTORY_INC= -I/home/tools/include -I/home/tools/include/readline +#HISTORY_LIB= -L/home/tools/lib -lhistory # If you do not plan to use Host based authentication, # comment out the following line |