aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNate Williams <nate@FreeBSD.org>1993-07-20 22:57:03 +0000
committerNate Williams <nate@FreeBSD.org>1993-07-20 22:57:03 +0000
commit7b0d50fdfe581aea83657b48bddcc7b4baee754e (patch)
treea9827a2887f927db340673fc8acf5219b2fcb6ba /bin
parent3eed882fa1f6afd13539bfe0e9da75b4a3e841c0 (diff)
downloadsrc-7b0d50fdfe581aea83657b48bddcc7b4baee754e.tar.gz
src-7b0d50fdfe581aea83657b48bddcc7b4baee754e.zip
Libcrypt upgrade
Notes
Notes: svn path=/head/; revision=171
Diffstat (limited to 'bin')
-rw-r--r--bin/ed/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile
index a48b0d20fd85..77020043e89a 100644
--- a/bin/ed/Makefile
+++ b/bin/ed/Makefile
@@ -1,7 +1,14 @@
PROG= ed
-CFLAGS+=-I${.CURDIR} -DVI_BANG -DDES -DGNU_REGEX -DHAVE_STRING_H=1
+CFLAGS+=-I${.CURDIR} -DVI_BANG -DGNU_REGEX -DHAVE_STRING_H=1
SRCS= ed.c re.c buf.c cbc.c regex.c
LINKS= ${BINDIR}/ed ${BINDIR}/red
MLINKS= ed.1 red.1
+.if exists(/usr/lib/libcrypt.a)
+CFLAGS+=-DDES
+DPADD+= ${LIBCRYPT}
+LDADD+= -lcrypt
+.endif
+
+
.include <bsd.prog.mk>