Commit aac48394 authored by Marc G. Fournier's avatar Marc G. Fournier

fixed usuage of -ltermcap for psql

submitted by: Bruce Momjian <maillist@candle.pha.pa.us>
parent 9e0a8d4b
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.3 1996/07/20 07:40:03 scrappy Exp $ # $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.4 1996/07/25 20:01:51 scrappy Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -42,11 +42,13 @@ ifeq ($(USE_READLINE), true) ...@@ -42,11 +42,13 @@ ifeq ($(USE_READLINE), true)
else else
ifeq ($(PORTNAME), linux) ifeq ($(PORTNAME), linux)
LD_ADD += -ltermcap LD_ADD += -ltermcap
endif else
ifeq ($(PORTNAME), next) ifeq ($(PORTNAME), next)
LD_ADD += -ltermcap LD_ADD += -ltermcap
else
ifeq ($(PORTNAME), bsdi) ifeq ($(PORTNAME), bsdi)
LD_ADD += -ltermcap LD_ADD += -ltermcap
else
ifeq ($(PORTNAME), bsdi_2_1) ifeq ($(PORTNAME), bsdi_2_1)
LD_ADD += -ltermcap LD_ADD += -ltermcap
endif endif
...@@ -54,6 +56,7 @@ ifeq ($(USE_READLINE), true) ...@@ -54,6 +56,7 @@ ifeq ($(USE_READLINE), true)
endif endif
endif endif
endif endif
endif
else else
CFLAGS += -DNOREADLINE CFLAGS += -DNOREADLINE
endif endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment