aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/rlogin
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>1999-12-16 10:55:45 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>1999-12-16 10:55:45 +0000
commit7c99ddf2cc5715591e992eb8ddd7d6f2c6bdd914 (patch)
treeb1ff0af9666d5e0cece7e2e35660c5374da14271 /usr.bin/rlogin
parentb7c42f7dde88a30686728b79fbd3f0635cc9e3f6 (diff)
downloadsrc-7c99ddf2cc5715591e992eb8ddd7d6f2c6bdd914.tar.gz
src-7c99ddf2cc5715591e992eb8ddd7d6f2c6bdd914.zip
Add libmd (or move it after libcrypt). We don't want the linker to be
smart because it will definitely get it wrong. This popped up during cross-linking.
Notes
Notes: svn path=/head/; revision=54677
Diffstat (limited to 'usr.bin/rlogin')
-rw-r--r--usr.bin/rlogin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rlogin/Makefile b/usr.bin/rlogin/Makefile
index 97de1dac89bc..6e6439d1eb49 100644
--- a/usr.bin/rlogin/Makefile
+++ b/usr.bin/rlogin/Makefile
@@ -11,13 +11,13 @@ INSTALLFLAGS=-fschg
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
SRCS+= krcmd.c kcmd.c rcmd_util.c
-DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES} ${LIBCRYPT} ${LIBCOM_ERR}
+DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES} ${LIBCRYPT} ${LIBCOM_ERR} ${LIBMD}
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
-I${.CURDIR}/../../kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
-LDADD= -lutil -lkrb -ldes -lcrypt -lcom_err
+LDADD= -lutil -lkrb -ldes -lcrypt -lcom_err -lmd
DISTRIBUTION= krb4
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
.endif