diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 04:06:12 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 04:06:12 +0000 |
commit | e326648531d748854cdb002ea7077465c61e40e3 (patch) | |
tree | 895d19be9167f44a224cd6b6ab052804589b1ec3 | |
parent | 4db04d77790caf8be989bb3b6a8735d61e0603cf (diff) |
Added a comment aruond the HISTORY_LIB/INC defines
-rw-r--r-- | src/Makefile.global | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index 2e0a31a1115..d3827f6b6aa 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.4 1996/08/20 04:00:39 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.5 1996/08/20 04:06:12 scrappy Exp $ # # NOTES # This is seen by any Makefiles that include mk/postgres.mk. To @@ -59,21 +59,22 @@ # until after this file is processed! # make sure that you have no whitespaces after the PORTNAME setting # or the makefiles can get confused +# PORTNAME= BSD44_derived -# SRCDIR specifies where the source files are. +# SRCDIR specifies where the source files are. SRCDIR= /home/tools/postgres95-1.02/src # For convenience, POSTGRESDIR is where DATADIR, BINDIR, and LIBDIR # and other target destinations are rooted. Of course, each of these is -# changable separately. +# changable separately. POSTGRESDIR= /home/tools/postgres95-1.02 # POSTGRESLOGIN is the login name of the user who gets special # privileges within the database. By default it is "postgres", but # you can change it to any existing login name (such as your own # login if you are compiling a private version or don't have root -# access). +# access). POSTGRESLOGIN= postgres # DATADIR specifies where the postmaster expects to find its database. @@ -160,6 +161,7 @@ USE_READLINE= true READLINE_INC= -I/home/tools/include READLINE_LIB= -L/home/tools/lib -lreadline +# use the following if your readline has a separate history lib #HISTORY_INC= -I/home/tools/include -I/home/tools/include/readline #HISTORY_LIB= -L/home/tools/lib -lhistory |