diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-21 04:06:01 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-21 04:06:01 +0000 |
commit | 2a23229cb33014b4190624892cdd66c9c3e0127f (patch) | |
tree | dab37db305e44936852be6002650a53455a2981d /src | |
parent | 4455ba2c88231fd16f926bf7941006f2e4cdf4ef (diff) | |
download | postgresql-2a23229cb33014b4190624892cdd66c9c3e0127f.tar.gz postgresql-2a23229cb33014b4190624892cdd66c9c3e0127f.zip |
BSD$$_derived needs -ltermcap for psql
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile index 5d632e4f37d..dfb71658bc1 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.5 1996/08/20 05:04:13 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.6 1996/08/21 04:06:01 scrappy Exp $ # #------------------------------------------------------------------------- @@ -49,6 +49,10 @@ ifeq ($(USE_READLINE), true) else ifeq ($(PORTNAME), bsdi_2_1) LD_ADD += -ltermcap + else + ifeq ($(PORTNAME), BSD44_derived) + LD_ADD += -ltermcap + endif endif endif endif |