freebsd-dev/crypto/openssh/version.h
Ed Maste c6de6086cf openssh: rename local macro to avoid OpenSSL 1.1.1 conflict
Local changes introduced an OPENSSH_VERSION macro, but this conflicts
with a macro of the same name introduced with OepnsSL 1.1.1

Reviewed by:	des
Approved by:	re (gjb)
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
2018-09-19 20:52:47 +00:00

16 lines
379 B
C

/* $OpenBSD: version.h,v 1.82 2018/07/03 11:42:12 djm Exp $ */
/* $FreeBSD$ */
#define SSH_VERSION "OpenSSH_7.8"
#define SSH_PORTABLE "p1"
#define SSH_RELEASE SSH_VERSION SSH_PORTABLE
#define SSH_VERSION_FREEBSD "FreeBSD-20180909"
#ifdef WITH_OPENSSL
#define OPENSSL_VERSION_STRING SSLeay_version(SSLEAY_VERSION)
#else
#define OPENSSL_VERSION_STRING "without OpenSSL"
#endif