diff options
author | des <des@FreeBSD.org> | 2005-06-07 09:31:28 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-06-07 09:31:28 +0000 |
commit | d78c11891694d603e264051b72f7bfd1374b67a1 (patch) | |
tree | a0d1ecfa2e0da5d8fc4aeeacef320972cb332bf5 /lib | |
parent | a047b79479f72a4c7501f00e3938652abee4b7fd (diff) | |
download | FreeBSD-src-d78c11891694d603e264051b72f7bfd1374b67a1.zip FreeBSD-src-d78c11891694d603e264051b72f7bfd1374b67a1.tar.gz |
Revert the commits that made libssh an INTERNALLIB; they caused too much
trouble, especially on amd64.
Requested by: ru
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpam/modules/pam_ssh/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libpam/modules/pam_ssh/Makefile b/lib/libpam/modules/pam_ssh/Makefile index 36d0616..c7e4c33 100644 --- a/lib/libpam/modules/pam_ssh/Makefile +++ b/lib/libpam/modules/pam_ssh/Makefile @@ -2,7 +2,6 @@ # $FreeBSD$ SSHSRC= ${.CURDIR}/../../../../crypto/openssh -LIBSSH= ${.OBJDIR}/../../../../secure/lib/libssh/libssh.a LIB= pam_ssh MAN= pam_ssh.8 @@ -12,6 +11,6 @@ WARNS?= 0 CFLAGS+= -I${SSHSRC} DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBCRYPT} -LDADD= ${LIBSSH} -lcrypto -lcrypt +LDADD= -lssh -lcrypto -lcrypt .include <bsd.lib.mk> |