From: Marc G. Fournier Date: Mon, 19 Aug 1996 19:32:58 +0000 (+0000) Subject: FreeBSD has libreadline,but not libhistory... X-Git-Tag: PG95-1_08~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e93ad5392e6ca425e1e7c0efa0e2031dafc8768e;p=postgresql FreeBSD has libreadline,but not libhistory... Change Makefile so that it can be commented out in Makefile.global --- diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile index 567eb79202..97f0d15aaa 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.4 1996/07/25 20:01:51 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.4.2.1 1996/08/19 19:32:58 scrappy Exp $ # #------------------------------------------------------------------------- @@ -30,7 +30,7 @@ ifeq ($(USE_READLINE), true) # CFLAGS += -DOLD_READLINE LIBCURSES= -lcurses - LD_ADD += -L$(READLINE_LIBDIR) -L$(HISTORY_LIBDIR) -lreadline -lhistory $(LIBCURSES) + LD_ADD += -L$(READLINE_LIB) -L$(HISTORY_LIB) $(LIBCURSES) # use the following if your readline has no separate history lib # LD_ADD += -L$(READLINE_LIBDIR) -lreadline $(LIBCURSES)