diff options
author | kris <kris@FreeBSD.org> | 2000-06-11 05:30:52 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-06-11 05:30:52 +0000 |
commit | 4b9e219ff866aa7302f05fe87ce0d68d935cb86b (patch) | |
tree | ec2e1c7f92d6ee08db1bb60cb958663569002b9f /secure | |
parent | 18e6b02332643e276c61277d600c3804c5b852ab (diff) | |
download | FreeBSD-src-4b9e219ff866aa7302f05fe87ce0d68d935cb86b.zip FreeBSD-src-4b9e219ff866aa7302f05fe87ce0d68d935cb86b.tar.gz |
Link explicitly against -lmd. I'm not sure what was pulling this in
on -current, but it doesnt do it on -stable.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.sbin/sshd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index f71c41e..17357d5 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -38,8 +38,8 @@ DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD} .endif # MAKE_KERBEROS5 CFLAGS+= -DSKEY -LDADD+= -lopie -DPADD+= ${LIBOPIE} +LDADD+= -lopie -lmd +DPADD+= ${LIBOPIE} ${LIBMD} .include <bsd.prog.mk> |