Edit

IABSD.fr/src/usr.bin/ssh/ssh-agent

Branch :

  • Show log

    Commit

  • Author : djm
    Date : 2020-04-03 02:26:56
    Hash : 6e2e0391
    Message : give ssh-keygen the ability to dump the contents of a binary key revocation list: ssh-keygen -lQf /path bz#3132; ok dtucker

  • Makefile
  • #	$OpenBSD: Makefile,v 1.38 2020/04/03 02:26:56 djm Exp $
    
    .PATH:		${.CURDIR}/..
    
    SRCS=	ssh-agent.c ${SRCS_PKCS11_CLIENT}
    SRCS+=	compat.c fatal.c readpass.c utf8.c
    SRCS+=	${SRCS_BASE} ${SRCS_KEY} ${SRCS_KEYP} ${SRCS_KRL} ${SRCS_UTL}
    SRCS+=	${SRCS_SK_CLIENT}
    
    PROG=	ssh-agent
    BINOWN=	root
    BINGRP=	_sshagnt
    BINMODE=2555
    
    BINDIR=	/usr/bin
    
    .include <bsd.prog.mk>
    
    LDADD+=	-lcrypto -lutil
    DPADD+=	${LIBCRYPTO} ${LIBUTIL}