diff options
author | ru <ru@FreeBSD.org> | 2004-02-02 22:00:35 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-02 22:00:35 +0000 |
commit | 955c424e128b14f3f21f9147362759322047b413 (patch) | |
tree | 3e04789c13594a3edb9120062c41172135739201 /secure | |
parent | 091c7e4af04a24539b0bc31efc3e922550749e1e (diff) | |
download | FreeBSD-src-955c424e128b14f3f21f9147362759322047b413.zip FreeBSD-src-955c424e128b14f3f21f9147362759322047b413.tar.gz |
- Removed libmd from the Kerberos library set.
- Removed libopie and libmd; libopie used to serve auth-skey.c
which is compiled now only to ease maintenance, as well as
a few other auth-*.c sources.
Reviewed by: des
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.sbin/sshd/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 39866c0..f468268 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -21,19 +21,16 @@ LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM} .if !defined(NO_KERBEROS) CFLAGS+= -DGSSAPI -DKRB5 -DHEIMDAL -DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN} -LDADD+= -lgssapi -lkrb5 -lasn1 -lcom_err -lmd -lroken +DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} +LDADD+= -lgssapi -lkrb5 -lasn1 -lcom_err -lroken .endif -DPADD+= ${LIBOPIE} ${LIBMD} -LDADD+= -lopie -lmd - .if defined(X11BASE) CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\" .endif -DPADD+= ${LIBCRYPT} ${LIBCRYPTO} -LDADD+= -lcrypt -lcrypto +DPADD+= ${LIBCRYPTO} ${LIBCRYPT} +LDADD+= -lcrypto -lcrypt .if defined(OPENSSH_USE_POSIX_THREADS) && !defined(NOLIBC_R) CFLAGS+=-DUSE_POSIX_THREADS |