aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/bc/Makefile
diff options
context:
space:
mode:
authorMatthew N. Dodd <mdodd@FreeBSD.org>2001-10-19 00:24:39 +0000
committerMatthew N. Dodd <mdodd@FreeBSD.org>2001-10-19 00:24:39 +0000
commit9c77d65883313d002d9a96af0e599047fcf194fa (patch)
tree439ace547fbf77f2883b5c3fce878b000e75ad40 /gnu/usr.bin/bc/Makefile
parentc33ed45032cf9ac9b18480d610cd4fd3790fc7fe (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/bc/Makefile')
-rw-r--r--gnu/usr.bin/bc/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/bc/Makefile b/gnu/usr.bin/bc/Makefile
index a8c3af4647ab..3ad6d3ce06b9 100644
--- a/gnu/usr.bin/bc/Makefile
+++ b/gnu/usr.bin/bc/Makefile
@@ -8,8 +8,10 @@ PROG= bc
SRCS= bc.y execute.c global.c load.c main.c scan.l storage.c util.c \
number.c getopt.c getopt1.c
CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../../contrib/bc/h -DHAVE_CONFIG_H
-DPADD= ${LIBREADLINE} ${LIBTERMCAP}
-LDADD= -lreadline -ltermcap
+#DPADD= ${LIBREADLINE} ${LIBTERMCAP}
+#LDADD= -lreadline -ltermcap
+DPADD += ${LIBEDIT} ${LIBTERMCAP}
+LDADD += -ledit -ltermcap
EXAMPLES= ckbook.b pi.b primes.b twins.b
EXAMPDIR= /usr/share/examples/bc