Use the public libssh that's now available.

This commit is contained in:
lukem 2005-01-03 06:04:08 +00:00
parent 98a04f5390
commit ecfeee924b
3 changed files with 5 additions and 37 deletions

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.19 2004/05/16 09:53:10 lukem Exp $
# $NetBSD: Makefile,v 1.20 2005/01/03 06:04:08 lukem Exp $
.include <bsd.own.mk>
SSHDIST?= ${NETBSDSRCDIR}/crypto/dist/ssh
SUBDIR= libssh .WAIT ssh sshd ssh-add ssh-keygen ssh-agent scp sftp-server \
SUBDIR= ssh sshd ssh-add ssh-keygen ssh-agent scp sftp-server \
ssh-keysign ssh-keyscan sftp
#SUBDIR+=scard

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.6 2002/09/18 14:00:41 lukem Exp $
# $NetBSD: Makefile.inc,v 1.7 2005/01/03 06:04:08 lukem Exp $
.include <bsd.own.mk>
@ -7,11 +7,8 @@ SSHDIST?= ${NETBSDSRCDIR}/crypto/dist/ssh
CPPFLAGS+=-I${SSHDIST} -DHAVE_LOGIN_CAP
.PATH: ${SSHDIST}
.if defined(PROG)
LIBSSHOBJDIR != cd ${.CURDIR}/../libssh && ${PRINTOBJDIR}
LDADD+= -L${LIBSSHOBJDIR} -lssh
DPADD+= ${LIBSSHOBJDIR}/libssh.a
.endif
LDADD+= -lssh -lcrypto -lz
DPADD+= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"

View File

@ -1,29 +0,0 @@
# $NetBSD: Makefile,v 1.20 2004/05/23 02:24:51 lukem Exp $
MKPRIVATELIB= yes
.include <bsd.own.mk>
# Prevent recursion.
LIBSSHOBJDIR=${.OBJDIR}
LIB= ssh
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 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 \
kexdhc.c kexgexc.c scard.c msg.c progressmeter.c
SRCS+= random.c
SRCS+= readpassphrase.c getpeereid.c
.if (${USE_KERBEROS} != "no")
CPPFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/krb5
.if (${USE_KERBEROS4} != "no")
SRCS+= radix.c
CPPFLAGS+= -DKRB4 -DAFS -I${DESTDIR}/usr/include/kerberosIV
.endif # ${USE_KERBEROS4} != "no"
.endif # ${USE_KERBEROS} != "no"
.include <bsd.lib.mk>