From 8577d3fa572c66eefc1fa1cf4492e8230fa0b937 Mon Sep 17 00:00:00 2001 From: des Date: Sun, 23 Jun 2002 16:09:29 +0000 Subject: Update Makefiles for OpenSSH 3.3. --- secure/lib/libssh/Makefile | 7 ++++--- secure/usr.bin/Makefile | 2 +- secure/usr.bin/ssh-keysign/Makefile | 13 +++++++++++++ secure/usr.sbin/sshd/Makefile | 9 ++++++--- 4 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 secure/usr.bin/ssh-keysign/Makefile (limited to 'secure') diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile index 076e666..e5146bb 100644 --- a/secure/lib/libssh/Makefile +++ b/secure/lib/libssh/Makefile @@ -2,13 +2,14 @@ # LIB= ssh -SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \ +SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \ cipher.c compat.c compress.c crc32.c deattack.c fatal.c \ hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \ - rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \ + rsa.c tildexpand.c ttymodes.c xmalloc.c atomicio.c \ key.c dispatch.c kex.c mac.c uuencode.c misc.c \ rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \ - version.c + scard.c monitor_wrap.c monitor_fdpass.c msg.c \ + uidswap.c version.c .if defined(COMPAT_GETADDRINFO) SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile index 42b8aa2..bcc8aa2 100644 --- a/secure/usr.bin/Makefile +++ b/secure/usr.bin/Makefile @@ -7,7 +7,7 @@ SUBDIR+=telnet .if !defined(NO_OPENSSL) SUBDIR+=openssl .if !defined(NO_OPENSSH) -SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan +SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan ssh-keysign .endif .endif diff --git a/secure/usr.bin/ssh-keysign/Makefile b/secure/usr.bin/ssh-keysign/Makefile new file mode 100644 index 0000000..58a85030 --- /dev/null +++ b/secure/usr.bin/ssh-keysign/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ +# + +PROG= ssh-keysign +SRCS= ssh-keysign.c +MAN= ssh-keysign.8 + +LDADD+= -lssh -lcrypto +DPADD+= ${LIBSSH} ${LIBCRYPTO} + +.include + +.PATH: ${SSHDIR} diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 66635c4..b94785d 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -3,10 +3,13 @@ PROG= sshd SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ - sshpty.c sshlogin.c servconf.c serverloop.c \ + sshpty.c sshlogin.c servconf.c serverloop.c uidswap.c \ auth.c auth1.c auth2.c auth-options.c session.c \ - auth-chall.c auth2-chall.c auth-skey.c auth-pam.c auth2-pam.c \ - groupaccess.c + auth-chall.c auth2-chall.c groupaccess.c \ + auth-skey.c auth-bsdauth.c monitor_mm.c monitor.c \ + auth2-none.c auth2-passwd.c auth2-pubkey.c \ + auth2-hostbased.c auth2-kbdint.c \ + auth-pam.c auth2-pam.c MAN= sshd.8 CFLAGS+= -DLIBWRAP -DHAVE_LOGIN_CAP -DUSE_PAM -DHAVE_PAM_GETENVLIST -- cgit v1.1