aboutsummaryrefslogtreecommitdiff
path: root/secure/libexec
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2002-01-23 15:54:17 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2002-01-23 15:54:17 +0000
commit0509dca0c3687d52cef8e5ffab8a2f7d52be672a (patch)
treea5bcd89550bea724a32663eb66e8d4f6b444874d /secure/libexec
parentb6b756b58b4787f31b67f70956d94b3441623e3f (diff)
downloadsrc-0509dca0c3687d52cef8e5ffab8a2f7d52be672a.tar.gz
src-0509dca0c3687d52cef8e5ffab8a2f7d52be672a.zip
Add pam_ssh support to the static PAM library, libpam.a:
- Spam /usr/lib some more by making libssh a standard library. - Tweak ${LIBPAM} and ${MINUSLPAM}. - Garbage collect unused libssh_pic.a. - Add fake -lz dependency to secure/ makefiles needed for dynamic linkage with -lssh. Reviewed by: des, markm Approved by: markm
Notes
Notes: svn path=/head/; revision=89705
Diffstat (limited to 'secure/libexec')
-rw-r--r--secure/libexec/sftp-server/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/libexec/sftp-server/Makefile b/secure/libexec/sftp-server/Makefile
index f1cc1b11cca3..d2c6c8501930 100644
--- a/secure/libexec/sftp-server/Makefile
+++ b/secure/libexec/sftp-server/Makefile
@@ -5,8 +5,8 @@ PROG= sftp-server
SRCS= sftp-server.c sftp-common.c
MAN= sftp-server.8
-LDADD+= ${LIBSSH} -lcrypto
-DPADD+= ${LIBSSH} ${LIBCRYPTO}
+LDADD+= -lssh -lcrypto -lz
+DPADD+= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
.include <bsd.prog.mk>