diff options
author | bde <bde@FreeBSD.org> | 2001-08-29 07:07:48 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-08-29 07:07:48 +0000 |
commit | da8bd69c9b5b2bde4da7fca05b47685c86c5474a (patch) | |
tree | 36327108fb2baf311c90622b2b772d0b2f4eaef8 /secure/usr.sbin | |
parent | ee8ee5c50f0e75ffa0c23416ea998ebfb03c6b0f (diff) | |
download | FreeBSD-src-da8bd69c9b5b2bde4da7fca05b47685c86c5474a.zip FreeBSD-src-da8bd69c9b5b2bde4da7fca05b47685c86c5474a.tar.gz |
Fixed world breakage in rev.1.13. -lpam must never be used directly since
it doesn't work for static linkage.
Diffstat (limited to 'secure/usr.sbin')
-rw-r--r-- | secure/usr.sbin/sshd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 4c61997..95cf178 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -38,7 +38,7 @@ DPADD+= ${LIBOPIE} ${LIBMD} CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\" .endif -LDADD+= ${LIBSSH} -lcrypt -lcrypto -lutil -lz -lwrap -lpam +LDADD+= ${LIBSSH} -lcrypt -lcrypto -lutil -lz -lwrap ${MINUSLPAM} DPADD+= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM} .include <bsd.prog.mk> |