aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-07-19 06:53:40 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-07-19 06:53:40 +0000
commitdf1a06ed37e4c1390ce49019017047c36437fe87 (patch)
treeba1dd89f50ae1c545d413e50a82d10e96bea654c
parent2ab6d1f125bb159405ae6765749d32c11a0bea69 (diff)
downloadpostgresql-df1a06ed37e4c1390ce49019017047c36437fe87.tar.gz
postgresql-df1a06ed37e4c1390ce49019017047c36437fe87.zip
- added -ltermcap to LIBS in bin/psql/Makefile
- submitted by: Bruce Momjian (root@candle.pha.pa.us)
-rw-r--r--src/bin/psql/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile
index 8e6ab5bb4f1..43e1ac14a46 100644
--- a/src/bin/psql/Makefile
+++ b/src/bin/psql/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.1.1.1 1996/07/09 06:22:15 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.2 1996/07/19 06:53:40 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -29,7 +29,7 @@ ifeq ($(USE_READLINE), true)
# uncomment this
# CFLAGS += -DOLD_READLINE
- LIBCURSES= -lcurses
+ LIBCURSES= -lcurses -ltermcap
LD_ADD += -L$(READLINE_LIBDIR) -L$(HISTORY_LIBDIR) -lreadline -lhistory $(LIBCURSES)
# use the following if your readline has no separate history lib
# LD_ADD += -L$(READLINE_LIBDIR) -lreadline $(LIBCURSES)